/* Base Variables */
:root {
    --primary: #2D6A4F;
    --primary-light: #40916c;
    --primary-dark: #1b4332;
    --secondary: #F4845F;
    --secondary-hover: #e0724f;
    --dark: #2b2d42;
    --light: #f9fbf9;
    --white: #ffffff;
    --gray: #8d99ae;
    --gray-light: #edf2f4;
    --border: #e2e8f0;
    --danger: #ef233c;
    --warning: #ffb703;
    
    --radius: 8px;
    --radius-lg: 12px;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    
    --font-main: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Reset & Setup */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: var(--font-main);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-padding { padding: 4rem 0; }
.bg-light { background-color: var(--white); }
.text-center { text-align: center; }

/* Reveal Animation */
.reveal-on-scroll { opacity: 0; transform: translateY(20px); transition: all 0.6s ease-out; }
.reveal-on-scroll.revealed { opacity: 1; transform: translateY(0); }

/* Typography */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; color: var(--dark); margin-bottom: 1rem; }
.section-title { text-align: center; font-size: 2rem; margin-bottom: 3rem; }
.highlight { color: var(--primary); }

/* Top Promo Flash Banner */
.promo-flash-banner { background: var(--warning); color: #000; font-weight: 600; font-size: 0.95rem; padding: 0.75rem 0; text-align: center; }
.promo-flash-inner { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.promo-icon { font-size: 1.2rem; }

/* Header */
.top-bar { background: var(--primary-dark); color: var(--white); display: flex; justify-content: center; gap: 2rem; padding: 0.5rem; font-size: 0.85rem; font-weight: 600; }
.top-bar svg { width: 14px; height: 14px; margin-right: 4px; vertical-align: -2px; }

.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.header-main { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary); display: flex; align-items: center; gap: 8px; }
.logo svg { color: var(--primary); }

.main-nav { display: none; gap: 2rem; align-items: center; font-weight: 600; }
.main-nav a:hover { color: var(--primary); }

.dropdown { position: relative; cursor: pointer; padding: 10px 0; }
.dropdown-content { display: none; position: absolute; top: 100%; left: 0; background: var(--white); min-width: 200px; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 0.5rem 0; flex-direction: column; border: 1px solid var(--border); }
.dropdown:hover .dropdown-content { display: flex; }
.dropdown-content a { padding: 0.75rem 1.5rem; display: block; border-bottom: 1px solid var(--gray-light); font-weight: 500; }
.dropdown-content a:last-child { border-bottom: none; }
.dropdown-content a:hover { background: var(--primary-light); color: var(--white); }
.dropdown-content a.see-all { font-weight: 700; color: var(--primary); background: var(--light); }

.header-actions { display: flex; align-items: center; gap: 1rem; }
.cart-btn { position: relative; display: flex; align-items: center; color: var(--dark); }
.cart-count { position: absolute; top: -8px; right: -8px; background: var(--secondary); color: var(--white); font-size: 0.7rem; font-weight: bold; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border-radius: 50%; }

.mobile-menu-btn { display: block; color: var(--dark); }

@media(min-width: 768px) {
    .main-nav { display: flex; }
    .mobile-menu-btn { display: none; }
}

.mobile-nav { display: none; flex-direction: column; background: var(--white); border-bottom: 1px solid var(--border); padding: 1rem 20px; }
.mobile-nav.active { display: flex; }
.mobile-nav a { padding: 10px 0; border-bottom: 1px solid var(--gray-light); font-weight: 600; }

/* Buttons & Badges */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: var(--radius); cursor: pointer; transition: all 0.2s; border: none; font-size: 1rem; }
.btn-primary { background: var(--primary); color: var(--white); }
.btn-primary:hover { background: var(--primary-dark); transform: translateY(-2px); }
.btn-secondary { background: var(--light); color: var(--dark); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--gray-light); }
.btn-large { padding: 1rem 2rem; font-size: 1.1rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.btn-small { font-size: 0.95rem; padding: 0.6rem 1.2rem; }
.btn-cta { background: var(--secondary); color: var(--white); font-size: 1.25rem; width: 100%; padding: 1rem; text-transform: uppercase; letter-spacing: 0.5px; border-radius: var(--radius-lg); box-shadow: 0 4px 15px rgba(244, 132, 95, 0.4); }
.btn-cta:hover { background: var(--secondary-hover); transform: scale(1.02); }
.btn-outline { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }

.badge { padding: 0.25rem 0.5rem; border-radius: 4px; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; }
.badge-hot { background: var(--warning); color: #000; }

/* Hero Section */
.hero { position: relative; padding: 6rem 20px; background: var(--primary-dark); color: var(--white); text-align: center; overflow: hidden; }
.hero-overlay { position: absolute; inset: 0; background: radial-gradient(circle at top right, var(--primary-light), transparent 60%); opacity: 0.6; }
.hero-content { position: relative; z-index: 2; max-width: 800px; }
.hero h1 { font-size: clamp(2.5rem, 5vw, 4rem); color: var(--white); margin-bottom: 1.5rem; }
.hero .highlight { color: var(--warning); }
.hero p { font-size: 1.2rem; margin-bottom: 2rem; opacity: 0.9; }
.hero-trust { display: flex; justify-content: center; gap: 2rem; margin-top: 3rem; font-weight: 600; font-size: 0.9rem; flex-wrap: wrap; }
.hero-trust span { display: flex; align-items: center; gap: 6px; }

/* Product Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.product-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); overflow: hidden; transition: var(--shadow); position: relative; display: flex; flex-direction: column; }
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.product-img-link { display: block; height: 260px; background: #fff; padding: 2rem; position: relative; border-bottom: 1px solid var(--gray-light); }
.product-img-link img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.3s ease; }
.product-card:hover .product-img-link img { transform: scale(1.05); }
.product-img-link .badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; }
.placeholder-img { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; background: var(--gray-light); color: var(--gray); border-radius: var(--radius); }

.product-info { padding: 1.5rem; display: flex; flex-direction: column; flex-grow: 1; }
.product-category { font-size: 0.8rem; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 0.5rem; display: inline-block; }
.product-title { font-size: 1.1rem; margin-bottom: 0.5rem; line-height: 1.4; flex-grow: 1; }
.product-title a:hover { color: var(--primary); }

.product-rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.5rem; font-size: 0.85rem; color: var(--gray); }
.stars { display: flex; color: var(--gray-light); }
.stars svg { width: 16px; height: 16px; fill: currentColor; }
.stars .filled { color: var(--warning); }

.product-price-action { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.price { font-size: 1.3rem; font-weight: 800; color: var(--dark); }

/* Categories Grid */
.category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
.category-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; text-align: center; transition: all 0.3s; display: block; }
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-3px); }
.category-card svg { width: 40px; height: 40px; color: var(--primary); margin-bottom: 1rem; }
.category-card h3 { font-size: 1.1rem; margin-bottom: 0.5rem; }
.category-card span { font-size: 0.9rem; color: var(--gray); font-weight: 600; }

/* Benefits */
.benefits-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.benefit-item .icon-wrap { width: 64px; height: 64px; background: var(--primary-light); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; }
.benefit-item svg { width: 32px; height: 32px; }
.benefit-item p { color: var(--gray); font-size: 0.95rem; }

/* Filter Pills */
.category-filters { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-top: 1.5rem; }
.cat-pill { padding: 0.5rem 1.2rem; background: var(--white); border: 1px solid var(--border); border-radius: 50px; font-weight: 600; font-size: 0.9rem; transition: all 0.2s; }
.cat-pill:hover, .cat-pill.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* Product Details Page */
.breadcrumb { font-size: 0.9rem; color: var(--gray); margin-bottom: 1.5rem; }
.breadcrumb a { color: var(--primary); font-weight: 500; }

.product-main-layout { display: grid; grid-template-columns: 1fr; gap: 3rem; margin-bottom: 4rem; }
@media(min-width: 900px) {
    .product-main-layout { grid-template-columns: 1fr 1fr; }
}

.product-gallery { background: var(--white); padding: 2rem; border-radius: var(--radius-lg); border: 1px solid var(--border); }
.main-image { height: 400px; margin-bottom: 1rem; display: flex; align-items: center; justify-content: center; }
.main-image img { max-height: 100%; object-fit: contain; }
.thumbnails { display: flex; gap: 1rem; justify-content: center; }
.thumbnails img { width: 80px; height: 80px; object-fit: cover; border: 1px solid var(--border); border-radius: var(--radius); cursor: pointer; transition: 0.2s; opacity: 0.6; }
.thumbnails img:hover, .thumbnails img.active-thumb { border-color: var(--primary); box-shadow: 0 0 0 2px var(--primary); opacity: 1; }

.product-info-panel { display: flex; flex-direction: column; gap: 1rem; }
.product-title-large { font-size: 2.2rem; margin-bottom: 0; }
.review-summary { display: flex; align-items: center; gap: 8px; font-weight: 600; }
.rating-val { font-size: 1.1rem; }
.reviews-count { color: var(--primary); font-size: 0.9rem; text-decoration: underline; cursor: pointer; }
.reviews-count:hover { color: var(--primary-dark); }

.price-box { background: var(--light); padding: 1.5rem; border-radius: var(--radius); border-left: 4px solid var(--primary); display: flex; flex-wrap: wrap; align-items: baseline; gap: 1rem; margin: 1rem 0; }
.old-price { text-decoration: line-through; color: var(--gray); font-size: 1.2rem; }
.current-price { font-size: 2.5rem; font-weight: 800; color: var(--dark); }
.discount-tag { background: var(--danger); color: var(--white); font-weight: bold; padding: 4px 8px; border-radius: 4px; font-size: 0.9rem; }

/* Product Countdown Timer */
.product-countdown { background: var(--white); border: 2px dashed var(--danger); border-radius: var(--radius); padding: 1.25rem; text-align: center; margin-bottom: 1.5rem; }
.countdown-title { color: var(--danger); font-weight: 700; margin-bottom: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 1.1rem; }
.countdown-title svg { width: 22px; height: 22px; }
.countdown-timer { display: flex; justify-content: center; gap: 1rem; }
.time-block { display: flex; flex-direction: column; background: var(--gray-light); border-radius: var(--radius); padding: 0.5rem; min-width: 60px; }
.time-block span { font-size: 1.5rem; font-weight: 800; color: var(--dark); line-height: 1; }
.time-block small { font-size: 0.75rem; color: var(--gray); text-transform: uppercase; margin-top: 4px; font-weight: 600; }

.urgency-box { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.5rem; }
.urgency-item { display: flex; align-items: center; gap: 10px; padding: 0.75rem 1rem; border-radius: var(--radius); font-size: 0.95rem; }
.alert-danger { background: #ffebee; color: #c62828; }
.alert-warning { background: #fff8e1; color: #f57f17; }
.urgency-item svg { width: 20px; height: 20px; }
.pulse { animation: scale 0.5s ease-in-out infinite alternate; }
@keyframes scale { 0%{transform:scale(1);} 100%{transform:scale(1.1); color:red;} }

.safe-checkout { font-size: 0.85rem; color: var(--gray); text-align: center; margin-top: 0.5rem; display: flex; align-items: center; justify-content: center; gap: 5px; }

.delivery-perks ul { display: flex; flex-direction: column; gap: 0.8rem; margin: 1.5rem 0; }
.delivery-perks li { display: flex; align-items: center; gap: 10px; color: var(--dark); }
.delivery-perks svg { color: var(--primary); }

.social-proof { text-align: center; font-weight: 600; color: var(--primary-dark); background: var(--primary-light); color: #fff; padding: 0.75rem; border-radius: var(--radius); }

/* Tabs Layout */
.product-tabs-container { margin-bottom: 4rem; }
.product-tabs-nav { display: flex; border-bottom: 2px solid var(--border); margin-bottom: 2rem; overflow-x: auto; }
.product-tabs-nav li { padding: 1rem 2rem; font-weight: 600; font-size: 1.1rem; color: var(--gray); cursor: pointer; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: 0.3s; white-space: nowrap; }
.product-tabs-nav li:hover { color: var(--primary); }
.product-tabs-nav li.active { color: var(--primary); border-bottom-color: var(--primary); }
.product-tabs-content .tab-pane { display: none; background: var(--white); padding: 2.5rem; border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.product-tabs-content .tab-pane.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from{opacity:0;} to{opacity:1;} }

.tab-pane p { margin-bottom: 1.5rem; font-size: 1.1rem; }
.check-list li { position: relative; padding-left: 1.8rem; margin-bottom: 0.8rem; font-size: 1.05rem; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: 0; color: var(--primary); font-weight: bold; }

/* Upsell Grid */
.upsell-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; margin-bottom: 4rem; }
.upsell-card { display: flex; align-items: center; gap: 1rem; background: var(--white); border: 1px solid var(--border); padding: 1rem; border-radius: var(--radius); transition: var(--shadow); }
.upsell-card:hover { box-shadow: var(--shadow); border-color: var(--primary-light); }
.upsell-img { width: 80px; height: 80px; background: var(--gray-light); display: flex; align-items: center; justify-content: center; border-radius: var(--radius); flex-shrink: 0; }
.upsell-img img { max-width: 100%; max-height: 100%; object-fit: contain; }
.upsell-info h4 { font-size: 0.95rem; margin-bottom: 0.25rem; line-height: 1.3; }
.upsell-info h4 a:hover { color: var(--primary); }
.upsell-info .price { font-size: 1.1rem; margin-bottom: 0.5rem; }

/* Compare Table */
.table-responsive { overflow-x: auto; background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); }
.compare-table { width: 100%; border-collapse: collapse; text-align: left; min-width: 600px; }
.compare-table th, .compare-table td { padding: 1.5rem 1rem; border-bottom: 1px solid var(--gray-light); vertical-align: middle; }
.compare-table th { background: var(--light); font-weight: 700; color: var(--dark); font-size: 1.1rem; text-align: center; }
.compare-table td:first-child { font-weight: 600; color: var(--gray); background: var(--light); width: 25%; }
.compare-table th:first-child { text-align: left; }
.compare-table td { text-align: center; }
.compare-table .highlight { background: rgba(45, 106, 79, 0.05); }
.compare-th-img { height: 80px; margin-bottom: 10px; display: flex; align-items: center; justify-content: center; }
.compare-th-img img { max-height: 100%; width: auto; }
.check-icon { color: var(--primary); width: 24px; height: 24px; }


/* ============================================================
   STICKY CTA BAR
   ============================================================ */

.sticky-cta-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--white);
    border-top: 3px solid var(--secondary);
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.14);
    padding: 0.85rem 1rem;

    /* Hidden by default — slides in from bottom */
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
    pointer-events: none;
}

.sticky-cta-bar.sticky-cta-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.sticky-cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

/* Product thumb + info */
.sticky-cta-product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 0;
}

.sticky-cta-thumb {
    width: 52px;
    height: 52px;
    object-fit: contain;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--white);
    flex-shrink: 0;
}

.sticky-cta-thumb-placeholder {
    width: 52px;
    height: 52px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--gray-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray);
    flex-shrink: 0;
}
.sticky-cta-thumb-placeholder svg { width: 22px; height: 22px; }

.sticky-cta-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.sticky-cta-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 220px;
}

.sticky-cta-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

/* Stars in sticky */
.sticky-cta-rating {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
}

.sticky-stars {
    display: flex;
    gap: 2px;
}

.sticky-stars .star-svg {
    width: 15px;
    height: 15px;
}

.sticky-rating-val {
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
}

/* Sticky CTA button — overrides base .btn-cta width:100% */
.sticky-cta-btn {
    width: auto !important;
    flex-shrink: 0;
    font-size: 1rem !important;
    padding: 0.75rem 1.5rem !important;
    white-space: nowrap;
    border-radius: var(--radius) !important;
}

/* On small screens: hide rating, shrink text */
@media (max-width: 480px) {
    .sticky-cta-rating { display: none; }
    .sticky-cta-name { max-width: 130px; }
    .sticky-btn-text { display: none; }
    .sticky-cta-btn { padding: 0.75rem 1rem !important; }
}

@media (max-width: 640px) {
    .sticky-cta-rating { display: none; }
}

/* ============================================================
   REVIEWS SECTION
   ============================================================ */

.reviews-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    padding: 3rem;
    margin-bottom: 3rem;
}

.reviews-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.reviews-header h2 {
    font-size: 1.8rem;
    color: var(--dark);
}
.reviews-subtitle {
    color: var(--gray);
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Overview: big score + bars + CTA */
.reviews-overview {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    background: var(--light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 3rem;
    border: 1px solid var(--border);
}
@media(min-width: 768px) {
    .reviews-overview {
        grid-template-columns: auto 1fr auto;
        align-items: center;
    }
}

/* Big Score */
.reviews-big-score {
    text-align: center;
    min-width: 140px;
}
.big-score-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.big-score-stars {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 0.5rem;
}
.big-score-total {
    font-size: 0.85rem;
    color: var(--gray);
    font-weight: 500;
}

/* Star SVG */
.star-svg {
    width: 20px;
    height: 20px;
    stroke: none;
}
.star-filled { fill: var(--warning); }
.star-empty  { fill: var(--gray-light); }

/* Rating Bars */
.reviews-bars {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0 1rem;
}
.rating-bar-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
}
.bar-label {
    width: 32px;
    text-align: right;
    font-weight: 600;
    color: var(--dark);
    white-space: nowrap;
}
.bar-track {
    flex: 1;
    height: 10px;
    background: var(--border);
    border-radius: 50px;
    overflow: hidden;
}
.bar-fill {
    height: 100%;
    background: var(--warning);
    border-radius: 50px;
    transition: width 0.8s ease;
}
.bar-count {
    width: 28px;
    font-size: 0.8rem;
    color: var(--gray);
    font-weight: 600;
}

/* Reviews CTA box */
.reviews-cta-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    min-width: 160px;
}
.reviews-cta-box p {
    font-weight: 600;
    color: var(--dark);
    font-size: 0.95rem;
}
.verified-badge-box {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 600;
    background: rgba(45, 106, 79, 0.08);
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
}
.verified-badge-box svg { width: 14px; height: 14px; color: var(--primary); }

/* Review Cards Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media(min-width: 640px) {
    .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media(min-width: 1024px) {
    .reviews-grid { grid-template-columns: 1fr 1fr 1fr; }
}

/* Individual Review Card */
.review-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.review-card-header {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

/* Avatar circle with initials */
.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    flex-shrink: 0;
    text-transform: uppercase;
}

.review-meta {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.review-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--dark);
}
.review-verified {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
}
.review-verified svg { width: 12px; height: 12px; color: var(--primary); }

.review-date {
    font-size: 0.78rem;
    color: var(--gray);
    white-space: nowrap;
    margin-top: 2px;
}

/* Stars in review card */
.review-stars {
    display: flex;
    gap: 2px;
}
.review-stars .star-svg {
    width: 16px;
    height: 16px;
}

/* Review Text */
.review-text {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    font-style: italic;
    flex-grow: 1;
    border-left: 3px solid var(--primary-light);
    padding-left: 0.75rem;
    margin-top: 0.25rem;
}

/* Helpful button */
.review-helpful {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-light);
    font-size: 0.8rem;
    color: var(--gray);
}
.helpful-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 50px;
    padding: 4px 10px;
    cursor: pointer;
    font-size: 0.8rem;
    color: var(--gray);
    transition: all 0.2s;
    font-weight: 600;
}
.helpful-btn:hover, .helpful-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}
.helpful-btn svg { width: 13px; height: 13px; }

/* Load More */
.reviews-load-more {
    text-align: center;
    padding-top: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer { background: var(--dark); color: var(--white); padding: 4rem 0 0; margin-top: 4rem; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.logo-footer { color: var(--white); margin-bottom: 1rem; }
.logo-footer svg { color: var(--secondary); }
.footer-col h3 { color: var(--white); font-size: 1.2rem; margin-bottom: 1.5rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.8rem; }
.footer-col a { color: #cbd5e1; }
.footer-col a:hover { color: var(--secondary); }
.trust-badges { display: flex; gap: 1rem; color: var(--secondary); }
.trust-badges svg { width: 32px; height: 32px; }
.footer-bottom { background: #1e1f29; padding: 1.5rem 20px; text-align: center; color: var(--gray); font-size: 0.9rem; }
.disclaimer { font-size: 0.75rem; margin-top: 5px; opacity: 0.7; }