
  :root {
    --obsidian: #0a0a0a;
    --obsidian-mid: #111111;
    --obsidian-surface: #161616;
    --obsidian-card: #1c1c1c;
    --border: rgba(255,255,255,0.07);
    --border-hover: rgba(255,255,255,0.15);
    --gold: #c9a84c;
    --gold-dim: #8a6f2e;
    --white: #f0ede8;
    --muted: rgba(240,237,232,0.45);
    --red-tactical: #c0392b;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--obsidian);
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
  }

  /* BARAJEEL WATERMARK */
  body::before {
    content: '';
    position: fixed;
    top: 0; right: -10vw;
    width: 60vw; height: 100vh;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 600' fill='none' stroke='rgba(201,168,76,0.04)' stroke-width='1'%3E%3Crect x='50' y='0' width='200' height='600'/%3E%3Crect x='80' y='20' width='140' height='560'/%3E%3Crect x='110' y='40' width='80' height='520'/%3E%3Cline x1='50' y1='0' x2='50' y2='600'/%3E%3Cline x1='250' y1='0' x2='250' y2='600'/%3E%3Cline x1='80' y1='20' x2='80' y2='580'/%3E%3Cline x1='220' y1='20' x2='220' y2='580'/%3E%3Crect x='50' y='560' width='200' height='40'/%3E%3Cline x1='50' y1='200' x2='250' y2='200'/%3E%3Cline x1='50' y1='300' x2='250' y2='300'/%3E%3Cline x1='50' y1='400' x2='250' y2='400'/%3E%3Crect x='120' y='0' width='60' height='80'/%3E%3Crect x='130' y='10' width='40' height='60'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center right;
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }

  /* ═══ NAV ═══ */
  nav {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.5rem 3rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(10,10,10,0.7);
    border-bottom: 0.5px solid var(--border);
  }
  .nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

  .nav-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.15em;
    color: var(--white);
    text-decoration: none;
  }

  .nav-logo span {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    display: block;
    margin-top: -6px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
  }

  .nav-links {
    display: flex; gap: 2.5rem; list-style: none;
  }

  .nav-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .nav-links a:hover { color: var(--white); }

  .nav-cart {
    background: none; border: 0.5px solid var(--border-hover);
    color: var(--white); padding: 0.5rem 1.2rem;
    font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase;
    cursor: pointer; transition: all 0.3s; font-family: 'DM Sans', sans-serif;
  }

  .nav-cart:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  /* ═══ HERO ═══ */
  .hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 8rem 3rem 4rem;
    position: relative;
    z-index: 1;
    gap: 4rem;
  }

  .hero-visual {
    flex: 1;
    max-width: none !important;
    width: auto !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hero-case {
    width: 280px;
    height: 420px;
    background: linear-gradient(145deg, #1a1a1a 0%, #0d0d0d 100%);
    border-radius: 36px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
      0 0 0 1px rgba(255,255,255,0.06),
      0 40px 80px rgba(0,0,0,0.8),
      inset 0 1px 0 rgba(255,255,255,0.08);
  }

  .hero-case-emblem {
    width: 120px;
    height: 120px;
    opacity: 0.9;
  }

  .hero-case-tag {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    color: var(--muted);
    text-transform: uppercase;
    white-space: nowrap;
  }

  .hero-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,168,76,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
  }

  .hero-content { position: relative; }

  .hero-eyebrow {
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
  }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(4rem, 7vw, 7rem);
    line-height: 0.9;
    letter-spacing: 0.02em;
    margin-bottom: 1rem;
  }

  .hero-title-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
    font-weight: 400;
    direction: rtl;
  }

  .hero-desc {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 380px;
    margin-bottom: 2.5rem;
  }

  .hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
  }

  .btn-primary {
    background: var(--white);
    color: var(--obsidian);
    border: none;
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 500;
    text-decoration: none;
    display: inline-block;
  }

  .btn-primary:hover {
    background: var(--gold);
  }

  .btn-ghost {
    background: none;
    color: var(--white);
    border: 0.5px solid var(--border-hover);
    padding: 0.9rem 2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
  }

  .btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
  }

  .hero-stats {
    display: flex; gap: 3rem; margin-top: 3rem;
    border-top: 0.5px solid var(--border);
    padding-top: 2rem;
  }

  .hero-stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.2rem;
    letter-spacing: 0.05em;
    color: var(--gold);
  }

  .hero-stat-label {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  /* ═══ MARQUEE ═══ */
  .marquee-strip {
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
    z-index: 1;
  }

  .marquee-inner {
    display: flex;
    gap: 3rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
  }

  .marquee-item {
    font-size: 0.65rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--muted);
    flex-shrink: 0;
  }

  .marquee-dot {
    color: var(--gold);
    margin-right: 3rem;
  }

  @keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
  }

  /* ═══ SECTION SHARED ═══ */
  section {
    position: relative;
    z-index: 1;
  }

  .section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 5rem 3rem 2rem;
    border-bottom: 0.5px solid var(--border);
    margin-bottom: 3rem;
  }

  .section-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.5rem;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    letter-spacing: 0.03em;
    line-height: 1;
  }

  .section-count {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
  }

  /* ═══ PRODUCTS GRID ═══ */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1px;
    background: var(--border);
    padding: 0 0 5rem;
  }

  .product-card {
    background: var(--obsidian);
    cursor: pointer;
    transition: background 0.3s;
    position: relative;
    overflow: hidden;
    group: true;
  }

  .product-card:hover {
    background: var(--obsidian-card);
  }

  .product-card-image {
    aspect-ratio: 3/4;
    background: var(--obsidian-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
  }
  .product-img-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(255,255,255,0.25);
  background: rgba(0,0,0,0.55);
  color: white;
  cursor: pointer;
  z-index: 8;
  font-size: 1.5rem;
}

.product-img-left {
  left: 10px;
}

.product-img-right {
  right: 10px;
}

.product-img-counter {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,0.65);
  color: white;
  padding: 0.3rem 0.55rem;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  z-index: 8;
}

  .product-case-mock {
    width: 110px;
    height: 160px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-align: center;
    padding: 1rem;
    position: relative;
    transition: transform 0.4s;
    color: var(--muted);
    text-transform: uppercase;
  }

  .product-card:hover .product-case-mock {
    transform: scale(1.04) translateY(-4px);
  }

  .case-black {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 20px 40px rgba(0,0,0,0.6);
    color: rgba(240,237,232,0.5);
  }

  .case-white {
    background: linear-gradient(145deg, #e8e4de, #ccc8c2);
    box-shadow: 0 0 0 1px rgba(0,0,0,0.1), 0 20px 40px rgba(0,0,0,0.4);
    color: rgba(0,0,0,0.5);
  }

  .case-tan {
    background: linear-gradient(145deg, #c4a882, #a88c68);
    box-shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 20px 40px rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.6);
  }

  .case-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.55rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
    text-align: center;
    font-style: italic;
  }

  .sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(3px) grayscale(1);
  -webkit-backdrop-filter: blur(8px) grayscale(1);
}

  .sold-out-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem;
  letter-spacing: 0.18em;
  color: #ff3b30;
  border: 2px solid #ff3b30;
  padding: 0.55rem 1.4rem;
  text-transform: uppercase;
  background: rgba(0, 0, 0, 0.35);
  box-shadow: 0 0 18px rgba(255, 59, 48, 0.18);
}

  .product-card-info {
    padding: 1.25rem 1.5rem;
    border-top: 0.5px solid var(--border);
  }

  .product-card-name {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    margin-bottom: 0.3rem;
  }

  .product-card-sub {
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
  }

  .product-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .product-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.05em;
    color: var(--gold);
  }

  .product-price-currency {
    font-size: 0.65rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    color: var(--muted);
    letter-spacing: 0.1em;
  }

  .product-add-btn {
    background: none;
    border: 0.5px solid var(--border-hover);
    color: var(--white);
    width: 32px; height: 32px;
    font-size: 1.1rem;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
  }

  .product-add-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201,168,76,0.08);
  }

  /* ═══ FEATURED DROP ═══ */
  .featured-drop {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 80vh;
    border-top: 0.5px solid var(--border);
  }

  .featured-visual {
    background: var(--obsidian-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
    position: relative;
    overflow: hidden;
  }

  .featured-visual::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(transparent, rgba(201,168,76,0.05));
    pointer-events: none;
  }

  .featured-case-large {
    width: 200px;
    height: 300px;
    background: linear-gradient(145deg, #f5f2ec, #e8e4de);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 1px rgba(0,0,0,0.08), 0 60px 100px rgba(0,0,0,0.7);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.6rem;
    color: rgba(0,0,0,0.4);
    text-align: center;
    padding: 1.5rem;
    letter-spacing: 0.08em;
    line-height: 1.6;
  }

  .featured-info {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 0.5px solid var(--border);
  }

  .featured-badge {
    display: inline-block;
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    border: 0.5px solid var(--gold-dim);
    padding: 0.3rem 0.8rem;
    margin-bottom: 2rem;
  }

  .featured-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
    margin-bottom: 1rem;
  }

  .featured-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 1.6rem;
    color: var(--gold);
    direction: rtl;
    margin-bottom: 1.5rem;
    opacity: 0.8;
  }

  .featured-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 360px;
  }

  .featured-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    padding: 2rem 0;
    border-top: 0.5px solid var(--border);
    border-bottom: 0.5px solid var(--border);
  }

  .spec-label {
    font-size: 0.55rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.3rem;
  }

  .spec-value {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
  }

  .spec-value-sub {
    font-size: 0.65rem;
    color: var(--muted);
    margin-left: 0.3rem;
  }

  .featured-price-row {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.5rem;
  }

  .featured-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 3rem;
    color: var(--gold);
    letter-spacing: 0.02em;
  }

  .featured-price-old {
    font-size: 0.85rem;
    color: var(--muted);
    text-decoration: line-through;
  }

  /* ═══ CLOTHING TEASER ═══ */
  .clothing-section {
    padding: 5rem 3rem;
    border-top: 0.5px solid var(--border);
  }

  .clothing-banner {
    background: var(--obsidian-surface);
    border: 0.5px solid var(--border);
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 3rem 4rem;
    gap: 2rem;
    position: relative;
    overflow: hidden;
  }

  .clothing-banner::before {
    content: 'COMING SOON';
    position: absolute;
    top: 50%;
    right: -2rem;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.2em;
    color: rgba(201,168,76,0.04);
    pointer-events: none;
    transform-origin: center;
  }

  .clothing-label {
    font-size: 0.6rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
  }

  .clothing-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.5rem, 5vw, 5rem);
    line-height: 1;
    margin-bottom: 1rem;
  }

  .clothing-desc {
    color: var(--muted);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 480px;
  }

  .waitlist-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 280px;
  }

  .waitlist-input {
    background: rgba(255,255,255,0.04);
    border: 0.5px solid var(--border-hover);
    color: var(--white);
    padding: 0.85rem 1.2rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.8rem;
    outline: none;
    transition: border-color 0.3s;
  }

  .waitlist-input:focus {
    border-color: var(--gold);
  }

  .waitlist-input::placeholder { color: var(--muted); }

  /* ═══ ABOUT STRIP ═══ */
  .about-strip {
    border-top: 0.5px solid var(--border);
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-content {
    padding: 5rem 3rem;
    border-right: 0.5px solid var(--border);
  }

  .about-arabic {
    font-family: 'Noto Naskh Arabic', serif;
    font-size: 2.5rem;
    direction: rtl;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.7;
    line-height: 1.4;
  }

  .about-text {
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.9;
    max-width: 440px;
  }

  .about-visual {
    padding: 5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--obsidian-surface);
  }

  .brand-mark {
    text-align: center;
  }

  .brand-mark-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    letter-spacing: 0.15em;
    color: var(--white);
    display: block;
    opacity: 0.15;
  }

  .brand-mark-sub {
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
  }

  /* ═══ FOOTER ═══ */
  footer {
    border-top: 0.5px solid var(--border);
    padding: 3rem;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
  }

  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.15em;
    color: var(--white);
  }

  .footer-links {
    display: flex;
    gap: 2rem;
    list-style: none;
  }

  .footer-links a {
    color: var(--muted);
    text-decoration: none;
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: color 0.3s;
  }

  .footer-links a:hover { color: var(--white); }

  .footer-copy {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    color: var(--muted);
    text-align: right;
    text-transform: uppercase;
  }

  /* ═══ CART DRAWER ═══ */
  .cart-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.7);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    backdrop-filter: blur(4px);
  }

  .cart-overlay.open {
    opacity: 1;
    pointer-events: all;
  }

  .cart-drawer {
    position: fixed;
    top: 0; right: 0;
    width: 400px; height: 100vh;
    background: var(--obsidian-mid);
    border-left: 0.5px solid var(--border);
    z-index: 201;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
  }

  .cart-drawer.open {
    transform: translateX(0);
  }

  .cart-header {
    padding: 2rem;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }

  .cart-close {
    background: none;
    border: none;
    color: var(--muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: color 0.3s;
    font-family: 'DM Sans', sans-serif;
  }

  .cart-close:hover { color: var(--white); }

  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
  }

  .cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 0.5px solid var(--border);
    align-items: center;
  }

  .cart-item-visual {
    width: 60px; height: 80px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    font-size: 0.5rem;
    color: var(--muted);
    text-align: center;
  }

  .cart-item-name {
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
  }

  .cart-item-price {
    font-size: 0.75rem;
    color: var(--gold);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 0.05em;
  }

  .cart-item-remove {
    background: none; border: none;
    color: var(--muted); cursor: pointer;
    font-size: 0.7rem; margin-left: auto;
    transition: color 0.3s;
  }

  .cart-item-remove:hover { color: var(--red-tactical); }

  .cart-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: var(--muted);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .cart-footer {
    padding: 2rem;
    border-top: 0.5px solid var(--border);
  }

  .cart-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1.5rem;
  }

  .cart-total-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .cart-total-amount {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }

  .checkout-msg {
    margin-top: 0.75rem;
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-align: center;
    text-transform: uppercase;
  }

  /* ═══ MOBILE ═══ */
  @media (max-width: 768px) {
    nav { padding: 1.2rem 1.5rem; }
    .nav-links { display: none; }
    .hero {
      grid-template-columns: 1fr;
      padding: 6rem 1.5rem 3rem;
      text-align: center;
      gap: 3rem;
    }
    .hero-visual { order: -1; }
    .hero-actions { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-desc { margin: 0 auto 2.5rem; }
    .section-header { padding: 3rem 1.5rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-drop { grid-template-columns: 1fr; }
    .featured-info { padding: 2.5rem 1.5rem; border-left: none; border-top: 0.5px solid var(--border); }
    .featured-visual { padding: 3rem; min-height: 300px; }
    .clothing-section { padding: 3rem 1.5rem; }
    .clothing-banner { grid-template-columns: 1fr; padding: 2rem; }
    .about-strip { grid-template-columns: 1fr; }
    .about-content { border-right: none; border-bottom: 0.5px solid var(--border); padding: 3rem 1.5rem; }
    .about-visual { padding: 3rem 1.5rem; }
    footer { grid-template-columns: 1fr; text-align: center; padding: 2rem 1.5rem; }
    .footer-links { justify-content: center; flex-wrap: wrap; }
    .footer-copy { text-align: center; }
    .cart-drawer { width: 100%; }
  }

  /* ═══ ANIMATIONS ═══ */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .animate-in {
    animation: fadeUp 0.8s ease forwards;
    opacity: 0;
  }

  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.35s; }
  .delay-4 { animation-delay: 0.5s; }
  .delay-5 { animation-delay: 0.65s; }

  .notification {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--obsidian-card);
    border: 0.5px solid var(--gold-dim);
    color: var(--white);
    padding: 0.8rem 1.5rem;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 300;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    white-space: nowrap;
  }

  .notification.show {
    transform: translateX(-50%) translateY(0);
  }
  /* ═══════════════════════════════════════════
   HERO PRODUCT HOVER SYSTEM
═══════════════════════════════════════════ */

.hero-product-wrapper {
  width: 100%;
  max-width: 500px;
  overflow: visible !important; /* Ensures the hover effects can extend beyond the image if needed */
  position: relative;
  display: inline-block;
  border-radius: 12px;
  overflow: hidden; /* Keeps the overlay strictly inside the image edges */
  cursor: pointer;
}

.hero-product-img {
  width: 400px; /* Adjust size based on your desktop layout */
  height: auto;
  display: block;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.hero-hover-action {
  position: absolute;
  inset: 0; /* Stretches to cover the entire image */
  background: rgba(0, 0, 0, 0.4); /* Tactical dimming effect */
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0; /* Hidden by default */
  transition: opacity 0.3s ease;
}

.hero-add-btn {
  transform: translateY(20px); /* Pushes the button slightly down */
  transition: transform 0.3s ease;
  box-shadow: 0 10px 20px rgba(0,0,0,0.5); /* Drops a shadow so it pops */
}
/* TACTICAL CONFIRMATION MODAL */
.tactical-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  
  /* The "Slow Pop-Up" Logic */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease-in-out; 
}

.tactical-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.tactical-modal-box {
  background: #111;
  border: 0.5px solid rgba(201,168,76,0.3);
  padding: 2.5rem;
  text-align: center;
  border-radius: 8px;
  max-width: 400px;
  width: 90%;
  transform: translateY(20px);
  transition: transform 0.6s ease-in-out;
}

.tactical-modal-overlay.active .tactical-modal-box {
  transform: translateY(0);
}

/* Subtle image dim on hover (Desktop only) */
@media (hover: hover) {
  .hero-product-wrapper:hover img {
    transform: scale(1.02);
    filter: drop-shadow(0 0 25px rgba(201,168,76,0.2)) brightness(0.9) !important;
  }
}

/* 💻 DESKTOP HOVER STATE (Only triggers if the device uses a mouse) */
@media (hover: hover) {
  .hero-product-wrapper:hover .hero-product-img {
    transform: scale(1.03); /* Slight zoom in */
    filter: brightness(0.7); /* Dims the bear so the button stands out */
  }
  
  .hero-product-wrapper:hover .hero-hover-action {
    opacity: 1; /* Fades in the dark overlay */
  }

  .hero-product-wrapper:hover .hero-add-btn {
    transform: translateY(0); /* Button slides up into place */
  }
}

/* 📱 MOBILE OVERRIDE (For touch screens without hover) */
@media (max-width: 768px) {
  .hero-product-wrapper {
    width: 100%;
    max-width: 280px; /* Keeps the bear from getting too massive on phones */
    margin: 0 auto;
  }
  
  .hero-product-img {
    width: 100%;
  }

  .hero-hover-action {
    opacity: 1; /* Always visible */
    background: transparent; /* Remove the dark dim so we can see the bear */
    align-items: flex-end; /* Push button to the bottom */
    padding-bottom: 20px;
  }

  .hero-add-btn {
    transform: translateY(0);
    width: 90%; /* Touch-friendly width */
  }
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
/* 📱 TACTICAL MOBILE OVERRIDE */
@media (max-width: 768px) {
  /* 1. Stack the Hero Section */
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 80px 20px;
    height: auto;
  }

  /* 2. Scale the Barajeel */
  .hero-visual img {
    width: 220px !important; 
    margin-bottom: 2rem;
  }

  /* 3. The 2-Column Product Grid */
  .products-grid {
    grid-template-columns: 1fr 1fr; /* Two items side-by-side */
    gap: 12px;
    padding: 10px;
  }

  /* 4. Touch-Friendly Buttons */
  .product-add-btn {
    width: 44px; /* Larger tap target for thumbs */
    height: 44px;
  }

  /* 5. Cart Drawer Width */
  .cart-drawer {
    width: 100%; /* Full screen cart on mobile */
  }
}