.pf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.pf-title {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.pf-badge {
    background-color: #73a0c5;
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.pf-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.pf-stars {
    color: #73a0c5;
    font-size: 22px;
}

.pf-reviews {
    color: #666;
    margin-left: 5px;
    font-size: 16px;
    text-decoration: underline;
}

.price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.discount-label {
    background-color: #ffeef2;
    color: #e93892;
    font-size: 14px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    line-height: 1;
}

.pf-shipping {
    display: flex;
    align-items: center;
    color: #000;
    font-size: 14px;
    margin-bottom: 20px;
}

.pf-icon-ship {
    width: 20px;
    height: 20px;
    color: #73a0c5;
    margin-right: 8px;
}

.pf-quote {
    background-color: #f2f9ff;
    padding: 20px;
    border-left: 4px solid #73a0c5;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 800;
}

.pf-quote p {
    margin: 0 0 10px;
}

.pf-quote cite {
    font-weight: 100;
    font-style: normal;
    display: block;
}

.pf-options {
    margin-bottom: 20px;
}

.pf-opt-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin-bottom: 10px;
    cursor: pointer;
    border-radius: 4px;
}

.pf-opt-text {
    flex-grow: 1;
    margin-left: 10px;
    font-weight: 500;
}

.pf-discount {
    color: #e93992;
    font-size: 14px;
}

.pf-opt-price {
    font-weight: 600;
}

.pf-opt-price strike {
    color: #9daab5;
    font-size: 14px;
    margin-right: 5px;
    text-decoration: line-through;
}

.pf-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

.pf-qty-wrap {
    display: flex;
    border: 1px solid #ccc;
    height: 44px;
}

.pf-qty-btn {
    width: 35px;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#pf-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
}

.pf-add-btn {
    flex-grow: 1;
    background-color: #e93992;
    color: white;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    height: 44px;
    border-radius: 4px;
    transition: background 0.3s;
}

.pf-add-btn:hover {
    background-color: #d0287d;
}

.pf-guarantee {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #73a0c5;
    margin-top: 5px;
    margin-bottom: 25px;
}

.pf-description {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.pf-description p {
    margin-bottom: 15px;
}

.pf-benefits {
    list-style: disc;
    padding-left: 20px;
    margin-top: 15px;
}

.pf-benefits li {
    margin-bottom: 10px;
}

.pf-trust {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 50px;
    margin-top: 30px;
    text-align: center;
    font-size: 14px;
    width: 100%;
}

.pf-trust-item {
    width: 90px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.pf-trust-item img {
    width: 100%;
    height: auto;
    max-width: 80px;
    display: block;
}

.pf-trust-text {
    margin: 0;
    font-weight: 500;
    line-height: 1.3;
    font-size: 14px;
    color: #333;
}

@media (max-width: 480px) {
    .pf-trust {
        gap: 10px;
    }

    .pf-trust-item {
        width: 30%;
        min-width: 80px;
    }

    .pf-add-btn {
        font-size: 14px;
    }

    .price {
        font-size: 16px;
    }

}