/* ══════════════════════════════════════════════
       RESET & ROOT
    ══════════════════════════════════════════════ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Barlow', sans-serif;
      background: #04050f;
      color: #fff;
      overflow-x: hidden;
    }
    :root {
      --blue: #0a1aff;
      --blue2: #0010cc;
      --blue3: #000a80;
      --yellow: #f5c518;
      --yellow2: #ffd740;
      --orange: #e8520a;
      --white: #ffffff;
      --dark: #04050f;
      --dark2: #080b1a;
    }
    .justify-center { justify-content: center !important; }
    .text-center { text-align: center !important; }
    .mx-auto { margin-left: auto !important; margin-right: auto !important; }

    /* ══════════════════════════════════════════════
       CUSTOM CURSOR (desktop only)
    ══════════════════════════════════════════════ */
    @media (pointer: fine) {
      body { cursor: none; }
      .cursor {
        width: 12px; height: 12px;
        background: var(--yellow);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99999;
        transform: translate(-50%, -50%);
        transition: transform 0.1s, width 0.3s, height 0.3s, background 0.3s;
        mix-blend-mode: difference;
      }
      .cursor-follower {
        width: 40px; height: 40px;
        border: 1.5px solid rgba(245,197,24,0.5);
        border-radius: 50%;
        position: fixed;
        pointer-events: none;
        z-index: 99998;
        transform: translate(-50%, -50%);
        transition: transform 0.15s ease, width 0.3s, height 0.3s, opacity 0.3s;
      }
      a, button, .product-card, .zn-card { cursor: none; }
    }
    @media (pointer: coarse) {
      .cursor, .cursor-follower { display: none; }
    }

    /* ══════════════════════════════════════════════
       HEADER
    ══════════════════════════════════════════════ */
    header {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      padding: 0 60px;
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: rgba(4,5,15,0.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(245,197,24,0.08);
    }

    /* Left zone */
    .header-nav {
      display: flex;
      gap: 40px;
      align-items: center;
      flex: 1;
    }
    .header-nav a {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.6);
      text-decoration: none;
      transition: color 0.3s;
      position: relative;
      white-space: nowrap;
    }
    .header-nav a::after {
      content: '';
      position: absolute;
      bottom: -4px; left: 0;
      width: 0; height: 1px;
      background: var(--yellow);
      transition: width 0.3s;
    }
    .header-nav a:hover { color: var(--yellow); }
    .header-nav a:hover::after { width: 100%; }

    /* Centre zone — logo always centred */
    .header-logo {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      pointer-events: none; /* let clicks pass through on overlap */
    }
    .header-logo a { pointer-events: all; }
    .header-logo img {
      height: 75px; width: auto;
      filter: brightness(1.1);
      display: block;
      padding: 4px;
    }

    /* Right zone */
    .header-right {
      display: flex;
      align-items: center;
      gap: 8px;
      flex: 1;
      justify-content: flex-end;
    }
    .hdr-icons-desktop {
      display: flex;
      gap: 6px;
      align-items: center;
    }
    .hdr-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.6);
      font-size: 13px;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
    }
    .hdr-icon:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.08); }
    .hdr-badge {
      position: absolute; top: -4px; right: -4px;
      background: var(--yellow); color: var(--dark);
      width: 14px; height: 14px;
      border-radius: 50%;
      font-size: 7px; font-weight: 900;
      display: flex; align-items: center; justify-content: center;
      font-family: 'Barlow Condensed', sans-serif;
    }
    .hdr-sep {
      width: 1px; height: 18px;
      background: rgba(255,255,255,0.1);
      margin: 0 4px;
    }
    .hdr-social { display: flex; gap: 14px; margin-left: 8px; }
    .hdr-social a {
      color: rgba(255,255,255,0.5);
      font-size: 13px; text-decoration: none;
      transition: color 0.3s, transform 0.3s;
    }
    .hdr-social a:hover { color: var(--yellow); transform: translateY(-2px); }

    /* ── Hamburger ── */
    .hamburger {
      display: none;
      flex-direction: column;
      justify-content: center;
      gap: 5px;
      background: none;
      border: none;
      padding: 8px;
      z-index: 1100;
      position: relative;
      flex-shrink: 0;
    }
    .hamburger span {
      display: block;
      width: 24px; height: 2px;
      background: var(--white);
      transition: all 0.3s;
      transform-origin: center;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* Mobile-only cart icon shown next to hamburger */
    .hdr-cart-mobile {
      display: none;
      position: relative;
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.15);
      border-radius: 50%;
      align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      text-decoration: none;
      flex-shrink: 0;
    }

    /* ── Mobile Nav Drawer ── */
    .mobile-nav {
      position: fixed;
      top: 0; left: 0; right: 0; bottom: 0;
      background: #04050f;
      z-index: 999;
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.35s ease;
      overflow: hidden;
    }
    /* Animated grid bg inside drawer */
    .mobile-nav::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(10,26,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,26,255,0.07) 1px, transparent 1px);
      background-size: 50px 50px;
      pointer-events: none;
    }
    /* Yellow accent orb */
    .mobile-nav::after {
      content: '';
      position: absolute;
      width: 400px; height: 400px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(245,197,24,0.08) 0%, transparent 70%);
      bottom: -100px; right: -100px;
      pointer-events: none;
    }
    .mobile-nav.open {
      opacity: 1;
      pointer-events: all;
    }

    /* Top bar inside drawer */
    .mobile-nav-topbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
      height: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.06);
      flex-shrink: 0;
      position: relative; z-index: 2;
    }
    .mobile-nav-topbar img {
      height: 36px; width: auto;
    }
    .mobile-nav-close {
      width: 38px; height: 38px;
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 50%;
      background: rgba(255,255,255,0.04);
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.7);
      font-size: 14px;
      cursor: pointer;
      transition: all 0.3s;
    }
    .mobile-nav-close:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.08); }

    /* Nav links area */
    .mobile-nav-links {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 0 32px;
      position: relative; z-index: 2;
      gap: 0;
    }
    .mobile-nav-links a {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(38px, 10vw, 54px);
      letter-spacing: 3px;
      color: rgba(255,255,255,0.15);
      text-decoration: none;
      transition: color 0.3s, padding-left 0.3s, letter-spacing 0.3s;
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 14px 0;
      border-bottom: 1px solid rgba(255,255,255,0.05);
      position: relative;
      overflow: hidden;
    }
    .mobile-nav-links a:last-child { border-bottom: none; }
    .mobile-nav-links a .nav-num {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px; font-weight: 700;
      letter-spacing: 2px;
      color: rgba(245,197,24,0.4);
      align-self: flex-start;
      margin-top: 10px;
      transition: color 0.3s;
      flex-shrink: 0;
    }
    .mobile-nav-links a:hover,
    .mobile-nav-links a:active {
      color: var(--white);
      padding-left: 8px;
      letter-spacing: 4px;
    }
    .mobile-nav-links a:hover .nav-num { color: var(--yellow); }
    .mobile-nav-links a::after {
      content: '';
      position: absolute;
      left: 0; bottom: 0;
      width: 0; height: 1px;
      background: var(--yellow);
      transition: width 0.4s ease;
    }
    .mobile-nav-links a:hover::after { width: 100%; }

    /* Bottom bar: icons + social */
    .mobile-nav-bottom {
      padding: 24px 32px 36px;
      border-top: 1px solid rgba(255,255,255,0.06);
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-shrink: 0;
      position: relative; z-index: 2;
    }
    .mobile-nav-bottom-icons {
      display: flex; gap: 10px;
    }
    .mobile-nav-bottom-icons a {
      width: 42px; height: 42px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5);
      font-size: 14px;
      text-decoration: none;
      transition: all 0.3s;
      position: relative;
    }
    .mobile-nav-bottom-icons a:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.06); }
    .mobile-nav-social {
      display: flex; gap: 20px;
    }
    .mobile-nav-social a {
      color: rgba(255,255,255,0.3);
      font-size: 16px;
      text-decoration: none;
      transition: color 0.3s, transform 0.3s;
    }
    .mobile-nav-social a:hover { color: var(--yellow); transform: translateY(-2px); }

    /* Stagger-in animation for nav links */
    .mobile-nav.open .mobile-nav-links a {
      animation: nav-slide-in 0.4s ease both;
    }
    .mobile-nav.open .mobile-nav-links a:nth-child(1) { animation-delay: 0.05s; }
    .mobile-nav.open .mobile-nav-links a:nth-child(2) { animation-delay: 0.12s; }
    .mobile-nav.open .mobile-nav-links a:nth-child(3) { animation-delay: 0.19s; }
    .mobile-nav.open .mobile-nav-links a:nth-child(4) { animation-delay: 0.26s; }
    @keyframes nav-slide-in {
      from { opacity: 0; transform: translateX(-24px); }
      to   { opacity: 1; transform: translateX(0); }
    }

    /* ══════════════════════════════════════════════
       HERO
    ══════════════════════════════════════════════ */
    .hero {
      min-height: 100vh;
      position: relative;
      display: flex;
      align-items: center;
      overflow: hidden;
      background: var(--dark);
    }
    .hero-grid-bg {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(10,26,255,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10,26,255,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: grid-move 20s linear infinite;
    }
    @keyframes grid-move {
      0% { transform: translateY(0); }
      100% { transform: translateY(60px); }
    }
    .hero-bg-text {
      position: absolute;
      bottom: -40px; left: -20px;
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 20vw, 320px);
      color: rgba(10,26,255,0.07);
      line-height: 1;
      white-space: nowrap;
      pointer-events: none;
      letter-spacing: -10px;
      user-select: none;
    }
    .orb {
      position: absolute; border-radius: 50%;
      filter: blur(120px); pointer-events: none;
    }
    .orb-1 { width: 600px; height: 600px; background: rgba(10,26,255,0.3); top: -200px; right: -100px; animation: orb-drift 8s ease-in-out infinite; }
    .orb-2 { width: 400px; height: 400px; background: rgba(245,197,24,0.12); bottom: -100px; left: 200px; animation: orb-drift 10s ease-in-out infinite reverse; }
    .orb-3 { width: 300px; height: 300px; background: rgba(232,82,10,0.15); top: 50%; left: -100px; animation: orb-drift 12s ease-in-out infinite 2s; }
    @keyframes orb-drift {
      0%,100% { transform: translate(0,0) scale(1); }
      33% { transform: translate(30px,-20px) scale(1.05); }
      66% { transform: translate(-20px,30px) scale(0.95); }
    }

    .hero-content {
      position: relative; z-index: 2;
      display: grid;
      grid-template-columns: 1fr auto 380px;
      align-items: center;
      gap: 40px;
      max-width: 1400px;
      margin: 0 auto;
      padding: 100px 60px 60px;
      width: 100%;
    }

    .hero-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(245,197,24,0.08);
      border: 1px solid rgba(245,197,24,0.2);
      padding: 6px 14px; border-radius: 100px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--yellow); margin-bottom: 28px;
      animation: fade-up 0.8s ease both;
    }
    .hero-tag-dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--yellow);
      animation: pulse-dot 2s ease-in-out infinite;
    }
    @keyframes pulse-dot {
      0%,100% { opacity:1; transform:scale(1); }
      50% { opacity:0.5; transform:scale(0.7); }
    }
    .hero-h1 {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(60px, 8vw, 130px);
      line-height: 0.88; letter-spacing: 1px;
      margin-bottom: 28px;
      animation: fade-up 0.8s 0.1s ease both;
    }
    .hero-h1 .line1 { color: var(--white); display: block; }
    .hero-h1 .line2 { color: transparent; -webkit-text-stroke: 2px var(--yellow); display: block; }
    .hero-h1 .line3 { color: var(--yellow); display: block; }
    .hero-desc {
      font-size: 15px; font-weight: 300;
      color: rgba(255,255,255,0.55);
      line-height: 1.8; max-width: 340px;
      margin-bottom: 40px;
      animation: fade-up 0.8s 0.2s ease both;
    }
    .hero-actions {
      display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
      animation: fade-up 0.8s 0.3s ease both;
    }
    .btn-primary {
      display: inline-flex; align-items: center; gap: 10px;
      background: var(--yellow); color: var(--dark);
      padding: 16px 36px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px; font-weight: 800;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none; transition: all 0.3s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
      position: relative; overflow: hidden;
    }
    .btn-primary::before {
      content: ''; position: absolute; inset: 0;
      background: var(--white);
      transform: translateX(-100%) skewX(-10deg);
      transition: transform 0.4s; z-index: 0;
    }
    .btn-primary:hover::before { transform: translateX(0) skewX(-10deg); }
    .btn-primary span, .btn-primary i { position: relative; z-index: 1; }
    .btn-primary:hover { transform: translateY(-3px); box-shadow: 0 20px 60px rgba(245,197,24,0.4); }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.7);
      padding: 16px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase;
      text-decoration: none; transition: all 0.3s;
    }
    .btn-ghost:hover { border-color: var(--yellow); color: var(--yellow); background: rgba(245,197,24,0.05); }

    .hero-stats {
      display: flex; gap: 0; margin-top: 60px;
      border-top: 1px solid rgba(255,255,255,0.07);
      padding-top: 30px;
      animation: fade-up 0.8s 0.4s ease both;
    }
    .hero-stat {
      flex: 1; padding-right: 30px;
      border-right: 1px solid rgba(255,255,255,0.07);
      margin-right: 30px;
    }
    .hero-stat:last-child { border-right: none; margin-right: 0; padding-right: 0; }
    .stat-num { font-family: 'Bebas Neue', sans-serif; font-size: 42px; color: var(--yellow); line-height: 1; display: block; }
    .stat-label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.35); text-transform: uppercase; }

    .hero-can-center {
      position: relative; display: flex;
      align-items: center; justify-content: center;
      width: 320px;
    }
    .hero-can-rings {
      position: absolute; width: 320px; height: 320px;
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    .ring {
      position: absolute; border-radius: 50%;
      border: 1px solid rgba(245,197,24,0.1);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
      animation: ring-pulse 3s ease-in-out infinite;
    }
    .ring:nth-child(1) { width: 200px; height: 200px; }
    .ring:nth-child(2) { width: 280px; height: 280px; animation-delay: 0.5s; border-color: rgba(245,197,24,0.06); }
    .ring:nth-child(3) { width: 360px; height: 360px; animation-delay: 1s; border-color: rgba(245,197,24,0.03); }
    @keyframes ring-pulse {
      0%,100% { transform: translate(-50%,-50%) scale(1); opacity: 1; }
      50% { transform: translate(-50%,-50%) scale(1.08); opacity: 0.6; }
    }
    .hero-can-glow {
      position: absolute; width: 260px; height: 260px; border-radius: 50%;
      background: radial-gradient(circle, rgba(10,26,255,0.4) 0%, transparent 70%);
      animation: glow-pulse 3s ease-in-out infinite;
    }
    @keyframes glow-pulse {
      0%,100% { transform: scale(1); opacity: 0.8; }
      50% { transform: scale(1.2); opacity: 1; }
    }
    .hero-can-img {
      height: 500px; width: auto; max-width: 280px;
      object-fit: contain; position: relative; z-index: 2;
      filter: drop-shadow(0 50px 100px rgba(0,0,0,0.6));
      animation: can-float 4s ease-in-out infinite;
    }
    @keyframes can-float {
      0%,100% { transform: translateY(0) rotate(-2deg); }
      50% { transform: translateY(-24px) rotate(2deg); }
    }

    .hero-right-panel { display: flex; flex-direction: column; gap: 16px; }
    .hero-badge {
      background: rgba(255,255,255,0.03);
      border: 1px solid rgba(255,255,255,0.08);
      padding: 20px 24px; position: relative; overflow: hidden;
      animation: fade-left 0.8s 0.3s ease both;
    }
    .hero-badge::before {
      content: ''; position: absolute;
      top: 0; left: 0; width: 3px; height: 100%;
      background: var(--yellow);
    }
    .badge-num { font-family: 'Bebas Neue', sans-serif; font-size: 52px; color: var(--yellow); line-height: 1; display: block; }
    .badge-text { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 600; letter-spacing: 2px; color: rgba(255,255,255,0.4); text-transform: uppercase; }
    .hero-features { display: flex; flex-direction: column; gap: 10px; animation: fade-left 0.8s 0.4s ease both; }
    .feature-item {
      display: flex; align-items: center; gap: 12px;
      padding: 12px 16px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      transition: all 0.3s;
    }
    .feature-item:hover { background: rgba(245,197,24,0.05); border-color: rgba(245,197,24,0.2); }
    .feature-icon {
      width: 28px; height: 28px;
      background: rgba(245,197,24,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--yellow); font-size: 11px; flex-shrink: 0;
    }
    .feature-text { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; }

    .scroll-indicator {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      z-index: 3; animation: fade-up 1s 0.8s ease both;
    }
    .scroll-line {
      width: 1px; height: 50px;
      background: linear-gradient(to bottom, transparent, rgba(245,197,24,0.6));
      animation: scroll-line 2s ease-in-out infinite;
    }
    @keyframes scroll-line {
      0% { transform: scaleY(0); transform-origin: top; opacity: 0; }
      50% { transform: scaleY(1); opacity: 1; }
      100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
    }
    .scroll-text {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9px; font-weight: 700; letter-spacing: 3px;
      color: rgba(255,255,255,0.3); text-transform: uppercase;
      writing-mode: vertical-rl;
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }
    @keyframes fade-left {
      from { opacity: 0; transform: translateX(30px); }
      to { opacity: 1; transform: translateX(0); }
    }

    /* ══════════════════════════════════════════════
       MARQUEE
    ══════════════════════════════════════════════ */
    .marquee-wrap { background: var(--yellow); padding: 14px 0; overflow: hidden; }
    .marquee-track { display: flex; white-space: nowrap; animation: marquee 20s linear infinite; width: max-content; }
    .marquee-track span {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 17px; font-weight: 900;
      color: var(--dark); letter-spacing: 3px; text-transform: uppercase;
      padding-right: 50px; display: inline-flex; align-items: center; gap: 20px;
    }
    .marquee-track span::after { content: '★'; font-size: 10px; color: var(--blue); }
    @keyframes marquee {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    /* ══════════════════════════════════════════════
       TRUSTED WORLDWIDE
    ══════════════════════════════════════════════ */
    .trusted {
      background: var(--dark2);
      padding: 90px 60px;
      position: relative; overflow: hidden;
    }
    .trusted::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    .section-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: 4px;
      color: var(--yellow); text-transform: uppercase;
      text-align: center; margin-bottom: 10px; opacity: 0.8;
    }
    .section-title {
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      color: var(--white); text-align: center;
      letter-spacing: 4px; margin-bottom: 60px; line-height: 1;
    }
    .section-title span { color: var(--yellow); }
    .flags-scroll-wrap { overflow: hidden; position: relative; }
    .flags-scroll-wrap::before, .flags-scroll-wrap::after {
      content: ''; position: absolute; top: 0; bottom: 0;
      width: 80px; z-index: 2; pointer-events: none;
    }
    .flags-scroll-wrap::before { left: 0; background: linear-gradient(to right, var(--dark2), transparent); }
    .flags-scroll-wrap::after { right: 0; background: linear-gradient(to left, var(--dark2), transparent); }
    .flags-track {
      display: flex; gap: 12px;
      animation: flags-scroll 30s linear infinite;
      width: max-content; padding: 8px 0;
    }
    @keyframes flags-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }
    .flag-chip {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(255,255,255,0.08);
      color: rgba(255,255,255,0.7);
      padding: 10px 20px; border-radius: 100px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 13px; font-weight: 600; letter-spacing: 1px;
      white-space: nowrap; flex-shrink: 0; transition: all 0.3s;
    }
    .flag-chip:hover { background: rgba(245,197,24,0.08); border-color: rgba(245,197,24,0.3); color: var(--yellow); }
    .flag-chip img { width: 22px; height: 15px; object-fit: cover; border-radius: 2px; }

    /* ══════════════════════════════════════════════
       PRODUCTS
    ══════════════════════════════════════════════ */
    .products {
      background: var(--dark); padding: 100px 60px;
      position: relative; overflow: hidden;
    }
    .products::before {
      content: 'SHOP'; position: absolute;
      right: -60px; top: 50%;
      transform: translateY(-50%) rotate(90deg);
      font-family: 'Bebas Neue', sans-serif;
      font-size: clamp(100px, 14vw, 200px);
      color: rgba(255,255,255,0.02);
      pointer-events: none; white-space: nowrap;
    }
    .products-header {
      display: flex; align-items: flex-end;
      justify-content: space-between; margin-bottom: 60px;
      flex-wrap: wrap; gap: 20px;
    }
    .view-all-link {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--yellow);
      text-decoration: none; display: flex; align-items: center; gap: 8px;
      transition: gap 0.3s; padding-bottom: 4px;
      border-bottom: 1px solid rgba(245,197,24,0.3);
      white-space: nowrap;
    }
    .view-all-link:hover { gap: 14px; }
    .products-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
    }
    .product-card {
      flex: 0 1 350px;
      min-width: 280px;
      background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      position: relative; overflow: hidden;
      display: flex; flex-direction: column;
      transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
    }
    .product-card:hover {
      transform: translateY(-10px);
      border-color: rgba(245,197,24,0.25);
      box-shadow: 0 30px 80px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,197,24,0.1);
    }
    .product-card-top {
      position: absolute; top: 16px; left: 16px; right: 16px;
      display: flex; justify-content: space-between; align-items: flex-start; z-index: 3;
    }
    .product-badge-pill {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
    }
    .badge-starter { background: rgba(245,197,24,0.15); color: var(--yellow); border: 1px solid rgba(245,197,24,0.3); }
    .badge-popular { background: rgba(232,82,10,0.2); color: #ff7040; border: 1px solid rgba(232,82,10,0.4); }
    .badge-value { background: rgba(0,200,80,0.15); color: #00e868; border: 1px solid rgba(0,200,80,0.3); }
    .product-wish {
      width: 30px; height: 30px;
      border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.3); font-size: 11px;
      transition: all 0.3s;
      background: rgba(0,0,0,0.3); backdrop-filter: blur(10px);
    }
    .product-wish:hover { border-color: #e8520a; color: #e8520a; }
    .product-img-zone {
      padding: 50px 24px 20px;
      display: flex; align-items: flex-end; justify-content: center;
      min-height: 220px; position: relative;
      background: linear-gradient(160deg, rgba(10,26,255,0.08) 0%, transparent 60%);
    }
    .product-img-zone::after {
      content: ''; position: absolute; bottom: 0; left: 20%; right: 20%; height: 40px;
      background: radial-gradient(ellipse, rgba(245,197,24,0.15) 0%, transparent 70%);
      border-radius: 50%; filter: blur(10px);
    }
    .product-img-zone img {
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
      transition: transform 0.5s ease; position: relative; z-index: 2;
    }
    .product-card:hover .product-img-zone img { transform: translateY(-8px) scale(1.04); }
    .product-info {
      padding: 20px 24px 24px; flex: 1;
      display: flex; flex-direction: column;
      border-top: 1px solid rgba(255,255,255,0.05);
    }
    .product-pack { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 6px; }
    .product-name { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); letter-spacing: 2px; margin-bottom: 8px; line-height: 1; }
    .product-desc { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.6; margin-bottom: 20px; flex: 1; }
    .product-footer { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
    .product-price { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--yellow); line-height: 1; display: block; }
    .product-per { font-family: 'Barlow Condensed', sans-serif; font-size: 9px; font-weight: 600; letter-spacing: 1.5px; color: rgba(255,255,255,0.25); text-transform: uppercase; }
    .btn-cart {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--yellow); color: var(--dark);
      padding: 11px 20px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px; font-weight: 800; letter-spacing: 1.5px;
      text-transform: uppercase; border: none;
      transition: all 0.3s; white-space: nowrap;
      clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
    }
    .btn-cart:hover { background: var(--white); transform: translateY(-2px); }
    .product-actions-row {
      display: flex; gap: 6px; margin-top: 12px;
      padding-top: 12px; border-top: 1px solid rgba(255,255,255,0.04);
    }
    .btn-sm-action {
      flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
      background: transparent; border: 1px solid rgba(255,255,255,0.07);
      color: rgba(255,255,255,0.35);
      padding: 7px 4px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 9px; font-weight: 600; letter-spacing: 1px;
      text-transform: uppercase; transition: all 0.2s; border-radius: 2px;
    }
    .btn-sm-action:hover { border-color: rgba(245,197,24,0.25); color: var(--yellow); }

    /* ══════════════════════════════════════════════
       WHAT IS BANGIN
    ══════════════════════════════════════════════ */
    .wib { background: var(--yellow); position: relative; overflow: hidden; }
    .wib-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 70vh; }
    .wib-left {
      background: var(--dark2); padding: 80px 60px;
      display: flex; flex-direction: column; justify-content: center;
      position: relative; overflow: hidden;
    }
    .wib-left::after {
      content: ''; position: absolute; top: 0; right: -1px; bottom: 0; width: 60px;
      background: var(--yellow);
      clip-path: polygon(100% 0, 100% 100%, 0 50%);
    }
    .wib-eyebrow {
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 10px; font-weight: 700; letter-spacing: 4px;
      color: var(--yellow); text-transform: uppercase; margin-bottom: 16px;
      display: flex; align-items: center; gap: 10px;
    }
    .wib-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow); }
    .wib-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5vw, 80px); color: var(--white); letter-spacing: 2px; line-height: 0.95; margin-bottom: 8px; }
    .wib-title .accent { color: var(--yellow); }
    .wib-divider { width: 50px; height: 2px; background: rgba(245,197,24,0.4); margin: 24px 0; }
    .wib-text { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.85; margin-bottom: 14px; }
    .wib-cta {
      margin-top: 30px; display: inline-flex; align-items: center; gap: 10px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; color: var(--yellow); text-decoration: none;
      border-bottom: 1px solid rgba(245,197,24,0.3); padding-bottom: 4px;
      transition: gap 0.3s; width: fit-content;
    }
    .wib-cta:hover { gap: 16px; }
    .wib-right {
      background: var(--yellow);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; padding: 60px 40px;
    }
    .wib-blob-shape {
      position: absolute; width: 400px; height: 400px;
      background: rgba(10,26,255,0.06);
      border-radius: 62% 38% 70% 30%/44% 56% 44% 56%;
      animation: blob 8s ease-in-out infinite;
    }
    @keyframes blob {
      0%,100% { border-radius: 62% 38% 70% 30%/44% 56% 44% 56%; }
      33% { border-radius: 40% 60% 35% 65%/60% 40% 60% 40%; }
      66% { border-radius: 55% 45% 50% 50%/35% 65% 35% 65%; }
    }
    .wib-can {
      height: 420px; width: auto; max-width: 280px;
      object-fit: contain; position: relative; z-index: 2;
      filter: drop-shadow(0 40px 80px rgba(0,0,0,0.25));
      animation: can-float 5s ease-in-out infinite;
    }
    .wib-tag {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: rgba(4,5,15,0.85); backdrop-filter: blur(10px);
      border: 1px solid rgba(245,197,24,0.2);
      padding: 8px 16px; border-radius: 100px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      color: var(--white); text-transform: uppercase;
      z-index: 3; white-space: nowrap;
    }
    .wib-tag.t1 { position: absolute; top: 20%; left: 5%; animation: tag-float 4s ease-in-out infinite; }
    .wib-tag.t2 { position: absolute; top: 15%; right: 5%; animation: tag-float 4s ease-in-out infinite 1s; }
    .wib-tag.t3 { position: absolute; bottom: 25%; left: 8%; animation: tag-float 4s ease-in-out infinite 2s; }
    .wib-tag.t4 { position: absolute; bottom: 20%; right: 5%; animation: tag-float 4s ease-in-out infinite 0.5s; }
    @keyframes tag-float {
      0%,100% { transform: translateY(0); }
      50% { transform: translateY(-8px); }
    }

    /* ══════════════════════════════════════════════
       CHALLENGES
    ══════════════════════════════════════════════ */
    .challenges { background: var(--dark); position: relative; overflow: hidden; }
    .challenges-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 60vh; }
    .challenges-left {
      padding: 80px 60px; display: flex; flex-direction: column; justify-content: center;
      position: relative;
    }
    .challenges-left::before {
      content: ''; position: absolute;
      top: 0; bottom: 0; right: -30px; width: 60px;
      background: var(--orange);
      clip-path: polygon(0 0, 60% 0, 100% 50%, 60% 100%, 0 100%);
      z-index: 1;
    }
    .challenges-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase; color: var(--orange); margin-bottom: 16px; }
    .challenges-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(44px, 5.5vw, 86px); color: var(--white); letter-spacing: 2px; line-height: 0.95; margin-bottom: 24px; }
    .challenges-text { font-size: 15px; color: rgba(255,255,255,0.55); line-height: 1.85; margin-bottom: 36px; max-width: 420px; }
    .btn-outline-white {
      display: inline-flex; align-items: center; gap: 10px;
      border: 1px solid rgba(255,255,255,0.2); color: var(--white);
      padding: 14px 32px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 12px; font-weight: 700; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none; transition: all 0.3s; width: fit-content;
    }
    .btn-outline-white:hover { background: var(--orange); border-color: var(--orange); transform: translateY(-2px); }
    .challenges-right {
      background: var(--orange);
      display: flex; align-items: center; justify-content: center;
      position: relative; overflow: hidden; padding: 60px 40px;
    }
    .challenges-right::before {
      content: ''; position: absolute;
      width: 400px; height: 400px; border-radius: 50%;
      border: 80px solid rgba(0,0,0,0.08);
      top: 50%; left: 50%; transform: translate(-50%, -50%);
    }
    .challenges-can {
      height: 400px; width: auto; max-width: 260px; object-fit: contain;
      position: relative; z-index: 2;
      filter: drop-shadow(0 40px 80px rgba(0,0,0,0.35));
      animation: can-float 5s ease-in-out infinite 1s;
    }

    /* ══════════════════════════════════════════════
       ZERO NASTIES
    ══════════════════════════════════════════════ */
    .zn { background: var(--dark2); padding: 100px 60px; position: relative; overflow: hidden; }
    .zn::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    .zn-grid {
      display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
      margin-top: 60px; max-width: 1000px; margin-left: auto; margin-right: auto;
    }
    .zn-card {
      flex: 0 0 160px; background: rgba(255,255,255,0.02);
      border: 1px solid rgba(255,255,255,0.06);
      padding: 32px 20px 24px; text-align: center;
      transition: all 0.4s; position: relative; overflow: hidden;
    }
    .zn-card::before { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--yellow); transform: scaleX(0); transition: transform 0.3s; }
    .zn-card:hover { background: rgba(245,197,24,0.04); border-color: rgba(245,197,24,0.2); transform: translateY(-6px); }
    .zn-card:hover::before { transform: scaleX(1); }
    .zn-icon-wrap {
      width: 64px; height: 64px;
      border: 1.5px solid rgba(10,26,255,0.3); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 16px; background: rgba(10,26,255,0.06); transition: all 0.3s;
    }
    .zn-card:hover .zn-icon-wrap { background: var(--blue); border-color: var(--blue); }
    .zn-icon-wrap svg { width: 28px; height: 28px; stroke: var(--blue); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: stroke 0.3s; }
    .zn-card:hover .zn-icon-wrap svg { stroke: var(--yellow); }
    .zn-label { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.5); text-transform: uppercase; transition: color 0.3s; }
    .zn-card:hover .zn-label { color: var(--yellow); }

    /* ══════════════════════════════════════════════
       BRAND IMPACT
    ══════════════════════════════════════════════ */
    .brand-impact {
      position: relative; min-height: 500px;
      display: flex; align-items: center; justify-content: center;
      overflow: hidden; background: var(--blue3);
    }
    .brand-impact-bg {
      position: absolute; inset: 0;
      background-image: url('https://banginglobal.com/assets/images/brand-background.png');
      background-size: cover; background-position: center;
      opacity: 0.2; filter: saturate(0.5);
    }
    .brand-impact-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,10,128,0.92) 0%, rgba(10,26,255,0.75) 50%, rgba(0,5,80,0.9) 100%);
    }
    .brand-impact::after {
      content: ''; position: absolute; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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='1'/%3E%3C/svg%3E");
      opacity: 0.03; pointer-events: none;
    }
    .brand-impact-content {
      position: relative; z-index: 2; text-align: center;
      padding: 80px 40px; max-width: 700px;
    }
    .impact-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(52px, 7vw, 100px); color: var(--white); letter-spacing: 3px; line-height: 0.9; margin-bottom: 6px; }
    .impact-title .yellow { color: var(--yellow); }
    .impact-sub { font-family: 'Barlow', sans-serif; font-size: 16px; font-weight: 300; color: rgba(255,255,255,0.6); line-height: 1.8; margin: 20px 0 36px; }
    .impact-cta {
      display: inline-flex; align-items: center; gap: 12px;
      background: var(--yellow); color: var(--dark);
      padding: 18px 44px;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 14px; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; text-decoration: none; transition: all 0.3s;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
    }
    .impact-cta:hover { background: var(--white); transform: translateY(-3px); box-shadow: 0 20px 60px rgba(245,197,24,0.3); }

    /* ══════════════════════════════════════════════
       FOOTER
    ══════════════════════════════════════════════ */
    footer { background: var(--dark); border-top: 1px solid rgba(255,255,255,0.05); padding: 70px 60px 0; }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 60px; padding-bottom: 60px;
      border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    .footer-logo { height: 60px; width: auto; margin-bottom: 20px; display: block; }
    .footer-tagline { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 24px; }
    .footer-social-row { display: flex; gap: 10px; }
    .footer-soc-btn {
      width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,0.5); font-size: 13px; text-decoration: none; transition: all 0.3s;
    }
    .footer-soc-btn:hover { background: var(--yellow); border-color: var(--yellow); color: var(--dark); transform: translateY(-3px); }
    .footer-col-title { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.3); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .footer-links { display: flex; flex-direction: column; gap: 12px; }
    .footer-links a { font-family: 'Barlow Condensed', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
    .footer-links a:hover { color: var(--yellow); padding-left: 6px; }
    .footer-msark-logo { height: 44px; width: auto; border-radius: 4px; opacity: 0.7; margin-top: 8px; display: block; transition: opacity 0.3s; }
    .footer-msark-logo:hover { opacity: 1; }
    .footer-bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; flex-wrap: wrap; gap: 8px; }
    .footer-copy { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.2); }

    /* ══════════════════════════════════════════════
       FLOATING CART
    ══════════════════════════════════════════════ */
    .fab-wrap { position: fixed; bottom: 30px; right: 20px; z-index: 9999; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
    .fab {
      width: 50px; height: 50px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 17px; box-shadow: 0 8px 30px rgba(0,0,0,0.3);
      transition: all 0.3s; text-decoration: none;
      position: relative; border: none;
    }
    .fab-cart { background: var(--yellow); color: var(--dark); }
    .fab-wish { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15) !important; color: var(--white); }
    .fab:hover { transform: scale(1.1); }
    .fab-dot { position: absolute; top: -3px; right: -3px; width: 15px; height: 15px; border-radius: 50%; background: var(--orange); color: #fff; font-size: 8px; font-weight: 800; display: flex; align-items: center; justify-content: center; font-family: 'Barlow Condensed', sans-serif; }

    /* ══════════════════════════════════════════════
       SCROLL REVEAL
    ══════════════════════════════════════════════ */
    .sr { opacity: 0; transform: translateY(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .sr.visible { opacity: 1; transform: translateY(0); }
    .sr-l { opacity: 0; transform: translateX(-32px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .sr-l.visible { opacity: 1; transform: translateX(0); }
    .sr-r { opacity: 0; transform: translateX(32px); transition: opacity 0.8s ease, transform 0.8s ease; }
    .sr-r.visible { opacity: 1; transform: translateX(0); }
    .d1 { transition-delay: 0.1s !important; }
    .d2 { transition-delay: 0.2s !important; }
    .d3 { transition-delay: 0.3s !important; }
    .d4 { transition-delay: 0.4s !important; }
    .d5 { transition-delay: 0.5s !important; }

    /* ══════════════════════════════════════════════
       RESPONSIVE BREAKPOINTS
    ══════════════════════════════════════════════ */

    /* ─── TABLET LARGE: ≤ 1200px ─── */
    @media (max-width: 1200px) {
      header { padding: 0 30px; }
      .header-nav { gap: 24px; }
      .hdr-social { display: none; }
      .hdr-sep { display: none; }
      .header-logo img { height: 46px; }

      .hero-content {
        grid-template-columns: 1fr auto 280px;
        padding: 90px 30px 50px;
        gap: 24px;
      }
      .hero-can-img { height: 380px; }
      .hero-can-center { width: 240px; }
      .hero-can-rings { width: 240px; height: 240px; }
      .hero-right-panel { gap: 12px; }

      .products { padding: 80px 30px; }
      .trusted { padding: 70px 30px; }
      .zn { padding: 80px 30px; }
      .footer-grid { gap: 40px; }
      footer { padding: 60px 30px 0; }
    }

    /* ─── TABLET: ≤ 1024px ─── */
    @media (max-width: 1024px) {
      /* Header: hide desktop nav & icons, show logo centred + cart + hamburger */
      .header-nav { display: none; }
      .hdr-icons-desktop { display: none; }
      .hdr-sep { display: none; }
      .hdr-social { display: none; }
      .hamburger { display: flex; }
      .hdr-cart-mobile { display: flex; }
      header { padding: 0 20px; height: 68px; }
      .header-logo img { height: 44px; }

      /* Hero: 2 columns (text + can), hide right panel */
      .hero-content {
        grid-template-columns: 1fr auto;
        grid-template-rows: auto;
        padding: 90px 24px 60px;
        gap: 20px;
      }
      .hero-right-panel { display: none; }
      .hero-can-center { width: 260px; order: 2; }
      .hero-can-rings { width: 260px; height: 260px; }
      .hero-can-img { height: 400px; }
      .hero-h1 { font-size: clamp(56px, 8vw, 100px); }

      /* Products: 2 columns */
      .products-grid { grid-template-columns: repeat(2, 1fr); }
      .products { padding: 80px 24px; }

      /* WIB and Challenges stay 2 col but reduce padding */
      .wib-left { padding: 60px 40px; }
      .challenges-left { padding: 60px 40px; }
      .challenges-can { height: 300px; }
      .wib-can { height: 320px; }

      /* Footer: 2 col grid */
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      footer { padding: 50px 24px 0; }

      .trusted { padding: 60px 24px; }
      .zn { padding: 70px 24px; }
    }

    /* ─── MOBILE LARGE: ≤ 768px ─── */
    @media (max-width: 768px) {
      /* Header */
      header { height: 60px; padding: 0 16px; }
      .header-logo img { height: 38px; }

      /* Hero: single column, can above text */
      .hero-content {
        grid-template-columns: 1fr;
        grid-template-rows: auto auto;
        padding: 80px 20px 60px;
        gap: 0;
        text-align: center;
        justify-items: center;
      }
      .hero-left { order: 2; width: 100%; }
      .hero-can-center { order: 1; width: 220px; margin-bottom: 24px; }
      .hero-can-rings { width: 220px; height: 220px; }
      .hero-can-img { height: 280px; }
      .hero-tag { margin-left: auto; margin-right: auto; }
      .hero-desc { max-width: 100%; text-align: center; }
      .hero-actions { justify-content: center; }
      .hero-stats { justify-content: center; gap: 20px; }
      .hero-stat { flex: 0 0 auto; padding-right: 20px; margin-right: 20px; text-align: center; }
      .scroll-indicator { display: none; }

      /* Hero h1 stroke fix on small screens */
      .hero-h1 .line2 { -webkit-text-stroke: 1.5px var(--yellow); }

      /* Products: single column */
      .products-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
      .products { padding: 60px 20px; }
      .products-header { flex-direction: column; align-items: flex-start; }

      /* WIB: stack */
      .wib-inner { grid-template-columns: 1fr; min-height: auto; }
      .wib-left { padding: 60px 24px; }
      .wib-left::after { display: none; }
      .wib-right { min-height: 360px; padding: 40px 24px; }
      .wib-can { height: 260px; }
      .wib-tag { font-size: 9px; padding: 6px 12px; }

      /* Challenges: stack */
      .challenges-inner { grid-template-columns: 1fr; min-height: auto; }
      .challenges-left { padding: 60px 24px; }
      .challenges-left::before { display: none; }
      .challenges-right { min-height: 300px; }
      .challenges-can { height: 240px; }

      /* Footer: single col */
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      footer { padding: 50px 20px 0; }
      .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 6px; }

      /* Trusted */
      .trusted { padding: 50px 20px; }
      .section-title { margin-bottom: 40px; }

      /* ZN: smaller cards */
      .zn { padding: 60px 20px; }
      .zn-grid { gap: 14px; }
      .zn-card { flex: 0 0 130px; padding: 24px 14px 18px; }

      /* Brand impact */
      .brand-impact-content { padding: 60px 24px; }
      .impact-cta { padding: 16px 32px; }

      /* FAB position */
      .fab-wrap { bottom: 20px; right: 16px; }
    }

    /* ─── MOBILE SMALL: ≤ 480px ─── */
    @media (max-width: 480px) {
      .hero-can-img { height: 220px; }
      .hero-can-center { width: 180px; }
      .hero-can-rings { width: 180px; height: 180px; }
      .hero-h1 { font-size: clamp(52px, 14vw, 80px); }
      .hero-h1 .line2 { -webkit-text-stroke: 1px var(--yellow); }

      .btn-primary { padding: 14px 24px; font-size: 12px; }
      .btn-ghost { padding: 14px 20px; font-size: 12px; }

      .hero-stats { flex-direction: column; align-items: center; border-top: none; padding-top: 0; gap: 16px; }
      .hero-stat { border-right: none; margin-right: 0; padding-right: 0; border-bottom: 1px solid rgba(255,255,255,0.07); padding-bottom: 16px; width: 100%; text-align: center; }
      .hero-stat:last-child { border-bottom: none; padding-bottom: 0; }

      .zn-card { flex: 0 0 calc(50% - 7px); }
      .zn-grid { gap: 10px; }

      .wib-left { padding: 50px 20px; }
      .challenges-left { padding: 50px 20px; }

      header { padding: 0 14px; }
      .header-logo img { height: 34px; }

      /* Mobile nav font size */
      .mobile-nav a { font-size: 32px; }

      .product-footer { flex-direction: column; align-items: flex-start; gap: 10px; }
      .btn-cart { width: 100%; justify-content: center; }

      .marquee-track span { font-size: 13px; }

      footer { padding: 40px 16px 0; }
      .footer-grid { gap: 28px; }

      .impact-sub { font-size: 14px; }
    }

    /* ─── VERY SMALL: ≤ 360px ─── */
    @media (max-width: 360px) {
      .hero-can-img { height: 180px; }
      .hero-h1 { font-size: clamp(44px, 13vw, 70px); }
      .zn-card { flex: 0 0 calc(50% - 5px); padding: 20px 10px 14px; }
      .zn-icon-wrap { width: 52px; height: 52px; }
      .zn-icon-wrap svg { width: 22px; height: 22px; }
    }

    /* ══════════════════════════════════════════════
       ELEMENTOR EDITOR FIXES
    ══════════════════════════════════════════════ */
    body.elementor-editor-active {
      cursor: auto !important;
    }
    body.elementor-editor-active a, 
    body.elementor-editor-active button, 
    body.elementor-editor-active .product-card, 
    body.elementor-editor-active .zn-card {
      cursor: pointer !important;
    }
    body.elementor-editor-active .cursor,
    body.elementor-editor-active .cursor-follower {
      display: none !important;
    }
    body.elementor-editor-active header,
    body.elementor-editor-active .mobile-nav {
      position: absolute !important;
    }
    body.elementor-editor-active .hero-grid-bg {
      position: absolute !important;
      height: 100% !important;
    }
    body.elementor-editor-active .hero {
      min-height: 800px !important;
    }
    body.elementor-editor-active .mobile-nav {
      display: none !important;
    }
    body.elementor-editor-active .elementor-widget-container {
      min-height: 50px;
    }
    /* Force visibility of scroll-reveal elements */
    body.elementor-editor-active .sr,
    body.elementor-editor-active .sr-l,
    body.elementor-editor-active .sr-r {
      opacity: 1 !important;
      transform: none !important;
      transition: none !important;
    }
    /* Force visibility of CSS keyframe animated elements */
    body.elementor-editor-active .hero-tag,
    body.elementor-editor-active .hero-h1,
    body.elementor-editor-active .hero-desc,
    body.elementor-editor-active .hero-actions,
    body.elementor-editor-active .hero-stats,
    body.elementor-editor-active .hero-badge,
    body.elementor-editor-active .hero-features,
    body.elementor-editor-active .scroll-indicator {
      animation: none !important;
      opacity: 1 !important;
      transform: none !important;
    }

    /* ══════════════════════════════════════════════
       ABOUT US PAGE
    ══════════════════════════════════════════════ */
    .bangin-about-page { background: var(--dark); color: var(--white); overflow: hidden; }
    
    .about-hero {
      position: relative; min-height: 80vh; 
      background-size: 400px; background-repeat: repeat;
      display: flex; align-items: center; justify-content: center;
      padding: 120px 24px 80px;
    }
    .about-hero-overlay {
      position: absolute; inset: 0;
      background: radial-gradient(circle at center, transparent 0%, var(--dark) 85%);
      z-index: 1;
    }
    .about-hero-inner { position: relative; z-index: 2; max-width: 900px; text-align: center; }
    .about-hero-title {
      font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px, 12vw, 160px);
      line-height: 0.85; letter-spacing: 4px; color: var(--yellow);
      margin-bottom: 40px; text-shadow: 0 20px 40px rgba(0,0,0,0.5);
    }
    .about-hero-text p {
      font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.8;
      margin-bottom: 24px; font-weight: 300;
    }

    .about-pillars { padding: 100px 0; background: var(--dark2); position: relative; }
    .about-pillars::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent);
    }
    .about-pillars-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    }
    .pillar-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
      padding: 40px; text-align: center; transition: all 0.3s;
    }
    .pillar-card:hover { transform: translateY(-10px); background: rgba(245,197,24,0.05); border-color: var(--yellow); }
    .pillar-icon { font-size: 44px; color: var(--yellow); margin-bottom: 25px; }
    .pillar-card h3 { font-family: 'Bebas Neue', sans-serif; font-size: 32px; color: var(--white); margin-bottom: 15px; }
    .pillar-card p { font-size: 15px; color: rgba(255,255,255,0.4); line-height: 1.6; }

    .about-split { padding: 100px 0; background: var(--dark); position: relative; }
    .about-split-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .about-split-left { position: relative; }
    .about-split-left img { width: 100%; border-radius: 20px; box-shadow: 0 30px 60px rgba(0,0,0,0.5); }
    .about-split-right { position: relative; }

    .about-closing { padding: 120px 0; position: relative; text-align: center; }
    .about-closing .wib-title { text-align: center; width: 100%; }
    .about-closing .wib-text { text-align: center; margin-left: auto; margin-right: auto; }
    .closing-features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px;
    }
    .c-feature { text-align: center; }
    .c-icon {
      font-size: 40px; color: var(--yellow); margin-bottom: 20px;
      display: inline-block; filter: drop-shadow(0 0 20px rgba(245,197,24,0.3));
    }
    .c-feature h4 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 12px; }
    .c-feature p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }

    @media (max-width: 1200px) {
      .about-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 991px) {
      .about-split-inner { grid-template-columns: 1fr; }
      .about-split-left::after { display: none; }
      .closing-features-grid { grid-template-columns: 1fr; gap: 60px; }
    }
    @media (max-width: 480px) {
      .about-pillars-grid { grid-template-columns: 1fr; }
      .about-hero-title { font-size: 80px; }
    }

/* ══════════════════════════════════════════════
   SINGLE PRODUCT PAGE (VERSION 2 — ISOLATED)
══════════════════════════════════════════════ */
.pd-template-v2 {
    background: var(--dark);
    color: var(--white);
    font-family: 'Barlow', sans-serif;
    overflow-x: hidden;
}

/* ── BREADCRUMB ─────────────────────────── */
.breadcrumb-wrap {
  padding: 100px 60px 0;
  width: 100%;
}
.breadcrumb {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
}
.breadcrumb a { color: rgba(255,255,255,0.3); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .bc-sep { color: rgba(255,255,255,0.15); font-size: 8px; }
.breadcrumb .bc-current { color: rgba(255,255,255,0.65); }

/* ── MAIN LAYOUT ────────────────────────── */
.pd-wrap {
  width: 100%;
  padding: 36px 60px 80px;
}
.pd-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* ── GALLERY (LEFT) ─────────────────────── */
.pd-gallery { position: sticky; top: 96px; z-index: 10; }

.pd-main-img-wrap {
  position: relative;
  background: linear-gradient(145deg, rgba(10,26,255,0.1) 0%, transparent 55%);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  min-height: 500px; overflow: hidden;
  border-radius: 4px;
}
.pd-main-img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(10,26,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,26,255,0.05) 1px, transparent 1px);
  background-size: 44px 44px;
}
.pd-main-img-wrap::after {
  content: '';
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  width: 220px; height: 50px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.22) 0%, transparent 70%);
  filter: blur(14px);
}
.pd-img-badge {
  position: absolute; top: 16px; left: 16px; z-index: 4;
  background: rgba(232,82,10,0.18); color: #ff7040;
  border: 1px solid rgba(232,82,10,0.4);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 800; letter-spacing: 2px;
  text-transform: uppercase; padding: 4px 12px; border-radius: 100px;
}
.pd-img-wish {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); font-size: 13px;
  background: rgba(0,0,0,0.4); backdrop-filter: blur(8px);
  transition: all 0.3s;
  cursor: pointer;
}
.pd-img-wish:hover { border-color: #e8520a; color: #e8520a; }
.pd-img-wish.wishlisted { border-color: #e8520a; color: #e8520a; background: rgba(232,82,10,0.1); }
.pd-main-can {
  height: 400px; width: auto; max-width: 300px;
  object-fit: contain; position: relative; z-index: 2;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.65));
  animation: can-float 4s ease-in-out infinite;
}
@keyframes can-float {
  0%,100% { transform: translateY(0) rotate(-1.5deg); }
  50% { transform: translateY(-20px) rotate(1.5deg); }
}

.pd-thumbs { display: flex; gap: 10px; margin-top: 10px; }
.pd-thumb {
  flex: 1; height: 78px; min-width: 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.3s; overflow: hidden; position: relative;
}
.pd-thumb img { height: 52px; width: auto; object-fit: contain; filter: drop-shadow(0 4px 10px rgba(0,0,0,0.4)); transition: transform 0.3s; }
.pd-thumb:hover img { transform: scale(1.1); }
.pd-thumb:hover, .pd-thumb.active { border-color: var(--yellow); background: rgba(245,197,24,0.05); }
.pd-thumb.active::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--yellow); }

/* ── PRODUCT INFO (RIGHT) ───────────────── */
.pd-eyebrow {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 4px;
  color: var(--yellow); text-transform: uppercase;
  display: flex; align-items: center; gap: 10px; margin-bottom: 12px;
}
.pd-eyebrow::before { content: ''; width: 24px; height: 1px; background: var(--yellow); }
.pd-name {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 5.5vw, 78px);
  line-height: 0.9; color: var(--white); letter-spacing: 2px;
  margin-bottom: 6px;
}
.pd-sub {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 12px; font-weight: 600; letter-spacing: 3px;
  color: rgba(255,255,255,0.3); text-transform: uppercase; margin-bottom: 18px;
}

.pd-rating-row {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  margin-bottom: 22px;
}
.pd-stars { display: flex; gap: 3px; }
.pd-stars i { color: var(--yellow); font-size: 13px; }
.pd-rating-score { font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:700; color:var(--yellow); letter-spacing:1px; }
.pd-rating-count { font-family:'Barlow Condensed',sans-serif; font-size:11px; font-weight:600; letter-spacing:1px; color:rgba(255,255,255,0.3); }
.pd-sep-dot { width:3px; height:3px; border-radius:50%; background:rgba(255,255,255,0.15); }
.pd-stock { display:flex; align-items:center; gap:6px; font-family:'Barlow Condensed',sans-serif; font-size:11px; font-weight:700; letter-spacing:1.5px; color:#00e868; text-transform:uppercase; }
.pd-stock-dot { width:6px; height:6px; border-radius:50%; background:#00e868; animation:blink 2s ease-in-out infinite; }
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.pd-divider { height:1px; background:rgba(255,255,255,0.06); margin:22px 0; }

/* Price block */
.pd-price-row { display:flex; align-items:flex-end; gap:14px; flex-wrap:wrap; margin-bottom:6px; }
.pd-price { font-family:'Bebas Neue',sans-serif; font-size:58px; color:var(--yellow); line-height:1; }
.pd-price p { margin: 0; }
.pd-price-old { font-family:'Bebas Neue',sans-serif; font-size:30px; color:rgba(255,255,255,0.2); text-decoration:line-through; line-height:1; margin-bottom:8px; }
.pd-save-pill { background:rgba(232,82,10,0.18); color:var(--orange); border:1px solid rgba(232,82,10,0.35); font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:800; letter-spacing:2px; padding:4px 10px; border-radius:4px; text-transform:uppercase; margin-bottom:8px; }
.pd-per-unit { font-family:'Barlow Condensed',sans-serif; font-size:12px; font-weight:600; letter-spacing:1.5px; color:rgba(255,255,255,0.3); text-transform:uppercase; }

/* Feature pills */
.pd-pills { display:flex; flex-wrap:wrap; gap:8px; margin-bottom:26px; }
.pd-pill {
  display:inline-flex; align-items:center; gap:6px;
  background:rgba(255,255,255,0.03); border:1px solid rgba(255,255,255,0.08);
  padding:6px 14px; border-radius:100px;
  font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700;
  letter-spacing:2px; color:rgba(255,255,255,0.45); text-transform:uppercase;
  transition:all 0.25s;
}
.pd-pill i { font-size:9px; color:var(--yellow); }
.pd-pill:hover { border-color:rgba(245,197,24,0.3); color:var(--yellow); background:rgba(245,197,24,0.05); }

/* Quantity selector */
.pd-qty-label { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:3px; color:rgba(255,255,255,0.35); text-transform:uppercase; margin-bottom:10px; }
.pd-purchase-row { display:flex; gap:10px; align-items:stretch; flex-wrap:wrap; margin-bottom:12px; }
.pd-qty-wrap { display:flex; align-items:center; border:1px solid rgba(255,255,255,0.1); background:rgba(255,255,255,0.02); flex-shrink:0; }
.pd-qty-btn { width:44px; height:52px; background:none; border:none; color:rgba(255,255,255,0.5); font-size:16px; display:flex; align-items:center; justify-content:center; transition:all 0.2s; cursor: pointer; }
.pd-qty-btn:hover { color:var(--yellow); background:rgba(245,197,24,0.06); }
.pd-qty-val { width:46px; text-align:center; font-family:'Bebas Neue',sans-serif; font-size:22px; color:var(--white); }
.pd-add-btn {
  flex:1; min-width:180px; height:52px;
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  background:var(--yellow); color:var(--dark); border:none;
  font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:800;
  letter-spacing:2px; text-transform:uppercase; transition:all 0.3s;
  position:relative; overflow:hidden;
  clip-path:polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  cursor: pointer;
}
.pd-add-btn::before { content:''; position:absolute; inset:0; background:var(--white); transform:translateX(-100%) skewX(-10deg); transition:transform 0.4s; z-index:0; }
.pd-add-btn:hover::before { transform:translateX(0) skewX(-10deg); }
.pd-add-btn span, .pd-add-btn i { position:relative; z-index:1; }
.pd-add-btn:hover { transform:translateY(-2px); box-shadow:0 16px 50px rgba(245,197,24,0.35); }
.pd-wish-btn { width:52px; height:52px; border:1px solid rgba(255,255,255,0.1); background:rgba(255,255,255,0.02); display:flex; align-items:center; justify-content:center; color:rgba(255,255,255,0.4); font-size:16px; transition:all 0.3s; flex-shrink:0; cursor: pointer; }
.pd-wish-btn:hover { border-color:#e8520a; color:#e8520a; background:rgba(232,82,10,0.06); }
.pd-wish-btn.active { border-color:#e8520a; color:#e8520a; }

.pd-buynow {
  width:100%; height:50px; display:flex; align-items:center; justify-content:center; gap:10px;
  border:1px solid rgba(255,255,255,0.14); background:rgba(255,255,255,0.03);
  color:rgba(255,255,255,0.65); font-family:'Barlow Condensed',sans-serif; cursor: pointer;
  font-size:13px; font-weight:700; letter-spacing:2px; text-transform:uppercase;
  transition:all 0.3s; margin-bottom:24px;
}
.pd-buynow:hover { border-color:var(--yellow); color:var(--yellow); background:rgba(245,197,24,0.04); }

/* Trust strip */
.pd-trust { display:flex; border:1px solid rgba(255,255,255,0.06); }
.pd-trust-item { flex:1; padding:14px 8px; display:flex; flex-direction:column; align-items:center; justify-content:center; gap:6px; border-right:1px solid rgba(255,255,255,0.06); text-align:center; transition:background 0.3s; }
.pd-trust-item:last-child { border-right:none; }
.pd-trust-item:hover { background:rgba(245,197,24,0.03); }
.pd-trust-item i { color:var(--yellow); font-size:15px; }
.pd-trust-label { font-family:'Barlow Condensed',sans-serif; font-size:9px; font-weight:700; letter-spacing:1.5px; color:rgba(255,255,255,0.3); text-transform:uppercase; line-height:1.3; }

/* ── TABS SECTION ───────────────────────── */
.pd-tabs-wrap {
  width: 100%;
  padding: 0 60px 80px;
}
.pd-tabs-nav {
  display: flex; border-bottom: 1px solid rgba(255,255,255,0.07);
  margin-bottom: 50px; overflow-x: auto; scrollbar-width: none;
}
.pd-tabs-nav::-webkit-scrollbar { display: none; }
.pd-tab-btn {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
  padding: 16px 28px; background: none; border: none;
  border-bottom: 2px solid transparent; margin-bottom: -1px;
  transition: all 0.3s; white-space: nowrap; flex-shrink: 0;
  cursor: pointer;
}
.pd-tab-btn:hover { color: rgba(255,255,255,0.7); }
.pd-tab-btn.active { color: var(--yellow); border-bottom-color: var(--yellow); }
.pd-tab-panel { display: none; }
.pd-tab-panel.active { display: block; animation: fade-in 0.4s ease; }
@keyframes fade-in { from{opacity:0;transform:translateY(10px)} to{opacity:1;transform:translateY(0)} }

/* Description Tab */
.tab-desc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.tab-desc-body { font-size: 15px; color: rgba(255,255,255,0.6); line-height: 1.9; margin-bottom: 20px; }
.tab-feat-list { display: flex; flex-direction: column; gap: 10px; }
.tab-feat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
  transition: all 0.3s;
}
.tab-feat-item:hover { background: rgba(245,197,24,0.04); border-color: rgba(245,197,24,0.15); }
.tab-feat-icon { width: 34px; height: 34px; background: rgba(245,197,24,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--yellow); font-size: 12px; flex-shrink: 0; }
.tab-feat-text { font-family: 'Barlow Condensed', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.6); text-transform: uppercase; }

.tab-desc-visual {
  background: var(--orange); min-height: 360px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  border-radius: 4px;
}
.tab-desc-visual::before { content:''; position:absolute; width:320px; height:320px; border-radius:50%; border:60px solid rgba(0,0,0,0.08); top:50%; left:50%; transform:translate(-50%,-50%); }
.tab-desc-visual img { height: 300px; width: auto; object-fit: contain; position: relative; z-index: 2; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.4)); animation: can-float 5s ease-in-out infinite 1s; }

/* Ingredients Grid */
.tab-ingr-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.ingr-card {
  background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
  padding: 28px 18px; text-align: center; transition: all 0.35s; position: relative; overflow: hidden;
}
.ingr-card::before { content:''; position:absolute; bottom:0; left:0; right:0; height:2px; background:var(--yellow); transform:scaleX(0); transition:transform 0.3s; }
.ingr-card:hover { background:rgba(245,197,24,0.04); border-color:rgba(245,197,24,0.2); transform:translateY(-4px); }
.ingr-card:hover::before { transform:scaleX(1); }
.ingr-icon-wrap { width:56px; height:56px; border:1.5px solid rgba(10,26,255,0.3); border-radius:50%; display:flex; align-items:center; justify-content:center; margin:0 auto 12px; background:rgba(10,26,255,0.07); transition:all 0.3s; }
.ingr-card:hover .ingr-icon-wrap { background:var(--blue); border-color:var(--blue); }
.ingr-icon-wrap i { font-size:20px; color:var(--blue); transition:color 0.3s; }
.ingr-card:hover .ingr-icon-wrap i { color:var(--yellow); }
.ingr-name { font-family:'Bebas Neue',sans-serif; font-size:20px; color:var(--white); letter-spacing:1px; margin-bottom:4px; }
.ingr-amount { font-family:'Barlow Condensed',sans-serif; font-size:11px; font-weight:700; letter-spacing:2px; color:var(--yellow); text-transform:uppercase; margin-bottom:8px; }
.ingr-desc { font-size:12px; color:rgba(255,255,255,0.35); line-height:1.6; }

/* Nutrition table */
.nutr-wrap { margin-top: 50px; max-width: 560px; }
.nutr-heading { font-family:'Bebas Neue',sans-serif; font-size:28px; letter-spacing:2px; color:var(--white); margin-bottom:20px; }
.nutr-table { width:100%; border-collapse:collapse; }
.nutr-table tr { border-bottom:1px solid rgba(255,255,255,0.05); }
.nutr-table tr:last-child { border-bottom:none; }
.nutr-table td { padding:12px 0; font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:600; letter-spacing:1px; color:rgba(255,255,255,0.5); text-transform:uppercase; }
.nutr-table td:last-child { text-align:right; color:var(--yellow); }
.nutr-table tr:hover td { color:rgba(255,255,255,0.8); }
.nutr-table tr:hover td:last-child { color:var(--yellow2); }

/* Reviews Tab */
.reviews-top { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; flex-wrap:wrap; gap:20px; }
.reviews-summary { display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.big-score { font-family:'Bebas Neue',sans-serif; font-size:84px; color:var(--yellow); line-height:1; }
.score-stars { display:flex; gap:4px; margin-bottom:8px; }
.score-stars i { color:var(--yellow); font-size:18px; }
.score-count { font-family:'Barlow Condensed',sans-serif; font-size:11px; font-weight:600; letter-spacing:2px; color:rgba(255,255,255,0.3); text-transform:uppercase; }
.rating-bars { display:flex; flex-direction:column; gap:7px; min-width:180px; }
.rbar-row { display:flex; align-items:center; gap:8px; }
.rbar-lbl { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:1px; color:rgba(255,255,255,0.35); width:16px; text-align:right; flex-shrink:0; }
.rbar-track { flex:1; height:4px; background:rgba(255,255,255,0.06); border-radius:2px; overflow:hidden; }
.rbar-fill { height:100%; background:var(--yellow); border-radius:2px; }
.rbar-count { font-family:'Barlow Condensed',sans-serif; font-size:10px; color:rgba(255,255,255,0.25); width:24px; }
.write-review-btn {
  font-family:'Barlow Condensed',sans-serif; font-size:11px; font-weight:700;
  letter-spacing:2px; text-transform:uppercase; color:var(--yellow);
  border:1px solid rgba(245,197,24,0.3); padding:12px 24px;
  background:rgba(245,197,24,0.05); text-decoration:none; transition:all 0.3s; white-space:nowrap;
}
.write-review-btn:hover { background:var(--yellow); color:var(--dark); }

.review-list { display:flex; flex-direction:column; gap:2px; }
.review-card { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.05); padding:28px; transition:border-color 0.3s; }
.review-card:hover { border-color:rgba(245,197,24,0.12); }
.review-header { display:flex; align-items:flex-start; justify-content:space-between; flex-wrap:wrap; gap:10px; margin-bottom:14px; }
.reviewer-name { font-family:'Barlow Condensed',sans-serif; font-size:14px; font-weight:700; letter-spacing:1.5px; color:var(--white); text-transform:uppercase; margin-bottom:5px; }
.review-meta { display:flex; align-items:center; gap:10px; flex-wrap:wrap; }
.rev-stars { display:flex; gap:2px; }
.rev-stars i { color:var(--yellow); font-size:11px; }
.rev-date { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:600; letter-spacing:1.5px; color:rgba(255,255,255,0.2); text-transform:uppercase; }
.rev-verified { font-family:'Barlow Condensed',sans-serif; font-size:9px; font-weight:700; letter-spacing:1.5px; color:#00e868; text-transform:uppercase; background:rgba(0,232,104,0.08); border:1px solid rgba(0,232,104,0.2); padding:3px 8px; }
.review-body { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.8; }
.review-helpful { margin-top:14px; display:flex; align-items:center; gap:10px; }
.helpful-lbl { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:600; letter-spacing:1.5px; color:rgba(255,255,255,0.2); text-transform:uppercase; }
.helpful-btn { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:1.5px; color:rgba(255,255,255,0.3); text-transform:uppercase; background:none; border:1px solid rgba(255,255,255,0.07); padding:4px 12px; transition:all 0.2s; cursor: pointer; }
.helpful-btn:hover { border-color:var(--yellow); color:var(--yellow); }

/* ── RELATED PRODUCTS ──────────────────── */
.related-section {
  background: var(--dark2); padding: 80px 60px;
  position: relative; overflow: hidden;
}
.related-section::before { content:''; position:absolute; top:0; left:0; right:0; height:1px; background:linear-gradient(90deg, transparent, rgba(245,197,24,0.3), transparent); }
.related-header { display:flex; align-items:flex-end; justify-content:space-between; margin-bottom:40px; flex-wrap:wrap; gap:16px; }
.section-eyebrow { font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:700; letter-spacing:4px; color:var(--yellow); text-transform:uppercase; margin-bottom:8px; opacity:0.8; }
.section-title-sm { font-family:'Bebas Neue',sans-serif; font-size:clamp(32px,4vw,52px); letter-spacing:3px; color:var(--white); line-height:1; }
.section-title-sm span { color:var(--yellow); }
.view-all-link { font-family:'Barlow Condensed',sans-serif; font-size:12px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:var(--yellow); text-decoration:none; display:flex; align-items:center; gap:8px; transition:gap 0.3s; padding-bottom:4px; border-bottom:1px solid rgba(245,197,24,0.3); white-space:nowrap; }
.view-all-link:hover { gap:14px; }
.related-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; }

.rel-card { background:rgba(255,255,255,0.02); border:1px solid rgba(255,255,255,0.06); position:relative; overflow:hidden; display:flex; flex-direction:column; transition:transform 0.4s, border-color 0.4s, box-shadow 0.4s; }
.rel-card:hover { transform:translateY(-8px); border-color:rgba(245,197,24,0.25); box-shadow:0 24px 60px rgba(0,0,0,0.4); }
.rel-card-top { position:absolute; top:12px; left:12px; right:12px; display:flex; justify-content:space-between; align-items:flex-start; z-index:3; }
.rel-badge { font-family:'Barlow Condensed',sans-serif; font-size:8px; font-weight:800; letter-spacing:2px; text-transform:uppercase; padding:3px 10px; border-radius:100px; }
.rel-badge.starter { background:rgba(245,197,24,0.15); color:var(--yellow); border:1px solid rgba(245,197,24,0.3); }
.rel-badge.value { background:rgba(0,200,80,0.15); color:#00e868; border:1px solid rgba(0,200,80,0.3); }
.rel-badge.current { background:rgba(10,26,255,0.2); color:#6b80ff; border:1px solid rgba(10,26,255,0.4); }
.rel-img-zone { padding:40px 20px 16px; display:flex; align-items:flex-end; justify-content:center; min-height:200px; background:linear-gradient(160deg, rgba(10,26,255,0.08) 0%, transparent 60%); position:relative; }
.rel-img-zone img { object-fit:contain; filter:drop-shadow(0 16px 32px rgba(0,0,0,0.5)); transition:transform 0.5s ease; position:relative; z-index:2; }
.rel-card:hover .rel-img-zone img { transform:translateY(-6px) scale(1.04); }
.rel-info { padding:16px 18px 20px; flex:1; display:flex; flex-direction:column; border-top:1px solid rgba(255,255,255,0.05); }
.rel-pack { font-family:'Barlow Condensed',sans-serif; font-size:9px; font-weight:700; letter-spacing:3px; color:rgba(255,255,255,0.3); text-transform:uppercase; margin-bottom:4px; }
.rel-name { font-family:'Bebas Neue',sans-serif; font-size:24px; color:var(--white); letter-spacing:1.5px; margin-bottom:10px; line-height:1; }
.rel-footer { display:flex; align-items:center; justify-content:space-between; gap:8px; margin-top:auto; }
.rel-price { font-family:'Bebas Neue',sans-serif; font-size:28px; color:var(--yellow); line-height:1; }
.rel-price-per { font-family:'Barlow Condensed',sans-serif; font-size:9px; font-weight:600; letter-spacing:1.5px; color:rgba(255,255,255,0.25); text-transform:uppercase; }
.rel-btn { display:inline-flex; align-items:center; gap:6px; background:var(--yellow); color:var(--dark); padding:9px 16px; font-family:'Barlow Condensed',sans-serif; font-size:10px; font-weight:800; letter-spacing:1.5px; text-transform:uppercase; border:none; transition:all 0.3s; clip-path:polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px)); white-space:nowrap; cursor: pointer; }
.rel-btn:hover { background:var(--white); transform:translateY(-2px); }

/* ── MARQUEE ────────────────────────────── */
.marquee-wrap { background:var(--yellow); padding:12px 0; overflow:hidden; }
.marquee-track { display:flex; white-space:nowrap; animation:marquee 20s linear infinite; width:max-content; }
.marquee-track span { font-family:'Barlow Condensed',sans-serif; font-size:15px; font-weight:900; color:var(--dark); letter-spacing:3px; text-transform:uppercase; padding-right:50px; display:inline-flex; align-items:center; gap:20px; }
.marquee-track span::after { content:'★'; font-size:9px; color:var(--blue); }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ── STICKY CART BAR (MOBILE) ───────────── */
.sticky-cart-bar {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 500;
  background: rgba(4,5,15,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(245,197,24,0.15);
  padding: 12px 20px;
  align-items: center; gap: 12px;
}
.sticky-cart-info { flex: 1; min-width: 0; }
.sticky-cart-name { font-family:'Bebas Neue',sans-serif; font-size:18px; color:var(--white); letter-spacing:1px; line-height:1; }
.sticky-cart-price { font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:700; color:var(--yellow); letter-spacing:1px; }
.sticky-cart-btn { display:flex; align-items:center; justify-content:center; gap:8px; background:var(--yellow); color:var(--dark); padding:12px 24px; font-family:'Barlow Condensed',sans-serif; font-size:13px; font-weight:800; letter-spacing:2px; text-transform:uppercase; border:none; transition:all 0.3s; clip-path:polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px)); flex-shrink:0; cursor: pointer; }
.sticky-cart-btn:hover { background:var(--white); }

/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1200px) {
  .breadcrumb-wrap { padding: 96px 30px 0; }
  .pd-wrap { padding: 30px 30px 70px; }
  .pd-grid { gap: 50px; }
  .pd-tabs-wrap { padding: 0 30px 70px; }
  .related-section { padding: 70px 30px; }
}

@media (max-width: 1024px) {
  .breadcrumb-wrap { padding: 84px 24px 0; }
  .pd-wrap { padding: 28px 24px 60px; }
  .pd-grid { grid-template-columns: 1fr; gap: 40px; }
  .pd-gallery { position: static; }
  .pd-main-img-wrap { min-height: 420px; }
  .pd-tabs-wrap { padding: 0 24px 60px; }
  .tab-desc-grid { grid-template-columns: 1fr; gap: 30px; }
  .tab-ingr-grid { grid-template-columns: repeat(2, 1fr); }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .breadcrumb-wrap { padding: 76px 16px 0; }
  .pd-wrap { padding: 20px 16px 100px; }
  .pd-main-img-wrap { min-height: 340px; }
  .pd-main-can { height: 280px; }
  .pd-name { font-size: clamp(44px, 11vw, 64px); }
  .pd-price { font-size: 48px; }
  .pd-tabs-wrap { padding: 0 16px 60px; }
  .sticky-cart-bar { display: flex; }
  .related-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .related-section { padding: 50px 16px 80px; }
}

@media (max-width: 480px) {
  .pd-trust { flex-wrap: wrap; }
  .pd-trust-item { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pd-trust-item:nth-child(even) { border-right: none; }
  .pd-trust-item:nth-last-child(-n+2) { border-bottom: none; }
  .tab-ingr-grid { grid-template-columns: 1fr 1fr; }
  .related-grid { grid-template-columns: 1fr; }
}
    .about-pillars-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    }
    .pillar-card {
      background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.08);
      padding: 40px 30px; text-align: center; transition: all 0.4s;
    }
    .pillar-card:hover { background: rgba(245,197,24,0.05); border-color: rgba(245,197,24,0.3); transform: translateY(-10px); }
    .pillar-card h4 {
      font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--yellow);
      letter-spacing: 2px; margin-bottom: 12px;
    }
    .pillar-card p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.5; }

    .about-split { display: block; background: var(--dark); }
    .about-split-inner { display: grid; grid-template-columns: 1fr 1fr; min-height: 80vh; }
    .about-split-left { background: var(--dark2); padding: 100px 60px; position: relative; }
    .about-split-left::after {
      content: ''; position: absolute; top: 0; right: -1px; bottom: 0; width: 80px;
      background: var(--yellow); clip-path: polygon(100% 0, 100% 100%, 0 50%);
      z-index: 2;
    }
    .about-split-right { background: var(--yellow); color: var(--dark); padding: 100px 60px; }
    .about-split-right .wib-title { color: var(--dark); }
    .about-split-right .wib-divider { background: rgba(0,0,0,0.2); }
    .about-split-right .wib-text { color: rgba(0,0,0,0.7); }
    .about-split-right .wib-eyebrow { color: var(--dark); }
    .about-split-right .wib-eyebrow::before { background: var(--dark); }

    .ehs-container {
      padding-left: 60px !important;
      padding-right: 60px !important;
      max-width: 1400px;
      margin: 0 auto;
    }

    .solution-tags { display: flex; flex-wrap: wrap; gap: 15px; margin-top: 40px; }
    .solution-tags .wib-tag {
      background: rgba(0,0,0,0.05); border: 1px solid rgba(0,0,0,0.1);
      color: var(--dark);
    }

    .about-closing { padding: 120px 0; position: relative; text-align: center; }
    .about-closing .wib-title { text-align: center; width: 100%; }
    .about-closing .wib-text { text-align: center; margin-left: auto; margin-right: auto; }
    .closing-features-grid {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px;
    }
    .c-feature { text-align: center; }
    .c-icon {
      font-size: 40px; color: var(--yellow); margin-bottom: 20px;
      display: inline-block; filter: drop-shadow(0 0 20px rgba(245,197,24,0.3));
    }
    .c-feature h4 { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--white); margin-bottom: 12px; }
    .c-feature p { font-size: 14px; color: rgba(255,255,255,0.4); line-height: 1.6; }

    @media (max-width: 1200px) {
      .about-pillars-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 991px) {
      .about-split-inner { grid-template-columns: 1fr; }
      .about-split-left::after { display: none; }
      .closing-features-grid { grid-template-columns: 1fr; gap: 60px; }
    }
    @media (max-width: 480px) {
      .about-pillars-grid { grid-template-columns: 1fr; }
      .about-hero-title { font-size: 80px; }
    }
/* ----------------------------------------------
   BREAKOUT: FORCE FULL WIDTH FOR V2 PRODUCT PAGE
   (Overrides Hello Elementor / Elementor Boxed)
   ---------------------------------------------- */
.pd-template-v2-active .elementor-section.elementor-section-boxed > .elementor-container {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
}
.pd-template-v2-active .elementor-column-wrap, 
.pd-template-v2-active .elementor-widget-wrap {
    padding: 0 !important;
}
.pd-template-v2-active .pd-template-v2 {
    max-width: 100% !important;
}
/* ─────────────────────────────────────────────────────────────
   BANGIN CART PAGE V2 (elementor-widgets/class-bangin-cart-page-widget.php)
   ───────────────────────────────────────────────────────────── */
.bangin-cart-v2 {
  background: var(--dark);
  color: #fff;
  padding: 80px 60px;
  font-family: var(--font-main);
}
.cart-header {
  display: flex; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding-bottom: 12px; margin-bottom: 30px;
  font-size: 13px; letter-spacing: 1px; color: rgba(255,255,255,0.5);
}
.cart-container { display: flex; gap: 80px; align-items: start; }
.cart-main { flex: 1; }
.cart-sidebar { width: 400px; }

/* Item Row */
.cart-item {
  display: flex; align-items: center; gap: 30px;
  padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.item-visual { width: 100px; height: 100px; background: #111; border-radius: 4px; overflow: hidden; flex-shrink: 0; }
.item-visual img { width: 100%; height: 100%; object-fit: contain; }
.item-details { flex: 1; }
.item-name { font-size: 18px; margin-bottom: 6px; font-weight: 600; }
.item-name a { color: #fff; text-decoration: none; }
.item-price { color: var(--yellow); font-size: 16px; margin-bottom: 8px; font-family: var(--font-accent); }
.item-desc { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.4; margin-bottom: 20px; max-width: 400px; }

.item-total { font-size: 18px; font-weight: 600; color: #fff; min-width: 100px; text-align: right; }

/* Item controls: Qty + Remove */
.item-controls { display: flex; align-items: center; gap: 20px; }
.cart-qty-wrap {
  display: flex; align-items: center; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px; overflow: hidden; width: 110px; height: 36px;
}
.cart-qty-btn {
  background: transparent; border: none; color: #fff; width: 34px; height: 100%;
  cursor: pointer; transition: background 0.2s; display: flex; align-items: center; justify-content: center;
}
.cart-qty-btn:hover { background: rgba(255,255,255,0.05); }
.cart-qty-input {
  background: transparent !important; border: none !important; color: var(--yellow) !important; 
  width: 42px !important; text-align: center !important;
  font-size: 14px !important; font-weight: 600 !important; outline: none !important; 
  -moz-appearance: textfield !important; padding: 0 !important; margin: 0 !important;
  height: 100% !important;
}
.cart-qty-input::-webkit-outer-spin-button, 
.cart-qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.item-remove { color: rgba(255,255,255,0.3); font-size: 16px; transition: color 0.2s; cursor: pointer; }
.item-remove:hover { color: #ff4444; }

/* Sidebar Totals */
.totals-box {
  background: #111; border: 1px solid rgba(255,255,255,0.06); border-radius: 8px;
  padding: 40px; box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}
.totals-title { font-size: 14px; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 30px; }
.totals-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; font-size: 15px; }
.val-free { color: #00cc55; font-weight: 600; }
.totals-divider { height: 1px; background: rgba(255,255,255,0.05); margin: 20px 0; }

.total-main { font-size: 20px; font-weight: 700; margin-top: 10px; }
.val-total { color: var(--yellow); }

.checkout-btn {
  display: block; width: 100%; height: 56px; line-height: 56px; text-align: center;
  background: #222; color: #fff; text-decoration: underline; font-weight: 600;
  border-radius: 4px; margin-top: 40px; transition: all 0.3s cubic-bezier(0.19, 1, 0.22, 1);
  border: 1px solid rgba(255,255,255,0.1);
}
.checkout-btn:hover { background: #333; transform: translateY(-2px); border-color: rgba(255,255,255,0.2); }

/* Coupon Area */
.coupon-toggle { font-size: 14px; cursor: pointer; color: #fff; display: flex; justify-content: space-between; width: 100%; transition: color 0.2s; }
.coupon-toggle:hover { color: var(--yellow); }
.coupon-toggle i { font-size: 12px; margin-top: 2px; }
.coupon-field { display: flex; margin-top: 15px; width: 100%; gap: 10px; }
.coupon-field input { flex: 1; background: #000; border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 10px; border-radius: 4px; font-size: 13px; }
.coupon-field button { background: var(--yellow); border: none; padding: 0 15px; border-radius: 4px; font-weight: 600; cursor: pointer; }

/* Empty Cart */
.empty-cart { text-align: center; padding: 100px 60px; min-height: 60vh; display: flex; align-items: center; justify-content: center; }
.empty-cart-content i { font-size: 60px; color: var(--yellow); margin-bottom: 30px; opacity: 0.2; }
.empty-cart-content h2 { font-size: 32px; margin-bottom: 15px; }
.empty-cart-content p { color: rgba(255,255,255,0.5); margin-bottom: 40px; }

/* Responsive Cart */
@media (max-width: 991px) {
  .cart-container { flex-direction: column; gap: 50px; }
  .cart-sidebar { width: 100%; }
}
@media (max-width: 767px) {
  .bangin-cart-v2 { padding: 40px 20px; }
  .cart-item { flex-wrap: wrap; text-align: center; justify-content: center; }
  .item-visual { margin: 0 auto; }
  .item-total { width: 100%; text-align: center; margin-top: 20px; }
  .item-controls { justify-content: center; }
  .item-desc { max-width: 100%; }
}
