  :root {
    --gold: #F5A623;
    --ember: #E8471A;
    --crimson: #C0202A;
    --deep: #0A0705;
    --surface: #110D0A;
    --card: #1A1410;
    --card2: #201810;
    --border: rgba(245,166,35,0.12);
    --text: #F0E8DC;
    --muted: #8A7A6A;
    --glow: 0 0 40px rgba(232,71,26,0.25);
    /* --font-display: 'Bebas Neue', sans-serif;
    --font-head: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif; */
    --font-display: 'Oswald', sans-serif;
--font-head: 'Poppins', sans-serif;
--font-body: 'Inter', sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  html { scroll-behavior: smooth; font-size: 16px; }

  body {
    background: var(--deep);
    color: var(--text);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
  }

  /* NOISE TEXTURE OVERLAY */
  body::before {
    content: '';
    position: fixed; inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 9999;
    opacity: 0.4;
  }

  /* ── SCROLLBAR ── */
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--deep); }
  ::-webkit-scrollbar-thumb { background: var(--ember); border-radius: 2px; }

  /* ── UTILITIES ── */
  .container { max-width: 1240px; margin: 0 auto; padding: 0 24px; }
  .gradient-text {
    background: linear-gradient(135deg, var(--gold) 0%, var(--ember) 60%, var(--crimson) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .section-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    display: flex; align-items: center; gap: 10px;
  }
  .section-label::before {
    content: '';
    display: inline-block;
    width: 28px; height: 1px;
    background: var(--gold);
  }
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 13px 28px;
    border-radius: 4px;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  .btn::after {
    content: '';
    position: absolute; inset: 0;
    background: rgba(255,255,255,0.08);
    opacity: 0;
    transition: opacity 0.3s;
  }
  .btn:hover::after { opacity: 1; }
  .btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--ember));
    color: #fff;
    box-shadow: 0 4px 20px rgba(232,71,26,0.4);
  }
  .btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(232,71,26,0.5); }
  .btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(240,232,220,0.25);
  }
  .btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

  /* ── NAVBAR ── */
  #navbar {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: all 0.4s ease;
  }
  #navbar.scrolled {
    background: rgba(10,7,5,0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
  }
  .nav-inner {
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    text-decoration: none;
  }
  .logo-icon {
    width: 38px; height: 38px;
    
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
  }
  .logo-text {
    display: flex; flex-direction: column;
    line-height: 1;
    margin-left: 20px;
  }
  .logo-text span:first-child {
    font-family: var(--font-display);
    font-size: 1.5rem;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .logo-text span:last-child {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 300;
  }
  nav ul {
    list-style: none;
    display: flex; align-items: center; gap: 36px;
  }
  nav ul a {
    text-decoration: none;
    color: rgba(240,232,220,0.7);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    position: relative;
  }
  nav ul a::after {
    content: '';
    position: absolute; bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
  }
  nav ul a:hover { color: var(--gold); }
  nav ul a:hover::after { transform: scaleX(1); }
  .nav-actions {
    display: flex; align-items: center; gap: 14px;
  }
  .cart-btn {
    position: relative;
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    width: 42px; height: 42px;
    border-radius: 8px;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px;
    transition: all 0.3s;
  }
  .cart-btn:hover { border-color: var(--gold); color: var(--gold); }
  .cart-count {
    position: absolute;
    top: -6px; right: -6px;
    background: var(--ember);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s;
  }
  .cart-count.visible { opacity: 1; transform: scale(1); }
  .login-btn {
    background: var(--card);
    border: 1px solid var(--border);
    color: var(--text);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    font-family: var(--font-body);
    font-weight: 500;
    transition: all 0.3s;
  }
  .login-btn:hover { border-color: var(--gold); color: var(--gold); }

  /* Hamburger */
  .hamburger {
    display: none;
    flex-direction: column; gap: 5px;
    cursor: pointer; padding: 8px;
    background: none; border: none;
  }
  .hamburger span {
    display: block;
    width: 22px; height: 1.5px;
    background: var(--text);
    transition: all 0.3s;
  }
  .hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4px, -4px); }

  /* Mobile menu */
  .mobile-menu {
    position: fixed; top: 0; right: 0;
    width: min(320px, 90vw);
    height: 100vh;
    background: rgba(15,10,7,0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid var(--border);
    z-index: 999;
    padding: 80px 32px 40px;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column; gap: 8px;
  }
  .mobile-menu.open { transform: translateX(0); }
  .mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.3s;
    display: flex; align-items: center; justify-content: space-between;
  }
  .mobile-menu a:hover { color: var(--gold); }
  .overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }
  .overlay.show { opacity: 1; pointer-events: all; }

  /* ── HERO ── */
  #hero {
    min-height: 100vh;
    position: relative;
    display: flex; align-items: center;
    overflow: hidden;
    padding: 100px 0 60px;
  }
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 80% 60% at 70% 50%, rgba(232,71,26,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 50% 80% at 20% 80%, rgba(192,32,42,0.08) 0%, transparent 50%),
      linear-gradient(180deg, var(--deep) 0%, #0f0905 100%);
  }
  .hero-grid {
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 100% at center, black 0%, transparent 70%);
  }
  .hero-content {
    position: relative; z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
  }
  .hero-left { padding-right: 20px; }
  .hero-tag {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(245,166,35,0.1);
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 20px;
    padding: 6px 16px;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeUp 0.8s ease both;
  }
  .hero-tag i { font-size: 10px; animation: pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:0.4;} }
  .hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(3.5rem, 7vw, 6rem);
    line-height: 0.95;
    letter-spacing: 0.02em;
    margin-bottom: 24px;
    animation: fadeUp 0.8s 0.15s ease both;
  }
  .hero-h1 em {
    font-style: normal;
    display: block;
  }
  .hero-sub {
    font-size: 1.05rem;
    color: rgba(240,232,220,0.6);
    font-weight: 300;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 420px;
    animation: fadeUp 0.8s 0.3s ease both;
  }
  .hero-ctas {
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    animation: fadeUp 0.8s 0.45s ease both;
  }
  .hero-stats {
    display: flex; gap: 40px; margin-top: 60px;
    animation: fadeUp 0.8s 0.6s ease both;
  }
  .stat-item { display: flex; flex-direction: column; }
  .stat-num {
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .stat-label { font-size: 0.75rem; color: var(--muted); margin-top: 4px; font-weight: 300; letter-spacing: 0.05em; }

  .hero-right {
    position: relative;
    display: flex; align-items: center; justify-content: center;
    animation: fadeLeft 1s 0.3s ease both;
  }
  .bottle-glow {
    position: absolute;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(232,71,26,0.3) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(40px);
    animation: glowPulse 3s ease-in-out infinite;
  }
  @keyframes glowPulse { 0%,100%{transform:scale(1);opacity:0.6;} 50%{transform:scale(1.15);opacity:1;} }
  .bottles-wrap {
    position: relative; z-index: 2;
    display: flex; align-items: flex-end; gap: -10px;
  }
  .bottle-svg {
    width: 90px;
    filter: drop-shadow(0 20px 40px rgba(232,71,26,0.3));
    transition: transform 0.4s ease;
  }
  .bottle-svg:hover { transform: translateY(-12px) scale(1.05); }
  .bottle-svg:nth-child(2) { width: 110px; transform: translateY(-20px); }
  .bottle-svg:nth-child(2):hover { transform: translateY(-32px) scale(1.05); }
  .bottle-svg:nth-child(3) { width: 85px; }
  .bottle-svg:nth-child(3):hover { transform: translateY(-12px) scale(1.05); }
  .delivery-badge {
    position: absolute;
    bottom: 200px; right: -10px;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    color: white;
    padding: 14px 20px;
    border-radius: 12px;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 30px rgba(232,71,26,0.4);
    animation: float 3s ease-in-out infinite;
  }
  @keyframes float { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-8px);} }
  .delivery-badge .big { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; }
  .delivery-badge .small { font-size: 0.7rem; font-weight: 400; opacity: 0.85; }
  .scroll-hint {
    position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    color: var(--muted); font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase;
    animation: fadeUp 1s 1s ease both;
  }
  .scroll-line {
    width: 1px; height: 40px;
    background: linear-gradient(to bottom, var(--muted), transparent);
    animation: scrollDown 2s ease-in-out infinite;
  }
  @keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top;} 50%{transform:scaleY(1);transform-origin:top;} 51%{transform:scaleY(1);transform-origin:bottom;} 100%{transform:scaleY(0);transform-origin:bottom;} }

  /* ── SECTION SHARED ── */
  .section { padding: 100px 0; }
  .section-header { margin-bottom: 60px; }
  .section-title {
    font-family: var(--font-head);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.1;
    margin-top: 14px;
  }

  /* ── CATEGORIES ── */
  #categories { background: var(--surface); }
  .cat-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
  }
  .cat-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
  }
  .cat-card::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(245,166,35,0.08), rgba(232,71,26,0.08));
    opacity: 0;
    transition: opacity 0.4s;
  }
  .cat-card:hover::before { opacity: 1; }
  .cat-card:hover {
    border-color: rgba(245,166,35,0.35);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(232,71,26,0.15);
  }
  .cat-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 14px;
    transition: transform 0.4s;
  }
  .cat-card:hover .cat-emoji { transform: scale(1.2) rotate(-5deg); }
  .cat-name {
    font-family: var(--font-head);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
  }
  .cat-count { font-size: 0.75rem; color: var(--muted); }

  /* ── PRODUCTS ── */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .product-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
  }
  .product-card:hover {
    border-color: rgba(245,166,35,0.3);
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  }
  .product-badge {
    position: absolute; top: 14px; left: 14px; z-index: 2;
    background: var(--ember);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
  }
  .product-img-wrap {
    background: var(--card2);
    height: 400px;
    /* display: flex; */
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 10px;
  }
  .product-img-wrap::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--card), transparent);
  }
  .product-bottle {
   max-width: 100%;
    /* max-height: 160px; */
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.4s ease;
  }
  .product-card:hover .product-bottle { transform: scale(1.1) rotate(-3deg); }
  .product-info { padding: 18px; }
  .product-category { font-size: 0.7rem; color: var(--gold); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; }
  .product-name { font-family: var(--font-head); font-size: 0.95rem; font-weight: 700; margin-bottom: 4px; }
  .product-vol { font-size: 0.75rem; color: var(--muted); margin-bottom: 14px; }
  .product-footer { display: flex; align-items: center; justify-content: space-between; }
  .product-price { font-family: var(--font-head); font-size: 1.1rem; font-weight: 800; color: var(--gold); }
  .product-price span { font-size: 0.75rem; color: var(--muted); text-decoration: line-through; font-weight: 400; margin-left: 6px; }
  .add-cart {
    background: linear-gradient(135deg, var(--gold), var(--ember));
    color: white; border: none;
    width: 36px; height: 36px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
  }
  .add-cart:hover { transform: scale(1.1); box-shadow: 0 4px 15px rgba(232,71,26,0.4); }
  .add-cart.added { background: linear-gradient(135deg, #22c55e, #16a34a); }

  /* ── WHY US ── */
  #why { background: var(--surface); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .why-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 36px 24px;
    text-align: center;
    transition: all 0.4s ease;
  }
  .why-card:hover {
    border-color: rgba(245,166,35,0.3);
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
  }
  .why-icon {
    width: 68px; height: 68px;
    background: linear-gradient(135deg, rgba(245,166,35,0.12), rgba(232,71,26,0.12));
    border: 1px solid rgba(245,166,35,0.2);
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    margin: 0 auto 20px;
    transition: all 0.4s;
  }
  .why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--gold), var(--ember));
    border-color: transparent;
  }
  .why-title { font-family: var(--font-head); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
  .why-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.7; }

  /* ── OFFERS ── */
  #offers {
    padding: 80px 0;
  }
  .offers-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
  }
  .offer-card {
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease;
  }
  .offer-card:hover { transform: scale(1.02); }
  .offer-card.main {
    background: linear-gradient(135deg, #1a0f0a 0%, #2d1a0e 50%, #1a0f0a 100%);
    border: 1px solid rgba(245,166,35,0.2);
  }
  .offer-card.main::before {
    content: '';
    position: absolute; top: -60px; right: -60px;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(232,71,26,0.2) 0%, transparent 70%);
    border-radius: 50%;
  }
  .offer-card.side {
    background: linear-gradient(135deg, #0f0a1a 0%, #1a0f2d 100%);
    border: 1px solid rgba(138,78,200,0.2);
  }
  .offer-tag {
    font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase;
    color: var(--gold); margin-bottom: 12px;
  }
  .offer-big {
    font-family: var(--font-display);
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 12px;
  }
  .offer-card.main .offer-big { color: var(--gold); }
  .offer-card.side .offer-big { color: #a855f7; }
  .offer-desc { font-size: 0.9rem; color: rgba(240,232,220,0.6); margin-bottom: 24px; max-width: 320px; }
  .offer-code {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.05);
    border: 1px dashed rgba(245,166,35,0.3);
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 0.85rem;
  }
  .offer-code strong { font-family: var(--font-head); color: var(--gold); letter-spacing: 0.1em; }

  /* ── DELIVERY ── */
  #delivery {
    padding: 100px 0;
    background: var(--surface);
  }
  .delivery-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }
  .delivery-map {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 20px;
    /* aspect-ratio: 1; */
    position: relative;
    overflow: hidden;
    padding: 1rem;
    display: flex; align-items: center; justify-content: center;
  }
  .map-placeholder {
    text-align: center;
  }
  .map-city {
    font-family: var(--font-display);
    font-size: 4rem;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
  }
  .map-pin { font-size: 3rem; margin-bottom: 12px; animation: bounce 2s ease-in-out infinite; }
  @keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(-10px);} }
  .delivery-zones {
    display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 16px;
  }
  .zone-tag {
    background: rgba(245,166,35,0.08);
    border: 1px solid rgba(245,166,35,0.15);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    text-align: center;
    color: rgba(240,232,220,0.7);
  }
  .delivery-steps { display: flex; flex-direction: column; gap: 32px; }
  .delivery-step {
    display: flex; gap: 20px;
    padding: 24px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
  }
  .delivery-step:hover { border-color: rgba(245,166,35,0.25); }
  .step-num {
    font-family: var(--font-display);
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    flex-shrink: 0;
  }
  .step-title { font-family: var(--font-head); font-weight: 700; margin-bottom: 6px; }
  .step-desc { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

  /* ── TESTIMONIALS ── */
  #testimonials { padding: 100px 0; }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .review-card {
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 28px;
    transition: all 0.3s;
  }
  .review-card:hover { border-color: rgba(245,166,35,0.2); transform: translateY(-4px); }
  .review-stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 16px; }
  .review-text { font-size: 0.9rem; color: rgba(240,232,220,0.7); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
  .reviewer { display: flex; align-items: center; gap: 12px; }
  .reviewer-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-head);
    font-weight: 700; font-size: 0.9rem;
  }
  .reviewer-name { font-weight: 600; font-size: 0.9rem; }
  .reviewer-loc { font-size: 0.75rem; color: var(--muted); }

  /* ── FOOTER ── */
  footer {
    background: var(--surface);
    border-top: 1px solid var(--border);
    padding: 70px 0 32px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
  }
  .footer-brand p { font-size: 0.85rem; color: var(--muted); line-height: 1.7; margin-top: 16px; max-width: 260px; }
  .social-links { display: flex; gap: 10px; margin-top: 24px; }
  .social-link {
    width: 38px; height: 38px;
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--muted);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s;
  }
  .social-link:hover { border-color: var(--gold); color: var(--gold); background: rgba(245,166,35,0.08); }
  .footer-col h4 {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    text-decoration: none;
    color: var(--muted);
    font-size: 0.85rem;
    transition: color 0.3s;
  }
  .footer-col ul a:hover { color: var(--text); }
  .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
  .contact-item i { color: var(--gold); font-size: 14px; margin-top: 3px; }
  .contact-item span { font-size: 0.85rem; color: var(--muted); line-height: 1.5; }
  .footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
    display: flex; align-items: center; justify-content: space-between;
  }
  .footer-bottom p { font-size: 0.8rem; color: var(--muted); }
  .age-badge {
    display: flex; align-items: center; gap: 8px;
    background: rgba(192,32,42,0.15);
    border: 1px solid rgba(192,32,42,0.3);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--crimson);
    font-weight: 600;
  }

  /* ── CART SIDEBAR ── */
  #cart-sidebar {
    position: fixed; top: 0; right: 0;
    width: min(400px, 100vw);
    height: 100vh;
    background: var(--card);
    border-left: 1px solid var(--border);
    z-index: 2000;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex; flex-direction: column;
  }
  #cart-sidebar.open { transform: translateX(0); }
  .cart-header {
    padding: 24px;
    border-bottom: 1px solid var(--border);
    display: flex; align-items: center; justify-content: space-between;
  }
  .cart-header h3 { font-family: var(--font-head); font-weight: 700; font-size: 1.1rem; }
  .cart-close {
    background: none; border: none; color: var(--muted);
    font-size: 18px; cursor: pointer; transition: color 0.3s;
  }
  .cart-close:hover { color: var(--text); }
  .cart-items { flex: 1; overflow-y: auto; padding: 20px; }
  .cart-item {
    display: flex; align-items: center; gap: 14px;
    padding: 14px;
    background: var(--card2);
    border-radius: 10px;
    margin-bottom: 10px;
  }
  .cart-item-icon { font-size: 2rem; }
  .cart-item-info { flex: 1; }
  .cart-item-name { font-size: 0.85rem; font-weight: 600; margin-bottom: 2px; }
  .cart-item-price { font-size: 0.8rem; color: var(--gold); }
  .cart-item-remove { background: none; border: none; color: var(--muted); cursor: pointer; font-size: 14px; transition: color 0.3s; }
  .cart-item-remove:hover { color: var(--crimson); }
  .cart-empty { text-align: center; padding: 60px 20px; color: var(--muted); }
  .cart-empty i { font-size: 3rem; margin-bottom: 16px; display: block; opacity: 0.3; }
  .cart-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--border);
  }
  .cart-total {
    display: flex; justify-content: space-between;
    font-family: var(--font-head); font-weight: 700;
    font-size: 1rem; margin-bottom: 16px;
  }
  .cart-total span:last-child { color: var(--gold); }
  .checkout-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--gold), var(--ember));
    color: white; border: none;
    padding: 14px;
    border-radius: 10px;
    font-family: var(--font-head);
    font-weight: 700; font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
  }
  .checkout-btn:hover { box-shadow: 0 6px 25px rgba(232,71,26,0.4); transform: translateY(-2px); }

  /* ── ANIMATIONS ── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }
  @keyframes fadeLeft {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
  }
  .reveal {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ── TOAST ── */
  .toast {
    position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
    background: var(--card);
    border: 1px solid rgba(34,197,94,0.3);
    color: #22c55e;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 0.85rem;
    font-weight: 500;
    z-index: 3000;
    transition: transform 0.4s ease;
    white-space: nowrap;
  }
  .toast.show { transform: translateX(-50%) translateY(0); }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .cat-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 900px) {
    nav ul, .nav-actions .login-btn { display: none; }
    .hamburger { display: flex; }
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-left { padding-right: 0; }
    .hero-sub { margin: 0 auto 40px; }
    .hero-ctas { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-right { display: none; }
    .delivery-inner { grid-template-columns: 1fr; }
    .offers-grid { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 680px) {
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(1, 1fr); }
    .reviews-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .hero-stats { gap: 24px; }
  }
  @media (max-width: 420px) {
    .products-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }
  }


	/* Floating container */
.floating-contact {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 9999;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

/* Base button */
.floating-btn {
	width: 55px;
	height: 55px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	font-size: 24px;
	text-decoration: none;
	box-shadow: 0 10px 25px rgba(0,0,0,0.35);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	position: relative;
	animation: floatBounce 2.5s infinite;
}

/* WhatsApp */
.whatsapp-btn {
	background: #25D366;
}

/* Call */
.call-btn {
	background: linear-gradient(
	90deg,
	#F5A623 0%,
	#E8471A 50%,
	#F5A623 100%
);

	animation-delay: 1.2s;
}

/* Hover effect */
.floating-btn:hover {
	transform: scale(1.15);
	box-shadow: 0 15px 35px rgba(0,0,0,0.45);
}

/* Pulse ring */
.floating-btn::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 100%;
	border-radius: 50%;
	background: inherit;
	opacity: 0.4;
	z-index: -1;
	animation: pulseRing 2s infinite;
}

/* Animations */
@keyframes pulseRing {
	0% {
		transform: scale(1);
		opacity: 0.4;
	}
	100% {
		transform: scale(1.8);
		opacity: 0;
	}
}

@keyframes floatBounce {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-6px);
	}
}

/* Mobile safe spacing */
@media (max-width: 576px) {
	.floating-contact {
		right: 15px;
		bottom: 15px;
	}
}

/* ── FOOTER KEYWORDS ── */
.footer-keywords {
    margin-top: 20px;
}

.footer-keywords ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0;
}

.footer-keywords li {
    display: inline-block;
}

.footer-keywords a {
    display: inline-block;
    font-size: 0.75rem;
    color: var(--muted);
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.25s ease;
    white-space: nowrap;
}

/* hover */
.footer-keywords a:hover {
    color: var(--gold);
    border-color: rgba(245,166,35,0.3);
    background: rgba(245,166,35,0.08);
}

/* mobile */
@media (max-width: 600px) {
    .footer-keywords a {
        font-size: 0.7rem;
        padding: 5px 8px;
    }
}