/* ============================================
   REVIEW.CSS - Estilos das Páginas de Review
   Portal de Reviews - Light Mode Clean
   ============================================ */

/* ============================================
   REVIEW HEADER
   ============================================ */
.review-header {
    background: var(--gradient-hero);
    padding: var(--space-6) 0;
    border-bottom: 1px solid rgba(0, 217, 165, 0.12);
    box-shadow: var(--shadow-sm);
}

.review-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.review-header-left {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.review-logo {
    font-family: var(--font-display);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: -0.02em;
    transition: color var(--transition-base);
}

.review-logo:hover {
    color: var(--text-primary);
}

.review-logo .highlight {
    color: var(--accent-primary);
}

.review-header-separator {
    color: var(--text-muted);
    font-size: var(--fs-sm);
    opacity: 0.5;
    user-select: none;
}

.review-product-name {
    font-family: var(--font-display);
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.review-product-name span {
    color: var(--accent-primary);
}

.review-header-cta .btn {
    padding: var(--space-3) var(--space-5);
    font-size: var(--fs-base);
}

/* ============================================
   REVIEW HERO
   ============================================ */
.review-hero {
    background: var(--bg-secondary);
    padding: var(--space-12) 0;
    position: relative;
    overflow: hidden;
}

.review-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at right, rgba(0, 217, 165, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.review-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--space-10);
    align-items: center;
}

.review-hero-content {
    position: relative;
    z-index: 1;
}

.review-badge-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
    justify-content: flex-start;
}

.review-title {
    font-size: var(--fs-4xl);
    font-weight: var(--fw-extrabold);
    line-height: 1.3;
    margin-bottom: var(--space-5);
}

.review-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-5);
}

/* Hero image – full image, no video container */
.review-hero-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.review-hero-image img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 420px;
    display: block;
    object-fit: contain;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.review-hero-image-caption {
    margin-top: var(--space-4);
    padding: var(--space-3) var(--space-5);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.08) 0%, rgba(0, 180, 216, 0.06) 100%);
    border: 1px solid rgba(0, 217, 165, 0.25);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}

.review-hero-image-caption::before {
    content: '💧';
    margin-right: var(--space-2);
}

/* Legacy: video/iframe in hero (if used elsewhere) */
.review-hero-video {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 100%;
}

.review-hero-video::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-xl);
    padding: 2px;
    background: var(--gradient-accent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.review-hero-video iframe,
.review-hero-video video {
    width: 100%;
    height: 100%;
    min-height: 315px;
    aspect-ratio: 16/9;
    display: block;
    border: none;
}

.review-hero-video img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ============================================
   REVIEW CONTENT
   ============================================ */
.review-content {
    padding: var(--space-12) 0;
}

.review-main {
    max-width: 900px;
    margin: 0 auto;
}

/* Section Blocks */
.review-section {
    margin-bottom: var(--space-12);
}

.review-section:last-child {
    margin-bottom: 0;
}

.review-section-title {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--accent-primary);
    display: inline-block;
    width: 100%;
    max-width: 100%;
}

.review-section-subtitle {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
}

.review-text {
    font-size: var(--fs-base);
    line-height: 1.75;
    color: var(--text-secondary);
}

.review-text p {
    margin-bottom: var(--space-5);
}

.review-text p:last-child {
    margin-bottom: 0;
}

.review-text strong {
    color: var(--text-primary);
}

/* ============================================
   PROS AND CONS
   ============================================ */
.pros-cons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-6);
}

.pros-box,
.cons-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-5);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    min-height: auto;
    display: flex;
    flex-direction: column;
}

.pros-box::before,
.cons-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.pros-box::before {
    background: var(--accent-success);
}

.cons-box::before {
    background: var(--accent-error);
}

.pros-title,
.cons-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-4);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.pros-title {
    color: var(--accent-success);
}

.cons-title {
    color: var(--accent-error);
}

.pros-list,
.cons-list {
    list-style: none;
    flex: 1;
}

.pros-list li,
.cons-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    padding: var(--space-2) 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
}

.pros-list li:last-child,
.cons-list li:last-child {
    border-bottom: none;
}

.pros-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-success);
    flex-shrink: 0;
    margin-top: 3px;
}

.cons-list li svg {
    width: 18px;
    height: 18px;
    color: var(--accent-error);
    flex-shrink: 0;
    margin-top: 3px;
}

/* ============================================
   SCAM ALERT BOX
   ============================================ */
.scam-alert {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.08) 0%, rgba(239, 68, 68, 0.04) 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin: var(--space-6) 0;
    box-shadow: var(--shadow-sm);
}

.scam-alert-header {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
}

.scam-alert-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-error);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.scam-alert-icon svg {
    width: 24px;
    height: 24px;
    color: white;
}

.scam-alert-title {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--accent-error);
}

.scam-alert-content {
    color: var(--text-secondary);
    line-height: 1.7;
}

.scam-alert-content a {
    color: var(--accent-primary);
    font-weight: var(--fw-semibold);
}

/* ============================================
   INGREDIENTS SECTION
   ============================================ */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: var(--space-4);
    margin-top: var(--space-4);
}

.ingredient-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: var(--space-3);
    transition: all var(--transition-base);
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    min-height: auto;
}

.ingredient-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 217, 165, 0.2);
}

.ingredient-name {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--accent-primary);
    margin-bottom: var(--space-2);
    line-height: 1.3;
}

.ingredient-description {
    font-size: var(--fs-xs);
    color: var(--text-secondary);
    line-height: 1.5;
    flex: 1;
}

/* ============================================
   CTA BOX
   ============================================ */
.cta-box {
    background: var(--gradient-hero);
    border: 1px solid rgba(0, 217, 165, 0.15);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    margin: var(--space-10) 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 217, 165, 0.05) 0%, transparent 50%);
    animation: pulse 4s ease-in-out infinite;
}

.cta-box-content {
    position: relative;
    z-index: 1;
}

.cta-box-title {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--space-2);
}

.cta-box-subtitle {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin-bottom: var(--space-5);
}

.cta-box-offer {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.2);
    color: #B8860B;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-5);
}

/* ============================================
   GUARANTEE BOX
   ============================================ */
.guarantee-box {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    margin: var(--space-8) 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-md);
}

.guarantee-box-seal-only {
    justify-content: center;
    padding: var(--space-8);
}

.guarantee-box-with-text {
    flex-direction: column;
    text-align: center;
    gap: var(--space-6);
}

.guarantee-box-with-text .guarantee-seal-wrap {
    flex-shrink: 0;
}

.guarantee-box-with-text .guarantee-content {
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-box-with-text .guarantee-content p {
    margin-bottom: var(--space-4);
}

.guarantee-box-with-text .guarantee-content p:last-child {
    margin-bottom: 0;
}

.guarantee-seal-wrap {
    display: flex;
    justify-content: center;
}

.guarantee-seal-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    display: block;
}

.guarantee-badge {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #1A1A2E;
    box-shadow: var(--shadow-md);
}

.guarantee-days {
    font-size: var(--fs-3xl);
    font-weight: var(--fw-extrabold);
    line-height: 1;
}

.guarantee-text {
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
}

.guarantee-content h4 {
    font-size: var(--fs-xl);
    margin-bottom: var(--space-2);
}

.guarantee-content p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* ============================================
   PRICING BOX
   ============================================ */
.pricing-box {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-10);
    text-align: center;
    margin: var(--space-10) 0;
    border: 2px solid rgba(0, 217, 165, 0.2);
    box-shadow: var(--shadow-lg);
}

.pricing-header {
    margin-bottom: var(--space-8);
}

.pricing-label {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-original {
    font-size: var(--fs-xl);
    color: var(--text-muted);
    text-decoration: line-through;
    margin: var(--space-2) 0;
}

.pricing-current {
    font-size: var(--fs-5xl);
    font-weight: var(--fw-extrabold);
    color: var(--accent-primary);
    line-height: 1.2;
    margin: var(--space-3) 0;
}

.pricing-current span {
    font-size: var(--fs-xl);
    color: var(--text-secondary);
}

.pricing-image {
    max-width: 350px;
    width: 100%;
    margin: var(--space-8) auto;
}

.pricing-image img,
.pricing-product-image {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    display: block;
    margin: 0 auto;
}

/* Pricing cards - 3 columns like official order page */
.pricing-subtitle {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    margin: var(--space-3) 0;
}

.pricing-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    align-items: stretch;
    margin: var(--space-8) 0;
}

.pricing-card {
    background: var(--bg-card);
    border: 2px solid rgba(0, 217, 165, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-md);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.pricing-card:hover {
    border-color: rgba(0, 217, 165, 0.35);
    box-shadow: var(--shadow-lg);
}

.pricing-card-featured {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 1px var(--accent-primary);
}

.pricing-card-featured:hover {
    box-shadow: 0 0 0 2px var(--accent-primary), var(--shadow-lg);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: var(--fw-bold);
    z-index: 1;
    white-space: nowrap;
}

.pricing-badge-value {
    background: var(--accent-primary);
    color: white;
}

.pricing-badge-popular {
    background: #B8860B;
    color: white;
}

.pricing-card-title {
    font-size: var(--fs-lg);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    margin: var(--space-2) 0 var(--space-1);
}

.pricing-card-days {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.pricing-card-image {
    width: 100%;
    max-width: 220px;
    height: 200px;
    margin: 0 auto var(--space-4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-card-image img {
    max-width: 100%;
    max-height: 200px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.pricing-card-featured .pricing-card-image img {
    border: 2px solid var(--accent-primary);
}

.pricing-per-bottle {
    font-size: var(--fs-base);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
    margin-bottom: var(--space-1);
}

.pricing-save {
    font-size: var(--fs-xs);
    color: var(--accent-primary);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-1);
}

.pricing-detail {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-3);
}

.pricing-old {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-decoration: line-through;
    margin-bottom: var(--space-1);
}

.pricing-total {
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--accent-primary);
    margin-bottom: var(--space-4);
}

.pricing-total span {
    display: block;
    font-size: var(--fs-xs);
    font-weight: var(--fw-normal);
    color: var(--text-muted);
    margin-top: var(--space-1);
}

.pricing-card-btn {
    width: 100%;
    max-width: 200px;
    margin-bottom: var(--space-3);
}

.pricing-guarantee {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: auto;
}

.pricing-bonuses-note {
    background: rgba(0, 217, 165, 0.08);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    margin: var(--space-6) 0;
    text-align: center;
}

.pricing-bonuses-note p {
    margin-bottom: var(--space-2);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.pricing-bonuses-note p:last-child {
    margin-bottom: 0;
}

.pricing-footer-note {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    text-align: center;
    margin-top: var(--space-4);
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-list {
    margin-top: var(--space-6);
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-4);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--space-5);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--fs-lg);
    font-weight: var(--fw-semibold);
    text-align: left;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.faq-question:hover {
    background: var(--bg-card-hover);
}

.faq-question svg {
    width: 24px;
    height: 24px;
    color: var(--accent-primary);
    transition: transform var(--transition-fast);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 var(--space-5) var(--space-5);
    color: var(--text-secondary);
    line-height: 1.7;
    display: none;
}

.faq-item.active .faq-answer {
    display: block;
}

/* ============================================
   CONCLUSION
   ============================================ */
.conclusion-box {
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%);
    border: 1px solid rgba(0, 217, 165, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-top: var(--space-6);
    box-shadow: var(--shadow-sm);
}

/* ============================================
   REVIEW FOOTER
   ============================================ */
.review-footer {
    background: var(--bg-primary);
    padding: var(--space-8) 0;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.review-footer-disclaimer {
    max-width: 800px;
    margin: 0 auto var(--space-4);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    line-height: 1.7;
}

.review-footer-links {
    margin-bottom: var(--space-4);
    font-size: var(--fs-sm);
}

.review-footer-links a {
    color: var(--accent-primary);
    text-decoration: none;
}

.review-footer-links a:hover {
    text-decoration: underline;
}

.review-footer-copyright {
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

/* Inline CTA link (first-button rule) */
.review-inline-cta {
    color: var(--accent-primary);
    font-weight: var(--fw-bold);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-fast);
}
.review-inline-cta:hover {
    color: var(--accent-secondary);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .review-hero-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .review-hero-content {
        text-align: center;
    }
    
    .review-badge-row {
        justify-content: center;
    }
    
    .review-hero {
        padding: var(--space-10) 0;
    }
}

@media (max-width: 768px) {
    .review-header {
        padding: var(--space-5) 0;
    }
    
    .review-header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .review-header-left {
        flex-direction: column;
        gap: var(--space-2);
    }
    
    .review-header-separator {
        display: none;
    }
    
    .review-product-name {
        font-size: var(--fs-lg);
    }
    
    .review-title {
        font-size: var(--fs-3xl);
    }
    
    .pros-cons-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .pros-box,
    .cons-box {
        min-height: auto;
    }
    
    .guarantee-box {
        flex-direction: column;
        text-align: center;
        gap: var(--space-5);
        padding: var(--space-6);
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: var(--space-5);
    }
    
    .ingredient-card {
        min-height: auto;
    }
    
    .how-it-works-visual {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .process-step {
        min-height: auto;
    }
    
    .benefits-visual {
        grid-template-columns: 1fr;
        gap: var(--space-4);
    }
    
    .benefit-card {
        min-height: auto;
    }
    
    .certification-badges {
        gap: var(--space-4);
    }
    
    /* Responsive images grid */
    .review-section > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }
    
    .pricing-box > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }
    
    .pricing-cards-grid {
        grid-template-columns: 1fr !important;
        gap: var(--space-6) !important;
    }
}

@media (max-width: 480px) {
    .review-hero {
        padding: var(--space-8) 0;
    }
    
    .review-title {
        font-size: var(--fs-2xl);
        line-height: 1.3;
    }
    
    .review-section-title {
        font-size: var(--fs-2xl);
    }
    
    .review-section {
        margin-bottom: var(--space-8);
    }
    
    .cta-box {
        padding: var(--space-6);
        margin: var(--space-8) 0;
    }
    
    .pricing-box {
        padding: var(--space-6);
        margin: var(--space-8) 0;
    }
    
    .pricing-current {
        font-size: var(--fs-4xl);
    }
    
    .guarantee-badge {
        width: 100px;
        height: 100px;
    }
    
    .cert-badge {
        min-width: 100px;
        padding: var(--space-4);
    }
}

/* ============================================
   PRODUCT BOX - Above the fold
   ============================================ */
.product-box-above-fold {
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.08) 0%, rgba(0, 180, 216, 0.05) 100%);
    border-bottom: 2px solid rgba(0, 217, 165, 0.2);
    padding: var(--space-6) 0;
}

.product-box-inner {
    background: var(--bg-card);
    border: 2px solid var(--accent-primary);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    box-shadow: var(--shadow-md);
    max-width: 720px;
    margin: 0 auto;
}

.product-box-title {
    font-family: var(--font-display);
    font-size: var(--fs-2xl);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
    text-align: center;
    margin-bottom: var(--space-5);
    line-height: 1.3;
}

.product-box-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    align-items: center;
}

.product-box-image-wrap {
    text-align: center;
}

.product-box-image {
    max-width: 220px;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

.product-box-verdict-wrap {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
    align-items: flex-start;
}

.product-box-verdict {
    font-size: var(--fs-xl);
    font-weight: var(--fw-bold);
    color: var(--accent-primary);
    margin: 0;
}

.product-box-cta {
    width: 100%;
    text-align: center;
    padding: var(--space-3) var(--space-5);
}

@media (max-width: 768px) {
    .product-box-content {
        grid-template-columns: 1fr;
    }
    .product-box-verdict-wrap {
        align-items: center;
    }
    .product-box-title {
        font-size: var(--fs-xl);
    }
}

/* ============================================
   COMPARISON TABLE - ProNail vs Pharmacy
   ============================================ */
.comparison-table-wrap {
    overflow-x: auto;
    margin: var(--space-6) 0;
    border-radius: var(--radius-xl);
    border: 1px solid rgba(0, 217, 165, 0.2);
    box-shadow: var(--shadow-md);
}

.comparison-table {
    width: 100%;
    min-width: 320px;
    border-collapse: collapse;
    background: var(--bg-card);
}

.comparison-table th,
.comparison-table td {
    padding: var(--space-4);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
    background: var(--bg-secondary);
    font-weight: var(--fw-bold);
    color: var(--text-primary);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table .col-pronail {
    background: linear-gradient(135deg, rgba(0, 217, 165, 0.08) 0%, rgba(0, 180, 216, 0.04) 100%);
    font-weight: var(--fw-semibold);
    color: var(--text-primary);
}

.comparison-table .col-pharmacy {
    color: var(--text-secondary);
}

.comparison-table .col-pronail .check {
    color: var(--accent-success);
    font-weight: var(--fw-bold);
}

