/* ========================================
   Product Page Additional Styles
   ======================================== */

/* Product Hero */
.product-hero {
    padding: 10rem 0 4rem;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(196, 86, 61, 0.15);
    border: 1px solid rgba(196, 86, 61, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.product-hero h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Products Section */
.products-section {
    padding: 4rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    padding: 1.5rem;
    position: relative;
    transition: var(--transition-normal);
}

.product-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8125rem;
    font-weight: 700;
    z-index: 10;
}

.product-badge.best {
    background: rgba(196, 86, 61, 0.2);
    border: 1px solid rgba(196, 86, 61, 0.3);
    color: var(--primary-color);
}

.product-badge.new {
    background: rgba(49, 94, 73, 0.2);
    border: 1px solid rgba(49, 94, 73, 0.3);
    color: var(--secondary-color);
}

.product-badge.premium {
    background: rgba(212, 164, 62, 0.2);
    border: 1px solid rgba(212, 164, 62, 0.3);
    color: var(--accent-color);
}

.product-badge.gift {
    background: linear-gradient(135deg, rgba(49, 94, 73, 0.2), rgba(212, 164, 62, 0.2));
    border: 1px solid rgba(49, 94, 73, 0.3);
    color: var(--secondary-color);
}

.product-image {
    margin-bottom: 1.5rem;
}

.image-placeholder {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-md);
    font-size: 5rem;
    color: white;
    opacity: 0.8;
}

.product-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.product-desc {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.product-features {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.product-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.product-features i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.price-discount {
    font-size: 1rem;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-current {
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--primary-color);
}

.price-badge {
    padding: 0.25rem 0.75rem;
    background: rgba(49, 94, 73, 0.2);
    border-radius: 15px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.product-btn {
    width: 100%;
}

/* Benefits Section */
.benefits-section {
    padding: 4rem 0;
    background: rgba(196, 86, 61, 0.03);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-card {
    padding: 2rem;
    text-align: center;
}

.benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-secondary);
    font-size: 0.9375rem;
}

/* Reviews Section */
.reviews-section {
    padding: 4rem 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.review-card {
    padding: 2rem;
}

.review-rating {
    margin-bottom: 1rem;
}

.review-rating i {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-right: 0.25rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
}

.author-info h5 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
    margin: 0;
}

/* Special Offer Section */
.offer-section {
    padding: 4rem 0;
}

.offer-banner {
    padding: 4rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(196, 86, 61, 0.15), rgba(49, 94, 73, 0.15));
}

.offer-content {
    max-width: 600px;
    margin: 0 auto;
}

.offer-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(49, 94, 73, 0.2);
    border: 1px solid rgba(49, 94, 73, 0.3);
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

.offer-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.offer-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.offer-countdown {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.countdown-item {
    text-align: center;
}

.countdown-value {
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background: var(--gradient-primary);
    color: white;
    font-size: 2rem;
    font-weight: 900;
    border-radius: 50%;
    margin-bottom: 0.5rem;
}

.countdown-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(196, 86, 61, 0.05);
}

.faq-question h4 {
    margin: 0;
    font-size: 1.125rem;
}

.faq-question i {
    color: var(--primary-color);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
    .product-hero h1 {
        font-size: 2.5rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-banner {
        padding: 2rem;
    }
    
    .offer-content h2 {
        font-size: 1.75rem;
    }
    
    .offer-countdown {
        gap: 1rem;
    }
    
    .countdown-value {
        width: 60px;
        height: 60px;
        line-height: 60px;
        font-size: 1.5rem;
    }
}
