/* ===== E-Scoot France — Mobile-First Design ===== */
:root {
  --yellow: #FACC15;
  --yellow-light: #FEF08A;
  --yellow-dark: #CA8A04;
  --white: #ffffff;
  --offwhite: #F9FAFB;
  --gray-50: #F3F4F6;
  --gray-100: #E5E7EB;
  --gray-200: #D1D5DB;
  --gray-300: #9CA3AF;
  --gray-400: #6B7280;
  --gray-500: #4B5563;
  --gray-600: #374151;
  --gray-700: #1F2937;
  --gray-900: #111827;
  --glass: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.4);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.14);
  --radius: 1rem;
  --radius-sm: 0.75rem;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', 'Inter', sans-serif;
}

*,*::before,*::after{box-sizing:border-box;margin:0}
html{scroll-behavior:smooth}
body{font-family:var(--font);background:var(--offwhite);color:var(--gray-700);line-height:1.6;min-height:100vh}
a{text-decoration:none;color:inherit}
img{max-width:100%;display:block}
button{font-family:inherit;cursor:pointer;border:none}
input,select,textarea{font-family:inherit;font-size:1rem}
ul{list-style:none;padding:0}

/* ===== MOBILE-FIRST BASE ===== */
.container{max-width:1200px;margin:0 auto;padding:0 1rem}
.container-sm{max-width:900px;margin:0 auto;padding:0 1rem}

/* ══ Top announcement bar ══ */
.top-bar{background:var(--gray-900);color:#fff;font-size:.72rem;font-weight:500;text-align:center;padding:.45rem 1rem;display:flex;align-items:center;justify-content:center;gap:1.5rem;overflow:hidden;white-space:nowrap}
.top-bar span{display:inline-flex;align-items:center;gap:.35rem;flex-shrink:0}
.top-bar span::before{content:'';display:inline-block;width:5px;height:5px;border-radius:50%;background:var(--yellow);flex-shrink:0}
.top-bar a{color:var(--yellow);font-weight:700;text-decoration:none}
.top-bar-scroll{display:flex;gap:2.5rem;animation:marquee 22s linear infinite}
@media(min-width:768px){.top-bar-scroll{animation:none;gap:2rem}}
@keyframes marquee{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}

/* ══ Header ══ */
.site-header{background:rgba(255,255,255,0.96);backdrop-filter:blur(16px);-webkit-backdrop-filter:blur(16px);border-bottom:1px solid var(--gray-100);position:sticky;top:0;z-index:100;box-shadow:0 1px 0 rgba(0,0,0,0.04)}
.header-inner{display:flex;align-items:center;justify-content:space-between;height:60px;padding:0 0.5rem}
.logo{display:flex;align-items:center;gap:0.5rem;font-weight:800;font-size:1.1rem;color:var(--gray-900);letter-spacing:-.02em}
.logo-text{font-family:var(--font-heading);font-size:1.05rem;font-weight:800;color:var(--gray-900);letter-spacing:-.025em}
.logo-text em{color:var(--yellow-dark);font-style:normal}
.logo svg{flex-shrink:0;width:32px;height:32px}

/* Mobile hamburger */
.menu-toggle{display:flex;flex-direction:column;gap:4px;background:none;border:none;padding:0.5rem;cursor:pointer;z-index:101}
.menu-toggle span{display:block;width:24px;height:2.5px;background:var(--gray-700);border-radius:2px;transition:0.3s}
.menu-toggle.active span:nth-child(1){transform:rotate(45deg) translate(5px,5px)}
.menu-toggle.active span:nth-child(2){opacity:0}
.menu-toggle.active span:nth-child(3){transform:rotate(-45deg) translate(4px,-4px)}

/* Mobile nav overlay */
.main-nav{display:none;position:fixed;inset:0;top:60px;background:var(--white);flex-direction:column;padding:1rem 1.5rem;gap:0;z-index:99;overflow-y:auto;box-shadow:0 8px 32px rgba(0,0,0,.12)}
.main-nav.open{display:flex}
.main-nav a{padding:1rem 0;font-weight:600;font-size:1.1rem;color:var(--gray-700);border-bottom:1px solid var(--gray-100);transition:color .2s;display:flex;align-items:center;gap:.5rem}
.main-nav a:hover{color:var(--yellow-dark)}
.main-nav a.active{color:var(--yellow-dark)}

.header-actions{display:flex;align-items:center;gap:0.75rem}
.cart-btn{position:relative;display:flex;align-items:center;gap:0.3rem;color:var(--gray-700);font-weight:500;padding:0.5rem}
.cart-count{position:absolute;top:-2px;right:-4px;background:var(--yellow);color:var(--gray-900);font-size:0.6rem;font-weight:700;width:18px;height:18px;border-radius:50%;display:flex;align-items:center;justify-content:center}

/* Buttons */
.btn{display:inline-flex;align-items:center;justify-content:center;gap:0.4rem;padding:0.7rem 1.2rem;border-radius:var(--radius-sm);font-weight:600;font-size:0.9rem;transition:all .2s;border:none}
.btn-primary{background:var(--yellow);color:var(--gray-900);box-shadow:0 2px 8px rgba(250,204,21,0.25)}
.btn-primary:hover{background:var(--gray-900);color:var(--yellow);transform:translateY(-1px);box-shadow:0 4px 12px rgba(17,24,39,0.2)}
.btn-secondary{background:var(--gray-100);color:var(--gray-700)}
.btn-secondary:hover{background:var(--gray-200);transform:translateY(-1px)}
.btn-outline{background:transparent;border:1px solid var(--gray-200);color:var(--gray-500)}
.btn-outline:hover{border-color:var(--yellow);color:var(--gray-900);transform:translateY(-1px)}
.btn-block{width:100%}
.btn:active{transform:scale(0.96)}
.btn-primary:active{transform:translateY(0) scale(0.96)}
.btn-lg{padding:0.85rem 1.6rem;font-size:1rem;border-radius:var(--radius)}

/* Forms */
.form-group{margin-bottom:1rem}
.form-label{display:block;font-weight:600;font-size:0.82rem;color:var(--gray-600);margin-bottom:0.3rem}
.form-input,.form-select,.form-textarea{width:100%;padding:0.7rem 0.9rem;border:1.5px solid var(--gray-100);border-radius:var(--radius-sm);background:var(--white);transition:border-color .2s,box-shadow .2s;font-size:0.95rem}
.form-input:focus,.form-select:focus,.form-textarea:focus{outline:none;border-color:var(--yellow);box-shadow:0 0 0 3px rgba(250,204,21,0.15)}
.form-textarea{min-height:100px;resize:vertical}
.form-row{display:grid;grid-template-columns:1fr;gap:0.75rem}

/* Cards */
.glass-card{background:var(--glass);backdrop-filter:blur(10px);border:1px solid var(--glass-border);border-radius:var(--radius);padding:1.2rem;box-shadow:var(--shadow)}

/* Product Grid — MOBILE: 1 column */
.product-grid{display:grid;gap:1rem;grid-template-columns:1fr}

/* Product Card */
/* ── Product Card ── */
.product-card{background:var(--white);border:1px solid rgba(17,24,39,0.06);border-radius:var(--radius);overflow:hidden;box-shadow:0 2px 12px -2px rgba(17,24,39,0.06),0 1px 3px rgba(17,24,39,0.04);transition:box-shadow .45s cubic-bezier(0.16,1,0.3,1),transform .45s cubic-bezier(0.16,1,0.3,1);display:flex;flex-direction:column}
.product-card:hover{box-shadow:0 24px 48px -12px rgba(17,24,39,0.14),0 8px 20px -6px rgba(17,24,39,0.08);transform:translateY(-8px)}

/* Image wrap */
.product-img-wrap{position:relative;aspect-ratio:4/3;overflow:hidden;background:var(--gray-50);flex-shrink:0}
.product-img-wrap img{width:100%;height:100%;object-fit:contain;padding:1.5rem;box-sizing:border-box;transition:transform .65s cubic-bezier(0.16,1,0.3,1)}
.product-card:hover .product-img-wrap img{transform:scale(1.07)}

/* Discount badge */
.badge-discount{position:absolute;top:10px;left:10px;z-index:2;background:linear-gradient(135deg,#EF4444,#DC2626);color:#fff;font-size:.66rem;font-weight:800;padding:.22rem .55rem;border-radius:999px;letter-spacing:.02em;box-shadow:0 2px 8px rgba(239,68,68,0.4)}

/* Condition badge */
.badge-condition{position:absolute;top:10px;right:10px;z-index:2;background:var(--glass);backdrop-filter:blur(8px);color:var(--gray-700);font-size:.66rem;font-weight:600;padding:.22rem .55rem;border-radius:999px;border:1px solid var(--glass-border)}

/* Promo badge */
.badge-promo{position:absolute;top:10px;right:10px;z-index:2;background:linear-gradient(135deg,#7C3AED,#6D28D9);color:#fff;font-size:.66rem;font-weight:700;padding:.22rem .6rem;border-radius:999px;letter-spacing:.02em;box-shadow:0 2px 8px rgba(124,58,237,0.4)}

/* 🎁 Gift card badge — dark graphite + gold */
.gift-card-badge{position:absolute;bottom:0;left:0;right:0;z-index:3;background:linear-gradient(135deg,rgba(17,24,39,0.92) 0%,rgba(31,41,55,0.88) 100%);backdrop-filter:blur(4px);color:var(--yellow);font-size:.7rem;font-weight:700;padding:.45rem .75rem;letter-spacing:.015em;display:flex;align-items:center;gap:.35rem;border-top:1px solid rgba(250,204,21,0.25)}
.gift-card-badge::before{content:'🎁';font-size:.8rem;flex-shrink:0}

/* Product info block */
.product-info{padding:0.9rem 1rem 1rem;display:flex;flex-direction:column;flex:1}
.product-cat{font-size:.66rem;font-weight:700;text-transform:uppercase;letter-spacing:.07em;color:var(--yellow-dark);margin-bottom:.2rem}
.product-name{font-size:.88rem;font-weight:700;color:var(--gray-900);margin-bottom:.35rem;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;min-height:2.4rem;line-height:1.35;transition:color .2s}
.product-name:hover{color:var(--yellow-dark)}

/* Spec pills — enhanced */
.product-specs{display:flex;flex-wrap:wrap;gap:.3rem;margin-bottom:.5rem}
.product-specs span{font-size:.67rem;font-weight:600;background:var(--gray-50);color:var(--gray-600);border:1px solid var(--gray-200);padding:.18rem .55rem;border-radius:999px;transition:border-color .2s,color .2s,background .2s}
.product-card:hover .product-specs span{border-color:rgba(250,204,21,0.5);color:var(--gray-700);background:rgba(250,204,21,0.06)}

/* Stars & badges */
.product-stars{display:flex;align-items:center;gap:.25rem;margin-bottom:.25rem}
.stars-yellow{color:var(--yellow);letter-spacing:1px;font-size:.82rem}
.review-count{font-size:.7rem;color:var(--gray-300)}
@keyframes flame-pulse{0%,100%{opacity:1}50%{opacity:.7}}
.sales-badge{font-size:.65rem;font-weight:700;color:#EA580C;background:rgba(234,88,12,.08);border:1px solid rgba(234,88,12,.2);padding:.1rem .4rem;border-radius:999px;margin-left:.2rem;animation:flame-pulse 2s ease-in-out infinite}

/* Price — stronger accent */
.product-bottom{margin-top:auto}
.product-price{display:flex;align-items:baseline;gap:.4rem;margin-bottom:.6rem}
.price-current{font-size:1.45rem;font-weight:900;color:var(--gray-900);letter-spacing:-0.03em;line-height:1}
.price-original{font-size:.8rem;color:var(--gray-300);text-decoration:line-through}
.price-note{font-size:.67rem;color:var(--gray-300);margin-bottom:.6rem}
.cart-form button{width:100%;padding:.65rem 1rem;font-size:.82rem;border-radius:999px;font-weight:700}

/* Gallery */
.gallery-main{aspect-ratio:4/3;border-radius:var(--radius);overflow:hidden;background:var(--gray-50);margin-bottom:.6rem}
.gallery-main img{width:100%;height:100%;object-fit:contain;padding:1rem;box-sizing:border-box}
.gallery-thumbs{display:flex;gap:.4rem;overflow-x:auto;padding-bottom:.4rem;scrollbar-width:none}
.gallery-thumbs::-webkit-scrollbar{display:none}
.gallery-thumbs img{width:72px;height:56px;object-fit:contain;padding:0.25rem;box-sizing:border-box;background:var(--gray-50);border-radius:var(--radius-sm);cursor:pointer;border:2px solid transparent;transition:border-color .2s;flex-shrink:0}
.gallery-thumbs img.active{border-color:var(--yellow)}
.gallery-thumbs img:hover{border-color:var(--yellow-light)}

/* Hero — MOBILE */
.hero{padding:2.5rem 0 2rem;background:linear-gradient(135deg, var(--white) 0%, var(--yellow-light) 50%, var(--offwhite) 100%);position:relative;overflow:hidden}
.hero::before{content:'';position:absolute;top:-30%;right:-20%;width:300px;height:300px;background:radial-gradient(circle, rgba(250,204,21,0.15) 0%, transparent 70%);border-radius:50%;pointer-events:none}
.hero-inner{display:grid;grid-template-columns:1fr;gap:1.5rem}
.hero-title{font-size:1.8rem;font-weight:800;color:var(--gray-900);line-height:1.15;margin-bottom:0.8rem}
.hero-title span{color:var(--yellow-dark)}
.hero-desc{font-size:0.95rem;color:var(--gray-500);margin-bottom:1.2rem;max-width:100%}
.hero-badges{display:flex;gap:0.6rem;margin-bottom:1.5rem;flex-wrap:wrap}
.hero-badge{display:flex;align-items:center;gap:.3rem;font-size:.75rem;color:var(--gray-500);background:var(--glass);backdrop-filter:blur(8px);padding:.4rem .7rem;border-radius:999px;border:1px solid var(--glass-border)}
.hero-img{display:block;width:100%;max-width:380px;margin:1rem auto 0;position:relative}
.hero-img img{border-radius:var(--radius);box-shadow:var(--shadow-lg);transform:rotate(-1.5deg);width:100%;height:auto;object-fit:cover}

/* ══ Section headers ══ */
.section-header{text-align:center;margin-bottom:2rem}
.section-label{display:inline-block;font-size:.68rem;font-weight:700;text-transform:uppercase;letter-spacing:.12em;color:var(--yellow-dark);background:rgba(202,138,4,0.08);padding:.28rem .75rem;border-radius:999px;margin-bottom:.6rem;border:1px solid rgba(202,138,4,0.2)}
.section-header h2{font-size:1.45rem;font-weight:800;color:var(--gray-900);margin-bottom:.4rem;font-family:var(--font-heading);letter-spacing:-.025em;line-height:1.2}
.section-header p{color:var(--gray-400);font-size:.88rem;max-width:520px;margin:0 auto}

/* Section divider */
.section-divider{height:1px;background:linear-gradient(90deg,transparent,var(--gray-100),transparent);margin:0;border:none}

/* Category grid — MOBILE: 2 columns */
.category-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:0.8rem}
.category-card{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1rem;text-align:center;transition:all .25s ease}
.category-card:hover{border-color:var(--yellow);transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.category-card:active{transform:translateY(-2px) scale(0.97)}
.category-card .icon{font-size:1.8rem;margin-bottom:.5rem}
.category-card h3{font-size:0.85rem;font-weight:700;color:var(--gray-900);margin-bottom:.15rem}
.category-card p{font-size:.72rem;color:var(--gray-400)}

/* ══ Trust Bar — Premium redesign ══ */
.trust-section{padding:2rem 0;background:var(--white);border-top:1px solid var(--gray-100);border-bottom:1px solid var(--gray-100)}
.trust-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1rem}
.trust-item{display:flex;flex-direction:column;align-items:center;text-align:center;padding:1.2rem 1rem;background:var(--offwhite);border-radius:var(--radius);border:1px solid var(--gray-100);transition:box-shadow .3s,transform .3s;position:relative;overflow:hidden}
.trust-item::before{content:'';position:absolute;top:0;left:0;right:0;height:3px;background:linear-gradient(90deg,var(--yellow),var(--yellow-dark));transform:scaleX(0);transition:transform .3s;transform-origin:left}
.trust-item:hover{box-shadow:var(--shadow);transform:translateY(-3px)}
.trust-item:hover::before{transform:scaleX(1)}
.trust-icon{width:44px;height:44px;border-radius:50%;background:rgba(250,204,21,0.12);border:1px solid rgba(250,204,21,0.25);display:flex;align-items:center;justify-content:center;margin-bottom:.75rem;flex-shrink:0}
.trust-icon svg{width:22px;height:22px;stroke:var(--yellow-dark);fill:none;stroke-width:1.75;stroke-linecap:round;stroke-linejoin:round}
.trust-num{font-size:1.15rem;font-weight:900;color:var(--gray-900);font-family:var(--font-heading);letter-spacing:-.02em;line-height:1}
.trust-item h4{font-size:.78rem;font-weight:700;color:var(--gray-900);margin-bottom:.2rem;margin-top:.1rem}
.trust-item p{font-size:.68rem;color:var(--gray-400);line-height:1.4}

/* Filters sidebar — MOBILE: hidden by default */
.shop-layout{display:grid;grid-template-columns:1fr;gap:1rem}
.filter-sidebar{display:none}
.filter-toggle{display:flex;align-items:center;gap:.5rem;padding:.5rem .8rem;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-sm);font-weight:600;font-size:.85rem;color:var(--gray-700);margin-bottom:1rem}
.filter-sidebar.open{display:block;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1rem;margin-bottom:1rem}
.filter-sidebar h4{font-size:.8rem;font-weight:700;color:var(--gray-900);margin-bottom:.5rem;text-transform:uppercase;letter-spacing:.04em}
.filter-option{display:flex;align-items:center;gap:.4rem;margin-bottom:.35rem;font-size:.82rem;color:var(--gray-500);cursor:pointer}
.filter-option input{width:16px;height:16px;accent-color:var(--yellow)}
.filter-option:hover{color:var(--gray-900)}
.price-range{display:flex;gap:.4rem;align-items:center}
.price-range input{width:80px;padding:.4rem;font-size:.8rem}

/* Product detail — MOBILE */
.product-detail{display:grid;grid-template-columns:1fr;gap:1.5rem;margin:1rem 0}
.product-meta h1{font-size:1.4rem;font-weight:800;color:var(--gray-900);margin-bottom:.4rem}
.product-meta .subtitle{color:var(--gray-400);font-size:.9rem;margin-bottom:.8rem}
.specs-table{width:100%;margin-bottom:1rem;font-size:.85rem}
.specs-table td{padding:.4rem 0;border-bottom:1px solid var(--gray-100)}
.specs-table td:first-child{color:var(--gray-400);width:120px}
.specs-table td:last-child{font-weight:600;color:var(--gray-700)}
.quantity-row{display:flex;align-items:center;gap:1rem;margin-bottom:1rem}
.quantity-row input{width:65px;text-align:center;padding:.4rem}
.add-cart-btn{padding:.8rem 1.5rem;font-size:.95rem}
.credit-banner{background:linear-gradient(135deg, var(--yellow-light), var(--white));border:1px solid var(--yellow);border-radius:var(--radius);padding:0.8rem 1rem;margin-top:1rem;text-align:center}
.credit-banner p{font-size:.82rem;color:var(--gray-600);margin-bottom:.3rem}
.credit-banner a{color:var(--yellow-dark);font-weight:700;font-size:.85rem}

/* Reviews */
.reviews-list{display:grid;gap:.8rem}
.review-item{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius-sm);padding:1rem}
.review-header{display:flex;align-items:center;gap:.5rem;margin-bottom:.4rem}
.review-avatar{width:36px;height:36px;border-radius:50%;object-fit:cover}
.review-name{font-weight:700;font-size:.82rem;color:var(--gray-900)}
.review-date{font-size:.68rem;color:var(--gray-300)}
.review-stars{color:var(--yellow);font-size:.78rem;margin-bottom:.3rem}
.review-text{font-size:.82rem;color:var(--gray-600);line-height:1.5}

/* Cart — MOBILE */
.cart-table{width:100%;border-collapse:collapse;margin-bottom:1rem;font-size:.85rem}
.cart-table th{text-align:left;padding:.6rem .4rem;font-size:.7rem;text-transform:uppercase;letter-spacing:.04em;color:var(--gray-400);border-bottom:2px solid var(--gray-100)}
.cart-table td{padding:.6rem .4rem;border-bottom:1px solid var(--gray-100);vertical-align:middle}
.cart-table td img{width:50px;height:40px;object-fit:contain;border-radius:var(--radius-sm);background:var(--gray-50);padding:0.15rem;box-sizing:border-box}
.cart-product{display:flex;align-items:center;gap:.6rem;flex-direction:column;align-items:flex-start}
.cart-product-name{font-weight:700;color:var(--gray-900);font-size:.82rem}
.cart-qty input{width:45px;padding:.3rem;text-align:center;font-size:.8rem}
.cart-total{font-weight:800;font-size:.95rem}
.cart-summary{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1.2rem;margin-top:1rem}
.cart-summary h3{font-size:1rem;font-weight:800;margin-bottom:.8rem}
.summary-row{display:flex;justify-content:space-between;margin-bottom:.5rem;font-size:.85rem}
.summary-row.total{font-size:1.05rem;font-weight:800;color:var(--gray-900);border-top:2px solid var(--gray-100);padding-top:.6rem;margin-top:.6rem}
.empty-cart{text-align:center;padding:2rem}
.empty-cart .icon{font-size:2.5rem;margin-bottom:.8rem}

/* Checkout — MOBILE */
.checkout-grid{display:grid;grid-template-columns:1fr;gap:1.5rem}
.checkout-form .section-title{font-size:1rem;font-weight:800;margin-bottom:.8rem;color:var(--gray-900)}

/* Admin */
.admin-body{background:var(--gray-50)}
.admin-header{background:var(--gray-900);color:#fff;padding:.6rem 1rem}
.admin-header a{color:#fff;font-weight:700}
.admin-nav{background:var(--white);border-bottom:1px solid var(--gray-100);padding:.4rem 1rem;display:flex;gap:1rem;overflow-x:auto;white-space:nowrap}
.admin-nav a{color:var(--gray-500);font-size:.78rem;font-weight:600;padding:.3rem 0}
.admin-nav a:hover,.admin-nav a.active{color:var(--yellow-dark);border-bottom:2px solid var(--yellow)}
.admin-container{max-width:1200px;margin:0 auto;padding:1rem}
.admin-table{width:100%;border-collapse:collapse;background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-sm);font-size:.78rem}
.admin-table th{background:var(--gray-50);padding:.6rem;font-size:.7rem;text-transform:uppercase;letter-spacing:.04em;color:var(--gray-400);text-align:left}
.admin-table td{padding:.6rem;border-bottom:1px solid var(--gray-100)}
.admin-table tr:hover{background:var(--gray-50)}
.status-badge{display:inline-block;padding:.15rem .5rem;border-radius:999px;font-size:.65rem;font-weight:700}
.status-paid{background:#DCFCE7;color:#166534}
.status-pending{background:#FEF3C7;color:#92400E}
.status-shipped{background:#DBEAFE;color:#1E40AF}

/* Login */
.login-box{max-width:360px;margin:3rem auto;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1.5rem;box-shadow:var(--shadow)}
.login-box h2{text-align:center;margin-bottom:1.2rem;color:var(--gray-900);font-size:1.2rem}

/* Messages */
.msg{padding:.7rem 1rem;border-radius:var(--radius-sm);margin-bottom:.8rem;font-size:.85rem}
.msg-success{background:#DCFCE7;color:#166534;border:1px solid #86EFAC}
.msg-error{background:#FEE2E2;color:#991B1B;border:1px solid #FCA5A5}

/* Credit */
.credit-hero{background:linear-gradient(135deg, var(--yellow-light), var(--white));padding:2rem 0;text-align:center;border-radius:0 0 var(--radius) var(--radius)}
.credit-hero h1{font-size:1.4rem;font-weight:800;margin-bottom:.4rem}
.credit-hero p{color:var(--gray-500);font-size:.85rem}
.credit-calculator{max-width:600px;margin:1.5rem auto;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1.5rem}
.credit-result{background:var(--gray-50);border-radius:var(--radius-sm);padding:1.2rem;text-align:center;margin-top:1.2rem}
.credit-result .big{font-size:1.6rem;font-weight:800;color:var(--gray-900)}
.credit-result .small{font-size:.78rem;color:var(--gray-400);margin-top:.2rem}

/* Pagination */
.pagination{display:flex;gap:.3rem;justify-content:center;margin-top:1.5rem;flex-wrap:wrap}
.pagination a,.pagination span{display:inline-flex;align-items:center;justify-content:center;min-width:36px;height:36px;border-radius:var(--radius-sm);font-size:.78rem;font-weight:600;color:var(--gray-500);border:1px solid var(--gray-100);padding:0 .4rem;text-decoration:none;transition:all 0.2s ease}
.pagination a{cursor:pointer;}
.pagination a:hover{background:var(--yellow-light);border-color:var(--yellow);color:var(--gray-900)}
.pagination span.active{background:var(--yellow);border-color:var(--yellow);color:var(--gray-900);cursor:default}

/* ══ Footer ══ */
.site-footer{background:var(--gray-900);color:var(--gray-300);padding:3rem 0 0;margin-top:auto}
.footer-grid{display:grid;grid-template-columns:1fr;gap:2rem;margin-bottom:2.5rem}
.footer-logo{display:flex;align-items:center;gap:.6rem;font-weight:800;color:#fff;margin-bottom:.8rem;font-family:var(--font-heading);font-size:1.1rem;letter-spacing:-.02em}
.footer-desc{font-size:.78rem;color:var(--gray-400);line-height:1.7;max-width:100%;margin-bottom:1.2rem}
.footer-social{display:flex;gap:.6rem;margin-top:.2rem}
.footer-social a{width:34px;height:34px;border-radius:.5rem;border:1px solid rgba(255,255,255,.1);display:flex;align-items:center;justify-content:center;transition:border-color .2s,background .2s}
.footer-social a:hover{border-color:var(--yellow);background:rgba(250,204,21,.1)}
.footer-social svg{width:16px;height:16px;stroke:#9ca3af;stroke-width:1.75;fill:none;transition:stroke .2s}
.footer-social a:hover svg{stroke:var(--yellow)}
.site-footer h4{font-size:.72rem;font-weight:700;color:#fff;margin-bottom:.8rem;text-transform:uppercase;letter-spacing:.06em}
.site-footer ul li{margin-bottom:.45rem}
.site-footer ul li a{font-size:.78rem;color:var(--gray-400);transition:color .2s}
.site-footer ul li a:hover{color:var(--yellow)}
/* Payment logos */
.footer-payments{margin-top:2rem;padding-top:1.5rem;border-top:1px solid rgba(255,255,255,.07)}
.footer-payments p{font-size:.68rem;color:var(--gray-500);text-transform:uppercase;letter-spacing:.07em;margin-bottom:.7rem}
.payment-logos{display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.pay-logo{height:26px;background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.12);border-radius:.4rem;padding:.2rem .55rem;display:inline-flex;align-items:center;justify-content:center}
.pay-logo span{font-size:.62rem;font-weight:700;color:#d1d5db;letter-spacing:.02em;white-space:nowrap}
/* Trust badges in footer */
.footer-trust{display:flex;gap:.75rem;flex-wrap:wrap;margin-top:1rem}
.footer-trust-badge{display:inline-flex;align-items:center;gap:.3rem;font-size:.65rem;color:var(--gray-400);background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.08);border-radius:999px;padding:.25rem .6rem}
.footer-trust-badge svg{width:12px;height:12px;stroke:var(--yellow-dark);fill:none;flex-shrink:0}
.footer-copy{padding:1rem 0;border-top:1px solid var(--gray-800,rgba(255,255,255,.06));font-size:.68rem;color:var(--gray-500);display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:.5rem}
.footer-copy a{color:var(--gray-400);transition:color .2s}
.footer-copy a:hover{color:var(--yellow)}

/* Contact */
.contact-grid{display:grid;gap:1.5rem}
.contact-info-item{display:flex;align-items:flex-start;gap:.75rem;padding:1rem;background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius)}
.contact-info-item .icon{font-size:1.4rem;color:var(--yellow-dark);flex-shrink:0}

/* ===== TABLET (768px+) ===== */
@media(min-width:768px){
  .container{padding:0 1.5rem}
  .header-inner{height:64px;padding:0}
  .menu-toggle{display:none}
  .main-nav{display:flex;position:static;flex-direction:row;gap:1.8rem;padding:0;background:transparent;overflow:visible}
  .main-nav a{padding:0;font-size:.88rem;font-weight:500;border-bottom:none;color:var(--gray-500)}
  .main-nav a:hover{color:var(--gray-900)}
  .hero{padding:4rem 0 3rem}
  .hero-inner{grid-template-columns:1fr 1fr;gap:2rem}
  .hero-title{font-size:2.4rem}
  .hero-desc{font-size:1rem;max-width:480px}
  .hero-badges{gap:0.8rem}
  .hero-badge{font-size:.78rem;padding:.45rem .8rem}
  .hero-img{display:block;max-width:none;margin:0;position:relative}
  .hero-img img{transform:rotate(-2deg);width:100%}
  .product-grid{gap:1.2rem;grid-template-columns:repeat(2,1fr)}
  .category-grid{grid-template-columns:repeat(3,1fr);gap:1rem}
  .trust-grid{grid-template-columns:repeat(4,1fr);gap:1.2rem;margin:2.5rem 0}
  .trust-item{padding:1rem}
  .trust-item .icon{font-size:1.8rem;margin-bottom:.5rem}
  .trust-item h4{font-size:.82rem}
  .trust-item p{font-size:.72rem}
  .product-detail{grid-template-columns:1fr 1fr;gap:2rem;margin:1.5rem 0}
  .product-meta h1{font-size:1.8rem}
  .specs-table{font-size:.88rem}
  .specs-table td:first-child{width:140px}
  .reviews-list{gap:1rem}
  .review-item{padding:1.2rem}
  .cart-table{font-size:.88rem}
  .cart-table td img{width:70px;height:52px}
  .cart-product{flex-direction:row;align-items:center;gap:1rem}
  .cart-summary{margin-top:0}
  .checkout-grid{grid-template-columns:1fr 320px;gap:2rem}
  .footer-grid{grid-template-columns:2fr 1fr 1fr 1fr;gap:2rem}
  .section-header h2{font-size:1.7rem}
  .section-header p{font-size:.92rem}
  .contact-grid{grid-template-columns:1fr 1fr}
  .trust-grid{grid-template-columns:repeat(4,1fr);gap:1.2rem}
}

/* ===== DESKTOP (1024px+) ===== */
@media(min-width:1024px){
  .container{max-width:1200px;padding:0 2rem}
  .product-grid-3{grid-template-columns:repeat(3,1fr)}
  .product-grid-4{grid-template-columns:repeat(4,1fr)}
  .shop-layout{grid-template-columns:240px 1fr;gap:2rem}
  .filter-sidebar{display:block !important}
  .filter-toggle{display:none}
  .hero{padding:5.5rem 0 4.5rem}
  .hero-title{font-size:3.2rem}
  .hero-desc{font-size:1.1rem}
  .product-name{font-size:.9rem;min-height:2.6rem}
  .price-current{font-size:1.35rem}
  .checkout-grid{grid-template-columns:1fr 360px;gap:2.5rem}
  .credit-hero h1{font-size:2rem}
  .section-header h2{font-size:1.9rem}
}

/* ===== WIDE (1280px+) ===== */
@media(min-width:1280px){
  .container{max-width:1300px}
  .hero-inner{gap:3rem}
}

/* ===== FILTER CHIPS ===== */
.filter-chip{display:inline-flex;align-items:center;gap:.3rem;padding:.3rem .75rem;border-radius:20px;font-size:.78rem;font-weight:600;border:1px solid rgba(255,255,255,.12);cursor:pointer;transition:all .15s;white-space:nowrap;background:transparent;color:var(--gray-300);text-decoration:none}
.filter-chip:hover{background:rgba(250,204,21,.12);color:var(--yellow);border-color:rgba(250,204,21,.4)}
.filter-chip.active{background:var(--yellow);color:#111;border-color:var(--yellow);font-weight:700}

/* ===== FILTER SIDEBAR ENHANCEMENTS ===== */
.filter-section{margin-bottom:1.1rem;padding-bottom:1.1rem;border-bottom:1px solid rgba(255,255,255,.06)}
.filter-section:last-child{border-bottom:none;margin-bottom:0;padding-bottom:0}
.filter-title{font-size:.78rem;font-weight:700;color:var(--gray-200);margin-bottom:.6rem;text-transform:uppercase;letter-spacing:.06em}
.filter-count{font-size:.72rem;color:var(--gray-400);font-weight:400}

/* ===== SORT SELECT ===== */
.sort-select{background:var(--bg-card);border:1px solid rgba(255,255,255,.12);color:var(--text-primary);padding:.4rem .8rem;border-radius:8px;font-size:.83rem;cursor:pointer;font-family:inherit;outline:none;transition:.15s}
.sort-select:hover{border-color:var(--yellow)}

/* ===== SALES BADGE ===== */
.sales-badge{font-size:.68rem;font-weight:600;color:var(--orange-400, #f97316);background:rgba(249,115,22,.1);padding:.1rem .4rem;border-radius:999px;margin-left:.3rem}
.badge-promo{position:absolute;top:8px;right:8px;z-index:2;background:#EF4444;color:#fff;font-size:.68rem;font-weight:700;padding:.2rem .5rem;border-radius:999px;animation:pulse-soft 2s infinite}
@keyframes pulse-soft{0%,100%{opacity:1}50%{opacity:.7}}

/* ===== PRODUCT CARD btn-sm ===== */
.btn-sm{padding:.4rem .75rem;font-size:.8rem}

/* ===== GIFT PROMOTION ===== */
.gift-card-badge {
  position:absolute; bottom:0; left:0; right:0; z-index:3;
  background:linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color:var(--yellow); font-size:.72rem; font-weight:700;
  padding:.35rem .6rem; text-align:center; letter-spacing:.02em;
  border-top:1px solid rgba(250,204,21,0.25);
}
.gift-promo-banner {
  background:linear-gradient(135deg,#1a1f0a 0%,#14200a 100%);
  border-top:2px solid #facc15; border-bottom:2px solid #facc15;
  padding:2rem 0;
}
.gift-promo-inner {
  display:flex; align-items:center; gap:1.5rem; flex-wrap:wrap;
}
.gift-promo-icon { font-size:3rem; flex-shrink:0; }
.gift-promo-text { flex:1; min-width:220px; }
.gift-promo-text h2 { font-size:1.3rem; font-weight:800; color:#facc15; margin-bottom:.4rem; }
.gift-promo-text p { font-size:.9rem; color:#d1d5db; line-height:1.6; margin:0; }
.gift-promo-choices { display:flex; align-items:center; gap:1rem; flex-shrink:0; flex-wrap:wrap; }
.gift-choice-preview {
  background:rgba(255,255,255,.06); border:1px solid rgba(250,204,21,.25);
  border-radius:.75rem; padding:.85rem 1.1rem; text-align:center;
  display:flex; flex-direction:column; align-items:center; gap:.35rem;
}
.gift-choice-preview > span:first-child { font-size:1.8rem; }
.gift-choice-preview > span:nth-child(2) { font-size:.82rem; font-weight:700; color:#facc15; }
.gift-or { font-size:.85rem; color:#6b7280; font-weight:600; }
.color-dots { display:flex; gap:.3rem; justify-content:center; margin-top:.2rem; }
.color-dots span { width:14px; height:14px; border-radius:50%; display:inline-block; }

/* ===================================================
   MOBILE-FIRST ADDITIONS & FIXES
   =================================================== */

/* Responsive cart page grid */
.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media(min-width: 768px) {
  .cart-page-grid {
    grid-template-columns: 1fr 340px;
    gap: 2.5rem;
  }
}

/* Table scroll wrapper */
.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: var(--radius-sm);
  margin-bottom: .75rem;
}
.table-scroll .cart-table {
  min-width: 480px;
}

/* Hero CTA buttons — stack on mobile */
.hero-cta-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: flex-start;
}
@media(min-width: 480px) {
  .hero-cta-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }
}

/* Gift promo banner — mobile */
@media(max-width: 767px) {
  .gift-promo-inner {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
  .gift-promo-choices {
    justify-content: center;
    width: 100%;
  }
  .gift-choice-preview img {
    width: 72px !important;
    height: 72px !important;
  }
  .gift-promo-icon { font-size: 2.2rem; }
  .gift-promo-text h2 { font-size: 1.1rem; }
}

@media(max-width: 500px) {
  .gift-promo-choices {
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
  }
}

/* Contact stats grid — responsive */
.contact-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: .8rem;
  margin-top: 2rem;
  text-align: center;
}
@media(min-width: 640px) {
  .contact-stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

/* Credit calculator form row — responsive */
.credit-form-row {
  grid-template-columns: 1fr !important;
}
@media(min-width: 640px) {
  .credit-form-row {
    grid-template-columns: 1fr 1fr 1fr !important;
  }
}

/* Better touch targets for all interactive elements */
@media(max-width: 767px) {
  .btn { min-height: 44px; }
  .form-input, .form-select { min-height: 44px; }
  .swatch { width: 32px !important; height: 32px !important; }
  .cart-qty input { min-height: 36px; }

  /* Header tighter on mobile */
  .cart-btn { padding: .4rem .3rem; }

  /* Product card: slightly bigger text on mobile */
  .product-name { font-size: .9rem !important; }
  .price-current { font-size: 1.1rem !important; }
  .cart-form button { width: 100%; min-height: 40px; }

  /* Checkout form row stays single column */
  .form-row { grid-template-columns: 1fr !important; }

  /* Gift section showcase stacks */
  .gift-showcase { flex-direction: column; align-items: center; text-align: center; }
  .gift-photo-wrap { margin: 0 auto; }
  .gift-details { width: 100%; }
  .swatch-row { justify-content: center; }
  .selected-badge { justify-content: center; }

  /* Gift tabs vertical on very small screens */
  .gift-tabs { flex-direction: column; }
  .gift-tab { text-align: center; }

  /* Section header smaller on mobile */
  .section-header h2 { font-size: 1.25rem; }

  /* Hero title smaller on very small screens */
  .hero-title { font-size: 1.55rem; }

  /* Footer compact */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .footer-grid > div:first-child { grid-column: 1/-1; }

  /* Admin table scrollable */
  .admin-container { overflow-x: auto; }
  .admin-table { min-width: 600px; }

  /* Cart summary sticky on mobile */
  .cart-summary {
    position: sticky;
    bottom: 0;
    z-index: 10;
    box-shadow: 0 -4px 20px rgba(0,0,0,.08);
  }

  /* Cart table to Grid responsive transform */
  .table-scroll {
    overflow-x: visible;
  }
  .table-scroll .cart-table {
    min-width: 100%;
    display: block;
  }
  .cart-table thead {
    display: none;
  }
  .cart-table tbody {
    display: block;
  }
  .cart-table tr {
    display: grid;
    grid-template-areas: 
      "product product remove"
      "qty total total";
    grid-template-columns: 1fr auto auto;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    margin-bottom: 1rem;
    align-items: center;
    box-shadow: var(--shadow-sm);
  }
  .cart-table td {
    display: block;
    padding: 0 !important;
    border-bottom: none !important;
  }
  .cart-table td:nth-child(1) {
    grid-area: product;
  }
  .cart-table td:nth-child(2) {
    grid-area: qty;
  }
  .cart-table td:nth-child(3) {
    grid-area: total;
    text-align: right;
    font-size: 1.05rem;
    font-weight: 800;
  }
  .cart-table td:nth-child(4) {
    grid-area: remove;
    text-align: right;
  }
  .cart-product {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
  }
  .cart-product img {
    width: 60px;
    height: 48px;
  }
}

/* Tablet improvements */
@media(min-width: 768px) and (max-width: 1023px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .footer-grid > div:first-child { grid-column: 1/-1; }
}

/* Boutique layout: keep filter toggle visible until 1024px */
@media(max-width: 1023px) {
  .filter-toggle { display: flex; }
}

/* Smooth transition for mobile nav */
.main-nav {
  transition: opacity .2s;
}
.main-nav.open {
  animation: slideDown .2s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Skip to main content for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  background: var(--yellow);
  color: var(--gray-900);
  padding: .5rem 1rem;
  border-radius: 0 0 .5rem .5rem;
  font-weight: 700;
  z-index: 999;
  transition: top .2s;
}
.skip-link:focus { top: 0; }

/* Image lazy load blur-up */
img[loading="lazy"] { transition: opacity .3s; }
img[loading="lazy"]:not([src]) { opacity: 0; }

/* Scroll snapping for mobile product grid */
@media(max-width: 480px) {
  .product-grid-scroll {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: .8rem;
    padding-bottom: .5rem;
    scrollbar-width: none;
  }
  .product-grid-scroll::-webkit-scrollbar { display: none; }
  .product-grid-scroll .product-card {
    min-width: 240px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }
}

/* Better focus states for keyboard/accessibility */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible {
  outline: 2px solid var(--yellow);
  outline-offset: 2px;
}

/* ══ Hero social proof bar ══ */
.hero-social-proof{display:inline-flex;align-items:center;gap:.6rem;background:rgba(255,255,255,0.85);backdrop-filter:blur(8px);border:1px solid rgba(250,204,21,0.3);border-radius:999px;padding:.4rem .85rem .4rem .5rem;margin-bottom:1rem;box-shadow:0 2px 12px rgba(0,0,0,.06)}
.hero-avatars{display:flex}
.hero-avatars img{width:28px;height:28px;border-radius:50%;border:2px solid #fff;margin-left:-8px;object-fit:cover}
.hero-avatars img:first-child{margin-left:0}
.hero-proof-text{font-size:.72rem;color:var(--gray-600);font-weight:500}
.hero-proof-text strong{color:var(--gray-900);font-weight:700}
.hero-proof-stars{color:var(--yellow);font-size:.72rem;letter-spacing:.5px}

/* ══ Hero heading upgrade ══ */
.hero-title{font-family:var(--font-heading);letter-spacing:-.03em}
.hero-title span{color:var(--yellow-dark);position:relative}

/* ══ Hero badge upgrade ══ */
.hero-badges{display:flex;gap:.5rem;margin-bottom:1.5rem;flex-wrap:wrap}
.hero-badge{display:inline-flex;align-items:center;gap:.3rem;font-size:.74rem;color:var(--gray-600);background:rgba(255,255,255,0.85);backdrop-filter:blur(6px);padding:.35rem .7rem;border-radius:999px;border:1px solid var(--gray-200);font-weight:500}
.hero-badge svg{width:14px;height:14px;stroke:var(--yellow-dark);fill:none;stroke-width:2;flex-shrink:0}

/* ══ Hero animation ══ */
@keyframes fadeUp{from{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}
.hero-social-proof{animation:fadeUp .6s ease both}
.hero-title{animation:fadeUp .7s .1s ease both}
.hero-desc{animation:fadeUp .7s .2s ease both}
.hero-badges{animation:fadeUp .7s .3s ease both}
.hero-cta-row{animation:fadeUp .7s .4s ease both}
.hero-img{animation:fadeUp .9s .2s ease both}

/* ══ Nav desktop upgrade ══ */
@media(min-width:768px){
  .main-nav a{position:relative;padding:4px 0}
  .main-nav a::after{content:'';position:absolute;bottom:-2px;left:0;right:0;height:2px;background:var(--yellow);border-radius:2px;transform:scaleX(0);transition:transform .25s cubic-bezier(0.16,1,0.3,1);transform-origin:left}
  .main-nav a:hover::after,.main-nav a.active::after{transform:scaleX(1)}
  .main-nav a.active{color:var(--gray-900);font-weight:600}
}

/* ══ Customer Reviews Section ══ */
.reviews-section{padding:4rem 0;background:var(--offwhite)}
.reviews-grid{display:grid;grid-template-columns:1fr;gap:1rem}
@media(min-width:640px){.reviews-grid{grid-template-columns:repeat(3,1fr);gap:1.2rem}}
.review-card{background:var(--white);border:1px solid var(--gray-100);border-radius:var(--radius);padding:1.4rem;transition:box-shadow .3s,transform .3s;position:relative}
.review-card::before{content:'\201C';position:absolute;top:.8rem;right:1.2rem;font-size:3.5rem;color:rgba(250,204,21,0.15);font-family:Georgia,serif;line-height:1}
.review-card:hover{box-shadow:var(--shadow);transform:translateY(-4px)}
.review-card-header{display:flex;align-items:center;gap:.75rem;margin-bottom:.9rem}
.review-avatar-wrap{width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--yellow),var(--yellow-dark));display:flex;align-items:center;justify-content:center;font-weight:800;font-size:.95rem;color:var(--gray-900);flex-shrink:0}
.review-card-name{font-weight:700;font-size:.85rem;color:var(--gray-900);line-height:1.2}
.review-card-location{font-size:.7rem;color:var(--gray-400);display:flex;align-items:center;gap:.2rem}
.review-card-stars{color:var(--yellow);font-size:.8rem;letter-spacing:.5px;margin-bottom:.6rem}
.review-card-text{font-size:.82rem;color:var(--gray-600);line-height:1.65;font-style:italic}
.review-card-product{display:inline-flex;align-items:center;gap:.3rem;font-size:.68rem;font-weight:600;color:var(--yellow-dark);background:rgba(202,138,4,0.08);border:1px solid rgba(202,138,4,0.15);border-radius:999px;padding:.2rem .55rem;margin-top:.85rem}
.review-card-verified{display:inline-flex;align-items:center;gap:.2rem;font-size:.63rem;color:var(--gray-400);margin-top:.5rem}
.review-card-verified svg{width:11px;height:11px;stroke:#22C55E;fill:none;stroke-width:2.5;flex-shrink:0}

/* ══ Stats bar (between reviews) ══ */
.stats-bar{background:linear-gradient(135deg,var(--gray-900) 0%,#1a2035 100%);padding:2.5rem 0}
.stats-bar-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:1.5rem;text-align:center}
@media(min-width:640px){.stats-bar-grid{grid-template-columns:repeat(4,1fr)}}
.stat-item{}
.stat-num{font-size:2rem;font-weight:900;color:var(--yellow);font-family:var(--font-heading);letter-spacing:-.03em;line-height:1}
.stat-label{font-size:.72rem;color:var(--gray-400);margin-top:.25rem;font-weight:500}

/* ══ Headings font ══ */
h1,h2,h3,.hero-title,.section-header h2,.credit-hero h1,.product-meta h1{font-family:var(--font-heading,var(--font))}

/* ══ Mobile trust grid fix ══ */
@media(max-width:767px){
  .trust-grid{grid-template-columns:repeat(2,1fr);gap:.75rem}
  .trust-item{padding:1rem .75rem}
  .trust-num{font-size:1rem}
}

/* ══ Outfit font import ══ */
/* Loaded via layout_top.php preconnect + link tag */
