 :root {
      --hunter: #FFFCDC;
      --dark-green: #14281D;
      --mid-green: #1e3a28;
      --light-green: #2a5038;
      --accent: #c8a96e;
      --accent-light: #e8d5a3;
      --text-dark: #0d1f14;
      --text-muted: #4a6355;
      --border: rgba(20,40,29,0.12);
      --font-display: 'Cormorant Garamond', serif;
      --font-body: 'Jost', sans-serif;
    }

    *, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); background: var(--hunter); color: var(--dark-green); overflow-x: hidden; }


    /* ── NAVBAR ── */
    .navbar {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: var(--hunter);
      border-bottom: 1px solid var(--border);
      backdrop-filter: blur(20px);
      transition: all 0.3s ease;
    }
    .navbar.scrolled { box-shadow: 0 4px 30px rgba(20,40,29,0.1); }
    .nav-inner {
      max-width: 1400px;
      margin: 0 auto;
      padding: 0 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 80px;
    }
    .nav-logo {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      color: var(--dark-green);
    }

    /* LOGO IMAGE in navbar */
    .nav-logo-img {
      width: 80px;
      height: 80px;
      object-fit: contain;
      display: block;
      flex-shrink: 0;
    }

    /* Fallback emblem (hidden when logo loads) */
    .logo-emblem {
      width: 46px;
      height: 46px;
      background: var(--dark-green);
      display: none; /* hidden — logo image used instead */
      align-items: center;
      justify-content: center;
      position: relative;
      flex-shrink: 0;
    }
    .logo-emblem::before { content: '★'; color: var(--hunter); font-size: 18px; }

    .logo-text { line-height: 1.1; }

    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a {
      text-decoration: none;
      color: var(--dark-green);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      font-weight: 500;
      position: relative;
      padding-bottom: 4px;
      transition: color 0.3s;
    }
    .nav-links a::after {
      content: '';
      position: absolute;
      bottom: 0; left: 0;
      width: 0; height: 1px;
      background: var(--dark-green);
      transition: width 0.3s ease;
    }
    .nav-links a:hover::after { width: 100%; }

    /* Mega dropdown */
    .nav-item { position: relative; }
    .mega-menu {
      position: absolute;
      top: calc(100% + 20px);
      left: 50%;
      transform: translateX(-50%);
      background: var(--dark-green);
      color: var(--hunter);
      padding: 30px;
      min-width: 600px;
      display: none;
      grid-template-columns: repeat(3,1fr);
      gap: 20px;
      box-shadow: 0 20px 60px rgba(20,40,29,0.3);
    }
    .nav-item:hover .mega-menu { display: grid; }
    .mega-col h4 { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
    .mega-col a { display: block; color: var(--hunter); text-decoration: none; font-size: 13px; padding: 5px 0; opacity: 0.8; letter-spacing: 0.5px; transition: opacity 0.2s; text-transform: none; }
    .mega-col a:hover { opacity: 1; }
    .mega-col a::after { display: none; }

    .nav-actions { display: flex; align-items: center; gap: 20px; }
    .nav-icon-btn {
      background: none; border: none; cursor: pointer;
      color: var(--dark-green); position: relative;
      width: 40px; height: 40px;
      display: flex; align-items: center; justify-content: center;
      transition: transform 0.2s;
    }
    .nav-icon-btn:hover { transform: scale(1.1); }
    .nav-icon-btn svg { width: 20px; height: 20px; }
    .cart-count {
      position: absolute; top: 4px; right: 4px;
      background: var(--dark-green); color: var(--hunter);
      width: 16px; height: 16px; border-radius: 50%;
      font-size: 9px; display: flex; align-items: center; justify-content: center;
      font-weight: 700;
    }
    .btn-search {
      background: none; border: 1px solid var(--border); cursor: pointer;
      color: var(--dark-green); padding: 8px 16px;
      font-family: var(--font-body); font-size: 11px;
      letter-spacing: 1.5px; text-transform: uppercase;
      display: flex; align-items: center; gap: 8px; transition: all 0.3s;
    }
    .btn-search:hover { background: var(--dark-green); color: var(--hunter); }

    /* ── HERO ── */
    .hero {
      position: relative; overflow: hidden;
      height: 92vh; min-height: 600px;
      display: flex; align-items: center;
      background: var(--dark-green);
    }
    .hero-bg {
      position: absolute; inset: 0;
      background: radial-gradient(ellipse at 70% 50%, rgba(200,169,110,0.08) 0%, transparent 60%),
                  radial-gradient(ellipse at 20% 80%, rgba(255,252,220,0.05) 0%, transparent 50%);
    }
    .hero-img { position: absolute; right: 0; top: 0; bottom: 0; width: 55%; object-fit: cover; }
    .hero-img img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; }
    .hero-img::after {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(90deg, var(--dark-green) 0%, rgba(20,40,29,0.8) 30%, rgba(20,40,29,0.2) 60%, transparent 80%);
    }
    .hero-content {
      position: relative; z-index: 2;
      padding: 0 80px; max-width: 700px;
      animation: heroIn 1.2s ease forwards;
    }
    @keyframes heroIn {
      from { opacity: 0; transform: translateY(40px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .hero-eyebrow {
      font-size: 11px; letter-spacing: 4px;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 20px;
      display: flex; align-items: center; gap: 14px;
    }
    .hero-eyebrow::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(42px, 7vw, 88px);
      font-weight: 300; line-height: 1.0;
      color: var(--hunter); margin-bottom: 28px;
    }
    .hero h1 em { font-style: italic; color: var(--accent-light); }
    .hero-desc { font-size: 16px; line-height: 1.8; color: rgba(255,252,220,0.7); max-width: 460px; margin-bottom: 44px; }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }
    .btn-primary {
      background: var(--hunter); color: var(--dark-green);
      padding: 16px 38px; font-size: 12px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 600;
      border: none; cursor: pointer; transition: all 0.3s;
      text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-body);
    }
    .btn-primary:hover { background: var(--accent); color: var(--dark-green); transform: translateY(-2px); }
    .btn-outline {
      background: transparent; color: var(--hunter);
      padding: 15px 38px; font-size: 12px; letter-spacing: 2px;
      text-transform: uppercase; font-weight: 500;
      border: 1px solid rgba(255,252,220,0.4);
      cursor: pointer; transition: all 0.3s;
      text-decoration: none; display: inline-flex; align-items: center; gap: 10px;
      font-family: var(--font-body);
    }
    .btn-outline:hover { border-color: var(--hunter); background: rgba(255,252,220,0.1); }
    .hero-scroll {
      position: absolute; bottom: 40px; left: 80px; z-index: 2;
      display: flex; align-items: center; gap: 14px;
      color: rgba(255,252,220,0.4); font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    }
    .scroll-line { width: 60px; height: 1px; background: rgba(255,252,220,0.2); position: relative; overflow: hidden; }
    .scroll-line::after {
      content: ''; position: absolute; top: 0; left: -100%;
      width: 100%; height: 100%; background: var(--accent);
      animation: scrollLine 2s ease infinite;
    }
    @keyframes scrollLine { to { left: 100%; } }

    /* ── SECTION HEADER ── */
    .section-header { text-align: center; margin-bottom: 60px; }
    .section-eyebrow { font-size: 10px; letter-spacing: 4px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; display: block; }
    .section-title { font-family: var(--font-display); font-size: clamp(30px, 5vw, 58px); font-weight: 400; line-height: 1.1; color: var(--dark-green); }
    .section-title em { font-style: italic; color: var(--text-muted); }
    .section-line { width: 50px; height: 1px; background: var(--accent); margin: 20px auto 0; }

    /* ── CATEGORIES ── */
    .categories-section { padding: 90px 40px; max-width: 1400px; margin: 0 auto; }
    .categories-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 3px; }
    .cat-card {
      position: relative; overflow: hidden; aspect-ratio: 4/3;
      cursor: pointer; text-decoration: none;
    }
    .cat-card.large { aspect-ratio: 4/5; }
    .cat-card.wide { grid-column: span 2; aspect-ratio: auto; min-height: 260px; }
    .cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.25,0.46,0.45,0.94); display: block; }
    .cat-card:hover img { transform: scale(1.08); }
    .cat-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(20,40,29,0.85) 100%); transition: all 0.4s; }
    .cat-card:hover .cat-overlay { background: linear-gradient(180deg, transparent 20%, rgba(20,40,29,0.9) 100%); }
    .cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px; color: var(--hunter); }
    .cat-icon { font-size: 24px; margin-bottom: 8px; display: block; }
    .cat-name { font-family: var(--font-display); font-size: clamp(20px, 2.5vw, 26px); font-weight: 500; line-height: 1.1; margin-bottom: 6px; }
    .cat-count { font-size: 11px; letter-spacing: 2px; opacity: 0.7; text-transform: uppercase; }
    .cat-arrow {
      position: absolute; top: 20px; right: 20px;
      width: 36px; height: 36px;
      border: 1px solid rgba(255,252,220,0.4);
      display: flex; align-items: center; justify-content: center;
      color: var(--hunter); opacity: 0; transform: translateY(-10px); transition: all 0.3s;
    }
    .cat-card:hover .cat-arrow { opacity: 1; transform: translateY(0); }

    /* ── FEATURED STRIP ── */
    .featured-strip { background: var(--dark-green); padding: 80px 40px; }
    .featured-strip .section-title { color: var(--hunter); }
    .featured-strip .section-eyebrow { color: var(--accent); }
    .featured-strip .section-line { background: var(--accent); }
    .products-slider {
      display: grid;
      grid-template-columns: repeat(4,1fr);
      gap: 20px;
      max-width: 1400px; margin: 0 auto;
    }

    /* ── PRODUCT CARD ── */
    .product-card {
      background: rgba(255,252,220,0.04);
      border: 1px solid rgba(255,252,220,0.08);
      overflow: hidden; cursor: pointer;
      transition: all 0.4s; position: relative;
    }
    .product-card:hover { background: rgba(255,252,220,0.08); transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.3); }
    .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; background: rgba(255,252,220,0.05); }
    .product-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
    .product-card:hover .product-img-wrap img { transform: scale(1.07); }
    .product-badge { position: absolute; top: 14px; left: 14px; background: var(--accent); color: var(--dark-green); font-size: 9px; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; font-weight: 700; }
    .product-badge.new { background: var(--hunter); }
    .product-badge.sale { background: #e85d5d; color: #fff; }
    .product-wishlist {
      position: absolute; top: 14px; right: 14px;
      width: 34px; height: 34px; background: rgba(20,40,29,0.6);
      border: none; cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      color: var(--hunter); opacity: 0; transition: all 0.3s;
    }
    .product-card:hover .product-wishlist { opacity: 1; }
    .product-quickview {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: var(--hunter); color: var(--dark-green);
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      padding: 12px; text-align: center; font-weight: 600;
      transform: translateY(100%); transition: transform 0.3s;
      border: none; cursor: pointer; font-family: var(--font-body); width: 100%;
    }
    .product-card:hover .product-quickview { transform: translateY(0); }
    .product-info { padding: 16px; }
    .product-cat { font-size: 10px; letter-spacing: 2px; color: var(--accent); text-transform: uppercase; margin-bottom: 6px; }
    .product-name { font-family: var(--font-display); font-size: 16px; font-weight: 400; color: var(--hunter); margin-bottom: 10px; line-height: 1.3; }
    .product-pricing { display: flex; align-items: center; gap: 10px; }
    .product-price { font-size: 16px; font-weight: 600; color: var(--hunter); }
    .product-price-old { font-size: 13px; color: rgba(255,252,220,0.4); text-decoration: line-through; }
    .product-stars { display: flex; gap: 2px; margin-top: 8px; }
    .star { color: var(--accent); font-size: 11px; }
    .star.empty { color: rgba(255,252,220,0.2); }

    /* Light product cards (on cream bg) */
    .products-section { padding: 90px 40px; background: var(--hunter); }
    .products-section .product-card { background: var(--hunter); border: 1px solid rgba(20,40,29,0.13); color: var(--dark-green); box-shadow: 0 2px 12px rgba(20,40,29,0.06); }
    .products-section .product-card:hover { box-shadow: 0 20px 50px rgba(20,40,29,0.14); background: #fffbe8; }
    .products-section .product-img-wrap { background: rgba(20,40,29,0.04); }
    .products-section .product-name { color: var(--dark-green); }
    .products-section .product-price { color: var(--dark-green); }
    .products-section .product-price-old { color: rgba(20,40,29,0.35); }
    .products-section .product-cat { color: var(--text-muted); }
    .products-section .star { color: var(--accent); }
    .products-section .star.empty { color: rgba(20,40,29,0.15); }
    .products-section .product-quickview { background: var(--dark-green); color: var(--hunter); }
    .products-section .product-wishlist { background: rgba(20,40,29,0.08); color: var(--dark-green); opacity:1; }
    .products-section .product-badge.new { background: var(--dark-green); color: var(--hunter); }
    .featured-strip .product-img-wrap { background: rgba(255,252,220,0.07); }

    /* ── TABS ── */
    .tabs-wrap {
      display: flex; gap: 0; margin-bottom: 50px;
      border-bottom: 1px solid var(--border);
      overflow-x: auto; scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }
    .tabs-wrap::-webkit-scrollbar { display: none; }
    .tab-btn {
      background: none; border: none; cursor: pointer;
      font-family: var(--font-body); font-size: 12px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 500;
      padding: 14px 24px; color: var(--text-muted);
      border-bottom: 2px solid transparent; margin-bottom: -1px;
      transition: all 0.3s; white-space: nowrap;
    }
    .tab-btn.active { color: var(--dark-green); border-bottom-color: var(--dark-green); }
    .tab-btn:hover { color: var(--dark-green); }
    .tab-content { display: none; }
    .tab-content.active { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

    /* ── PROMO BANNER ── */
    .promo-banner { display: grid; grid-template-columns: 1fr 1fr; min-height: 480px; margin: 0; }
    .promo-half { position: relative; overflow: hidden; display: flex; align-items: flex-end; }
    .promo-half img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s ease; }
    .promo-half:hover img { transform: scale(1.05); }
    .promo-half-overlay { position: absolute; inset: 0; }
    .promo-half:nth-child(1) .promo-half-overlay { background: linear-gradient(135deg, rgba(20,40,29,0.8) 0%, rgba(20,40,29,0.3) 100%); }
    .promo-half:nth-child(2) .promo-half-overlay { background: linear-gradient(225deg, rgba(255,252,220,0.85) 0%, rgba(255,252,220,0.3) 100%); }
    .promo-half-content { position: relative; z-index: 2; padding: 50px; }
    .promo-half:nth-child(1) .promo-half-content { color: var(--hunter); }
    .promo-half:nth-child(2) .promo-half-content { color: var(--dark-green); }
    .promo-label { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 12px; opacity: 0.8; }
    .promo-title { font-family: var(--font-display); font-size: clamp(28px, 3.5vw, 42px); font-weight: 400; line-height: 1.1; margin-bottom: 16px; }
    .promo-desc { font-size: 14px; opacity: 0.75; margin-bottom: 28px; line-height: 1.7; }

    /* ── NEWSLETTER ── */
    .newsletter-section { background: var(--dark-green); padding: 90px 40px; text-align: center; position: relative; overflow: hidden; }
    .newsletter-section::before {
      content: 'LSGT';
      position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
      font-family: var(--font-display); font-size: clamp(120px, 25vw, 300px);
      font-weight: 700; color: rgba(255,252,220,0.03);
      white-space: nowrap; pointer-events: none; line-height: 1;
    }
    .newsletter-section .section-title { color: var(--hunter); }
    .newsletter-section .section-eyebrow { color: var(--accent); }
    .newsletter-section p { color: rgba(255,252,220,0.65); max-width: 480px; margin: 20px auto 40px; line-height: 1.8; }
    .newsletter-form { display: flex; max-width: 500px; margin: 0 auto; gap: 0; }
    .newsletter-form input {
      flex: 1; padding: 16px 24px;
      background: rgba(255,252,220,0.08);
      border: 1px solid rgba(255,252,220,0.2);
      color: var(--hunter); font-family: var(--font-body); font-size: 14px; outline: none;
    }
    .newsletter-form input::placeholder { color: rgba(255,252,220,0.3); }
    .newsletter-form input:focus { border-color: var(--hunter); }
    .newsletter-form button {
      background: var(--hunter); color: var(--dark-green); border: none;
      padding: 16px 30px; font-family: var(--font-body); font-size: 11px;
      letter-spacing: 2px; text-transform: uppercase; font-weight: 700;
      cursor: pointer; transition: all 0.3s;
    }
    .newsletter-form button:hover { background: var(--accent); }

    /* ── FOOTER ── */
    footer { background: #0a1810; color: rgba(255,252,220,0.7); padding: 80px 40px 30px; }
    .footer-top {
      max-width: 1400px; margin: 0 auto;
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 60px; padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,252,220,0.08);
    }

    /* LOGO IMAGE in footer */
    .footer-logo-img {
      width: 64px;
      height: 64px;
      object-fit: contain;
      display: block;
      margin-bottom: 20px;
    }

    /* Fallback star emblem in footer */
    .footer-logo-emblem {
      width: 52px; height: 52px;
      background: var(--hunter);
      display: none; /* hidden — logo image used instead */
      align-items: center; justify-content: center;
      margin-bottom: 20px;
    }


    .footer-brand p { font-size: 13px; line-height: 1.8; max-width: 300px; }
    .footer-socials { display: flex; gap: 12px; margin-top: 28px; flex-wrap: wrap; }
    .social-btn {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,252,220,0.15);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,252,220,0.6); font-size: 14px;
      text-decoration: none; transition: all 0.3s;
    }
    .social-btn:hover { border-color: var(--hunter); color: var(--hunter); background: rgba(255,252,220,0.05); }
    .footer-col h4 { color: var(--hunter); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 24px; }
    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 12px; }
    .footer-col ul li a { color: rgba(255,252,220,0.6); text-decoration: none; font-size: 13px; transition: color 0.2s; }
    .footer-col ul li a:hover { color: var(--hunter); }
    .footer-bottom {
      max-width: 1400px; margin: 0 auto;
      display: flex; justify-content: space-between; align-items: center;
      padding-top: 30px; font-size: 12px; flex-wrap: wrap; gap: 16px;
    }
    .footer-bottom a { color: rgba(255,252,220,0.5); text-decoration: none; }
    .footer-bottom a:hover { color: var(--hunter); }
    .payment-icons { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
    .pay-icon {
      background: rgba(255,252,220,0.08); border: 1px solid rgba(255,252,220,0.1);
      padding: 4px 10px; font-size: 10px; letter-spacing: 1px; color: rgba(255,252,220,0.5);
    }

    /* ── CART DRAWER ── */
    .cart-overlay { position: fixed; inset: 0; background: rgba(20,40,29,0.5); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
    .cart-overlay.open { opacity: 1; pointer-events: all; }
    .cart-drawer {
      position: fixed; top: 0; right: -500px;
      width: 460px; height: 100vh;
      background: var(--hunter); z-index: 2001;
      display: flex; flex-direction: column;
      transition: right 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
      box-shadow: -20px 0 60px rgba(20,40,29,0.2);
    }
    .cart-drawer.open { right: 0; }
    .cart-drawer-header { padding: 28px 30px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
    .cart-drawer-header h3 { font-family: var(--font-display); font-size: 22px; font-weight: 500; }
    .cart-close { background: none; border: none; cursor: pointer; color: var(--dark-green); font-size: 22px; line-height: 1; width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
    .cart-close:hover { background: rgba(20,40,29,0.06); }
    .cart-items { flex: 1; overflow-y: auto; padding: 20px 30px; }
    .cart-item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--border); }
    .cart-item img { width: 80px; height: 80px; object-fit: cover; flex-shrink: 0; }
    .cart-item-info { flex: 1; }
    .cart-item-info .name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
    .cart-item-info .price { font-size: 15px; font-weight: 600; color: var(--dark-green); }
    .cart-item-info .variant { font-size: 11px; color: var(--text-muted); }
    .cart-qty { display: flex; align-items: center; gap: 12px; margin-top: 10px; }
    .cart-qty button { width: 26px; height: 26px; border: 1px solid var(--border); background: none; cursor: pointer; font-size: 14px; color: var(--dark-green); display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
    .cart-qty button:hover { background: var(--dark-green); color: var(--hunter); }
    .cart-qty span { font-size: 14px; font-weight: 500; min-width: 20px; text-align: center; }
    .cart-footer { padding: 20px 30px; border-top: 1px solid var(--border); }
    .cart-subtotal { display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px; font-size: 13px; }
    .cart-subtotal.total { font-size: 16px; font-weight: 600; margin-bottom: 20px; padding-top: 12px; border-top: 1px solid var(--border); }
    .btn-checkout { width: 100%; background: var(--dark-green); color: var(--hunter); padding: 18px; font-family: var(--font-body); font-size: 12px; letter-spacing: 2px; text-transform: uppercase; font-weight: 600; border: none; cursor: pointer; transition: all 0.3s; margin-bottom: 12px; }
    .btn-checkout:hover { background: var(--mid-green); }
    .btn-continue { width: 100%; background: none; color: var(--dark-green); padding: 14px; font-family: var(--font-body); font-size: 11px; letter-spacing: 2px; text-transform: uppercase; font-weight: 500; border: 1px solid var(--border); cursor: pointer; transition: all 0.3s; }
    .btn-continue:hover { background: rgba(20,40,29,0.05); }
    .cart-empty { text-align: center; padding: 60px 20px; display: flex; flex-direction: column; align-items: center; gap: 16px; }
    .cart-empty .icon { font-size: 48px; opacity: 0.3; }
    .cart-empty p { font-size: 14px; color: var(--text-muted); }

    /* ── CHECKOUT MODAL ── */
    .checkout-overlay { position: fixed; inset: 0; background: rgba(20,40,29,0.6); z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; }
    .checkout-overlay.open { display: flex; }
    .checkout-modal { background: var(--hunter); width: 100%; max-width: 860px; max-height: 90vh; overflow-y: auto; display: grid; grid-template-columns: 1fr 1fr; }
    .checkout-left { padding: 50px 40px; }
    .checkout-right { background: var(--dark-green); color: var(--hunter); padding: 50px 40px; }
    .checkout-left h2 { font-family: var(--font-display); font-size: 28px; margin-bottom: 30px; }
    .checkout-right h3 { font-family: var(--font-display); font-size: 22px; color: var(--hunter); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
    .form-row.full { grid-template-columns: 1fr; }
    .form-group { display: flex; flex-direction: column; gap: 6px; }
    .form-group label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); font-weight: 500; }
    .form-group input, .form-group select { padding: 12px 16px; border: 1px solid var(--border); background: white; font-family: var(--font-body); font-size: 14px; color: var(--dark-green); outline: none; transition: border-color 0.3s; }
    .form-group input:focus, .form-group select:focus { border-color: var(--dark-green); }
    .section-divider { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); margin: 24px 0 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
    .order-item { display: flex; gap: 14px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 1px solid rgba(255,252,220,0.1); }
    .order-item img { width: 60px; height: 60px; object-fit: cover; }
    .order-item-info .name { font-size: 13px; color: var(--hunter); margin-bottom: 4px; }
    .order-item-info .price { font-size: 13px; color: var(--accent); }
    .order-totals { margin-top: 20px; }
    .order-row { display: flex; justify-content: space-between; font-size: 13px; color: rgba(255,252,220,0.7); padding: 6px 0; }
    .order-row.total { color: var(--hunter); font-weight: 600; font-size: 16px; border-top: 1px solid rgba(255,252,220,0.15); margin-top: 10px; padding-top: 14px; }
    .checkout-modal-close { position: sticky; top: 0; float: right; background: none; border: none; cursor: pointer; font-size: 24px; color: var(--dark-green); padding: 8px; z-index: 10; }
    .payment-notice { background: rgba(255,252,220,0.08); border: 1px solid rgba(255,252,220,0.15); padding: 14px 18px; margin-top: 20px; font-size: 12px; color: rgba(255,252,220,0.6); line-height: 1.6; }
    .payment-notice strong { color: var(--accent); }

    /* ── SEARCH OVERLAY ── */
    .search-overlay { position: fixed; inset: 0; background: var(--hunter); z-index: 4000; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 40px; }
    .search-overlay.open { display: flex; }
    .search-close { position: absolute; top: 30px; right: 40px; background: none; border: none; cursor: pointer; font-size: 28px; color: var(--dark-green); }
    .search-input-wrap { width: 100%; max-width: 700px; position: relative; }
    .search-input-wrap input { width: 100%; padding: 20px 60px 20px 0; border: none; border-bottom: 2px solid var(--dark-green); background: none; font-family: var(--font-display); font-size: clamp(24px, 5vw, 42px); color: var(--dark-green); outline: none; }
    .search-input-wrap input::placeholder { color: rgba(20,40,29,0.3); }
    .search-popular { margin-top: 40px; text-align: center; }
    .search-popular span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 16px; }
    .search-tags { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
    .search-tag { border: 1px solid var(--border); padding: 8px 18px; font-size: 12px; color: var(--dark-green); cursor: pointer; transition: all 0.3s; background: none; font-family: var(--font-body); }
    .search-tag:hover { background: var(--dark-green); color: var(--hunter); }

    /* ── TOAST ── */
    .toast { position: fixed; bottom: 30px; right: 30px; z-index: 5000; background: var(--dark-green); color: var(--hunter); padding: 16px 24px; display: flex; align-items: center; gap: 12px; transform: translateY(100px); opacity: 0; transition: all 0.4s; box-shadow: 0 10px 40px rgba(20,40,29,0.3); max-width: 320px; }
    .toast.show { transform: translateY(0); opacity: 1; }
    .toast-icon { font-size: 18px; flex-shrink: 0; }
    .toast-msg { font-size: 13px; line-height: 1.4; }

    /* ── UTILITIES ── */
    .container { max-width: 1400px; margin: 0 auto; padding: 0 40px; }
    .section-padded { padding: 90px 40px; }

    /* ── ABOUT SECTION ── */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 80px;
      align-items: center;
    }
    .about-stats {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 36px;
    }
    .about-img-wrap { position: relative; }
    .about-img-wrap img { width: 100%; height: 560px; object-fit: cover; }
    .about-badge {
      position: absolute; bottom: -20px; left: -20px;
      width: 180px; height: 180px;
      background: var(--dark-green);
      display: flex; flex-direction: column;
      align-items: center; justify-content: center;
      text-align: center; padding: 20px;
    }

    /* ── CONTACT ── */
    .contact-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      margin-top: 40px;
    }
    .contact-card {
      padding: 44px 34px;
      border: 1px solid rgba(20,40,29,0.12);
      background: var(--hunter);
      transition: box-shadow 0.3s;
      text-align: center;
    }
    .contact-card:hover { box-shadow: 0 12px 40px rgba(20,40,29,0.1); }
    .contact-card.dark { background: var(--dark-green); }
    .contact-icon-wrap {
      width: 64px; height: 64px;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .contact-strip {
      margin-top: 50px; padding: 30px 40px;
      background: rgba(20,40,29,0.04);
      border: 1px solid rgba(20,40,29,0.08);
      display: flex; align-items: center;
      justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .contact-strip-item { display: flex; align-items: center; gap: 14px; }

    /* ── MOBILE MENU ── */
    .hamburger { display: none; background: none; border: none; cursor: pointer; flex-direction: column; gap: 5px; padding: 4px; }
    .hamburger span { display: block; width: 22px; height: 1.5px; background: var(--dark-green); transition: all 0.3s; }
    .mobile-menu { display: none; position: fixed; inset: 0; z-index: 1500; background: var(--hunter); flex-direction: column; padding: 100px 40px 40px; overflow-y: auto; }
    .mobile-menu.open { display: flex; }
    .mobile-menu a { font-family: var(--font-display); font-size: 32px; font-weight: 400; color: var(--dark-green); text-decoration: none; padding: 12px 0; border-bottom: 1px solid var(--border); transition: color 0.2s; }
    .mobile-menu a:hover { color: var(--text-muted); }
    .mobile-menu-close { position: absolute; top: 28px; right: 30px; background: none; border: none; cursor: pointer; font-size: 28px; color: var(--dark-green); }

    /* ═══════════════════════════════════════════
       RESPONSIVE — Full Mobile Overhaul
    ════════════════════════════════════════════ */

    /* ── 1200px ── */
    @media (max-width: 1200px) {
      .products-slider,
      .tab-content.active { grid-template-columns: repeat(3,1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
      .footer-col:last-child { grid-column: span 2; }
    }

    /* ── 1024px ── */
    @media (max-width: 1024px) {
      .nav-inner { padding: 0 24px; }
      .nav-links { gap: 22px; }
      .hero-content { padding: 0 50px; }
      .categories-grid { grid-template-columns: repeat(2,1fr); }
      .cat-card.large { aspect-ratio: 4/3; }
      .cat-card.wide { grid-column: span 2; min-height: 220px; }
      .about-grid { gap: 50px; }
      .about-img-wrap img { height: 420px; }
    }

    /* ── 900px ── */
    @media (max-width: 900px) {
      .promo-banner { grid-template-columns: 1fr; min-height: auto; }
      .promo-half { min-height: 360px; }
      .checkout-modal { grid-template-columns: 1fr; }
      .checkout-right { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .about-img-wrap img { height: 320px; }
      .about-badge { width: 150px; height: 150px; bottom: -15px; left: -15px; }
      .contact-grid { grid-template-columns: 1fr; gap: 20px; }
      .contact-strip { flex-direction: column; align-items: flex-start; }
      .contact-strip-item { width: 100%; }
    }

    /* ── 768px ── */
    @media (max-width: 768px) {
      .nav-links, .btn-search { display: none; }
      .hamburger { display: flex; }
      .nav-inner { padding: 0 20px; height: 70px; }
      .nav-logo-img { width: 38px; height: 38px; }

      /* Hero */
      .hero { height: auto; min-height: 100svh; }
      .hero-img { width: 100%; opacity: 0.35; }
      .hero-img::after { background: linear-gradient(180deg, rgba(20,40,29,0.6) 0%, rgba(20,40,29,0.9) 100%); }
      .hero-content { padding: 100px 24px 80px; max-width: 100%; }
      .hero h1 { font-size: clamp(36px, 10vw, 56px); }
      .hero-desc { font-size: 15px; max-width: 100%; }
      .hero-ctas { flex-direction: column; gap: 12px; }
      .hero-ctas .btn-primary,
      .hero-ctas .btn-outline { width: 100%; justify-content: center; }
      .hero-scroll { left: 24px; bottom: 24px; }

      /* Trust bar */
      .trust-bar { padding: 16px 20px; }
      .trust-inner { grid-template-columns: repeat(2,1fr); gap: 0; }
      .trust-item { border-right: none; border-bottom: 1px solid rgba(255,252,220,0.1); padding: 14px 16px; }
      .trust-item:nth-child(odd) { border-right: 1px solid rgba(255,252,220,0.1); }
      .trust-item:nth-last-child(-n+2) { border-bottom: none; }

      /* Sections */
      .categories-section,
      .featured-strip,
      .section-padded,
      .products-section,
      .newsletter-section { padding: 60px 20px; }

      /* Categories */
      .categories-grid { grid-template-columns: repeat(2,1fr); gap: 2px; }
      .cat-card.large,
      .cat-card.wide { aspect-ratio: 4/3; grid-column: span 1; }
      .cat-content { padding: 16px; }

      /* Products */
      .products-slider,
      .tab-content.active { grid-template-columns: repeat(2,1fr); gap: 12px; }

      /* Cart */
      .cart-drawer { width: 100%; right: -100%; }

      /* Promo */
      .promo-half-content { padding: 30px 24px; }

      /* About */
      .about-stats { grid-template-columns: 1fr 1fr; gap: 20px; }
      .about-badge { position: static; width: 100%; height: auto; padding: 20px; flex-direction: row; gap: 12px; justify-content: flex-start; margin-top: 16px; }

      /* Footer */
      .footer-top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 40px; }
      footer { padding: 60px 20px 24px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; font-size: 11px; }
      .footer-bottom > div:last-child { display: flex; gap: 16px; }

      /* Checkout */
      .checkout-left { padding: 30px 20px; }
      .form-row { grid-template-columns: 1fr; gap: 12px; }

      /* Search overlay */
      .search-overlay { padding: 20px; }
      .search-close { top: 20px; right: 20px; font-size: 22px; }

      /* Toast */
      .toast { left: 20px; right: 20px; bottom: 20px; max-width: unset; }
    }

    /* ── 480px ── */
    @media (max-width: 480px) {
      .products-slider,
      .tab-content.active { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }

      .categories-grid { grid-template-columns: 1fr; }
      .cat-card, .cat-card.large, .cat-card.wide { grid-column: span 1; aspect-ratio: 4/3; min-height: unset; }

      .newsletter-form { flex-direction: column; }
      .newsletter-form button { padding: 14px; width: 100%; }

      .hero-ctas .btn-primary,
      .hero-ctas .btn-outline { font-size: 11px; padding: 14px 24px; }

      .section-header { margin-bottom: 40px; }
      .tab-btn { padding: 12px 16px; font-size: 11px; letter-spacing: 1px; }

      .trust-inner { grid-template-columns: 1fr; }
      .trust-item { border-right: none; border-bottom: 1px solid rgba(255,252,220,0.1); }
      .trust-item:last-child { border-bottom: none; }
      .trust-item:nth-child(odd) { border-right: none; }

      .mega-menu { min-width: 280px; grid-template-columns: 1fr; padding: 20px; }

      .checkout-overlay { padding: 0; }
      .checkout-modal { max-height: 100vh; border-radius: 0; }

      .about-stats { grid-template-columns: 1fr 1fr; }

      footer { padding: 50px 16px 20px; }
    }

    /* ── 360px ── */
    @media (max-width: 360px) {
      .nav-logo-img { width: 40px; height: 40px; }
      .hero h1 { font-size: 32px; }
      .hero-content { padding: 80px 16px 60px; }
    }
 