/* ============================================================
   BANGIN GLOBAL — Master CSS v5.0
   File: /hello-elementor-child/assets/css/bangin-custom.css
   Source: bangin-redesign.html (approved dark premium design)
   ============================================================ */

/* ── GOOGLE FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow:ital,wght@0,300;0,400;0,600;0,700;1,300&family=Barlow+Condensed:wght@500;600;700;800;900&display=swap');

/* ── FONT AWESOME ─────────────────────────────────────────── */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.0/css/all.min.css');

/* ── CSS VARIABLES ────────────────────────────────────────── */
:root {
  --blue:           #0a1aff;
  --blue-dark:      #000a99;
  --yellow:         #f5c518;
  --orange:         #e8520a;
  --white:          #ffffff;
  --dark:           #04050f;
  --dark2:          #080b1a;
  --font-display:   'Bebas Neue', sans-serif;
  --font-body:      'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   ORIGINAL DESIGN CSS — from bangin-redesign.html
   ============================================================ */

/* ══════════════════════════════════════════════
   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;
  cursor: none;
}

:root {
  --blue:    #0a1aff;
  --blue2:   #0010cc;
  --blue3:   #000a80;
  --yellow:  #f5c518;
  --yellow2: #ffd740;
  --orange:  #e8520a;
  --white:   #ffffff;
  --dark:    #04050f;
  --dark2:   #080b1a;
}

/* ══════════════════════════════════════════════
   CUSTOM CURSOR
══════════════════════════════════════════════ */
.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;
}
body:hover .cursor { opacity: 1; }

/* ══════════════════════════════════════════════
   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.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,197,24,0.08);
}

.header-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}
.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;
}
.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%; }

.header-logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
}
.header-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.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); }

/* ══════════════════════════════════════════════
   SLIDER SECTION
══════════════════════════════════════════════ */
.slider-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: var(--dark);
}

/* Dark premium overlay on top of slider */
.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(4,5,15,0.45) 0%,
    rgba(4,5,15,0.2) 40%,
    rgba(4,5,15,0.7) 85%,
    rgba(4,5,15,1) 100%
  );
  z-index: 2;
  pointer-events: none;
}

/* Left edge dark vignette */
.slider-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(4,5,15,0.6) 0%,
    transparent 30%,
    transparent 70%,
    rgba(4,5,15,0.6) 100%
  );
}

/* Smart Slider container fills full height */
.slider-section .n2-ss-slider-wrapper,
.slider-section .n2-ss-slider,
.slider-section .n2-ss-slide,
.slider-section .n2-section-smartslider {
  height: 100vh !important;
  min-height: 100vh !important;
}

/* Slide-in text overlay on slider */
.slider-text-overlay {
  position: absolute;
  bottom: 120px;
  left: 60px;
  z-index: 3;
  pointer-events: none;
}
.slider-text-overlay .s-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,197,24,0.1);
  border: 1px solid rgba(245,197,24,0.25);
  padding: 5px 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: 16px;
  animation: fade-up 1s ease both;
}
.slider-text-overlay .s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 6vw, 88px);
  color: var(--white);
  line-height: 0.92;
  letter-spacing: 2px;
  animation: fade-up 1s 0.15s ease both;
}
.slider-text-overlay .s-title span { color: var(--yellow); }
.slider-text-overlay .s-sub {
  font-size: 15px; font-weight: 300;
  color: rgba(255,255,255,0.6);
  margin-top: 14px;
  letter-spacing: 0.5px;
  animation: fade-up 1s 0.25s ease both;
}

/* Scroll down arrow at bottom of slider */
.slider-scroll-hint {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: fade-up 1s 0.5s ease both;
}
.slider-scroll-hint span {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 9px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.slider-arrow {
  width: 32px; height: 32px;
  border: 1px solid rgba(245,197,24,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--yellow);
  font-size: 11px;
  animation: bounce-arrow 2s ease-in-out infinite;
}
@keyframes bounce-arrow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* Wordmark badge top-right of slider */
.slider-badge {
  position: absolute;
  top: 100px; right: 60px;
  z-index: 3;
  text-align: right;
  animation: fade-left 1s 0.3s ease both;
}
.slider-badge-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 64px; color: var(--yellow);
  line-height: 1; display: block;
  text-shadow: 0 0 60px rgba(245,197,24,0.4);
}
.slider-badge-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* Smooth fade from slider into hero */
.slider-to-hero-fade {
  position: relative;
  height: 80px;
  background: linear-gradient(to bottom, var(--dark), var(--dark));
  margin-top: -80px;
  z-index: 4;
}

/* Smart Slider dot overrides for dark theme */
.n2-ss-dots { bottom: 70px !important; z-index: 4 !important; }
.n2-ss-dots .n2-bullet {
  background: rgba(255,255,255,0.2) !important;
  border: none !important;
  border-radius: 4px !important;
  width: 8px !important; height: 8px !important;
  margin: 0 4px !important;
  transition: all 0.3s !important;
}
.n2-ss-dots .n2-bullet-active {
  background: var(--yellow) !important;
  width: 28px !important;
  border-radius: 4px !important;
}

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

/* Animated grid background */
.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); }
}

/* Large brand bg text */
.hero-bg-text {
  position: absolute;
  bottom: -40px; left: -20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(180px, 20vw, 320px);
  color: rgba(10,26,255,0.07);
  line-height: 1;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: -10px;
  user-select: none;
}

/* Gradient orbs */
.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%;
}

/* Left */
.hero-left {}

.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(72px, 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;
  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;
  border-radius: 0;
}
.btn-ghost:hover {
  border-color: var(--yellow);
  color: var(--yellow);
  background: rgba(245,197,24,0.05);
}

/* Hero stats strip */
.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;
}

/* Can center */
.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; animation-delay: 0s; }
.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); }
}

/* Right panel */
.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 */
.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;
  position: relative;
}
.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(38px, 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: 120px;
  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: 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;
}
.products-header-left {}
.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);
}
.view-all-link:hover { gap: 14px; }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-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;
  cursor: none;
}
.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;
  cursor: none;
  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: 260px;
  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;
}
.product-price-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;
  cursor: none;
  transition: all 0.3s;
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
  white-space: nowrap;
}
.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;
  cursor: none;
  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 — EDITORIAL LAYOUT
══════════════════════════════════════════════ */
.wib {
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.wib-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

/* Left — dark panel */
.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(48px, 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; }

/* Right — can + yellow */
.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;
}

/* Ingredient tags floating */
.wib-tag {
  position: absolute;
  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 { top: 20%; left: 5%; animation: tag-float 4s ease-in-out infinite; }
.wib-tag.t2 { top: 15%; right: 5%; animation: tag-float 4s ease-in-out infinite 1s; }
.wib-tag.t3 { bottom: 25%; left: 8%; animation: tag-float 4s ease-in-out infinite 2s; }
.wib-tag.t4 { 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;
}
/* Diagonal accent */
.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(52px, 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 SECTION
══════════════════════════════════════════════ */
.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%);
}
/* Noise texture */
.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-col {}
.footer-logo img { 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-brand-col {}
.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;
}
.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: 30px;
  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;
  cursor: none;
  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); 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; }


/* ============================================================
   CUSTOM CURSOR — Fixed for WordPress/Elementor
   The cursor elements are injected via bangin.js into <body>
   cursor:none is set on everything so the default cursor hides
   ============================================================ */
*,
*::before,
*::after {
  cursor: none !important;
}

/* Cursor dot */
.bangin-cursor {
  width: 12px;
  height: 12px;
  background: #f5c518;
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 999999;
  transform: translate(-50%, -50%);
  transition: width 0.25s ease, height 0.25s ease, opacity 0.25s ease;
  mix-blend-mode: difference;
  will-change: left, top;
  top: 0; left: 0;
}

/* Cursor ring follower */
.bangin-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: 999998;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease, opacity 0.3s ease;
  will-change: left, top;
  top: 0; left: 0;
}

/* Cursor grows on hover over interactive elements */
.bangin-cursor.hover {
  width: 20px;
  height: 20px;
}
.bangin-cursor-follower.hover {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}

/* Hide cursor when it leaves the window */
.bangin-cursor.hidden,
.bangin-cursor-follower.hidden {
  opacity: 0;
}

/* ============================================================
   WORDPRESS + ELEMENTOR OVERRIDES
   ============================================================ */
body {
  background: #04050f !important;
  font-family: 'Barlow', sans-serif !important;
  overflow-x: hidden;
}

/* Remove ALL section gaps */
.elementor-section,
.elementor-top-section {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
.elementor-inner-section { margin: 0 !important; }

/* HTML widget — no padding, no line-height gap */
.elementor-widget-html {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-widget-html .elementor-widget-container {
  padding: 0 !important;
  margin: 0 !important;
  line-height: 0;
  font-size: 0;
}
.elementor-widget-html .elementor-widget-container > * {
  line-height: normal;
  font-size: initial;
}

/* Header fixed position */
.elementor-location-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
}

/* Body offset for fixed header */
body { padding-top: 0 !important; }

/* ============================================================
   HEADER — Dark Premium
   ============================================================ */
.bng-hdr {
  background: rgba(4,5,15,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245,197,24,0.08);
  position: relative;
  width: 100%;
}
.bng-hdr-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 60px;
  max-width: 1440px;
  margin: 0 auto;
  height: 80px;
}
.bng-hdr-nav { display: flex; gap: 40px; align-items: center; }
.bng-hdr-nav a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  transition: color 0.2s;
  position: relative;
}
.bng-hdr-nav a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: #f5c518;
  transition: width 0.3s;
}
.bng-hdr-nav a:hover { color: #f5c518; }
.bng-hdr-nav a:hover::after { width: 100%; }
.bng-hdr-logo { display: flex; justify-content: center; align-items: center; }
.bng-hdr-logo a { display: flex; align-items: center; }
.bng-hdr-logo img { height: 56px; width: auto; object-fit: contain; filter: brightness(1.1); }
.bng-hdr-right { display: flex; align-items: center; justify-content: flex-end; gap: 6px; }
.bng-hdr-icons { display: flex; gap: 5px; align-items: center; }
.bng-hdr-icon {
  position: relative; 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;
  transition: all 0.25s; text-decoration: none; background: transparent;
}
.bng-hdr-icon:hover {
  border-color: #f5c518; color: #f5c518;
  background: rgba(245,197,24,0.08); transform: translateY(-2px);
}
.bng-hdr-badge {
  position: absolute; top: -4px; right: -4px;
  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;
  transition: transform 0.2s;
}
.bng-cart-badge { background: #f5c518; color: #04050f; }
.bng-wish-badge { background: #e8520a; color: #fff; }
.bng-hdr-sep { width: 1px; height: 18px; background: rgba(255,255,255,0.1); margin: 0 8px; }
.bng-hdr-soc { display: flex; gap: 16px; }
.bng-hdr-soc a {
  color: rgba(255,255,255,0.5); font-size: 14px;
  text-decoration: none; transition: color 0.2s, transform 0.2s;
}
.bng-hdr-soc a:hover { color: #f5c518; transform: translateY(-2px); }
.bng-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px;
}
.bng-burger span {
  width: 22px; height: 2px;
  background: #fff; display: block; transition: all 0.3s;
}
.bng-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.bng-burger.open span:nth-child(2) { opacity: 0; }
.bng-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.bng-mob-nav {
  display: none; background: rgba(4,5,15,0.98);
  border-top: 1px solid rgba(255,255,255,0.06);
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.bng-mob-nav.open { display: block; max-height: 400px; }
.bng-mob-nav a {
  display: block; padding: 14px 30px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 14px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.7); text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: color 0.2s, padding-left 0.2s;
}
.bng-mob-nav a:hover { color: #f5c518; padding-left: 38px; }

/* ============================================================
   FOOTER — Dark Premium
   ============================================================ */
.bng-ftr { background: #04050f; border-top: 1px solid rgba(255,255,255,0.05); }
.bng-ftr-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px; align-items: start;
  max-width: 1200px; margin: 0 auto;
  padding: 70px 60px 50px;
}
.bng-ftr-logo img { height: 60px; width: auto; margin-bottom: 20px; display: block; }
.bng-ftr-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;
}
.bng-ftr-soc { display: flex; gap: 10px; }
.bng-ftr-soc a {
  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;
}
.bng-ftr-soc a:hover {
  background: #f5c518; border-color: #f5c518;
  color: #04050f; transform: translateY(-3px);
}
.bng-ftr-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);
}
.bng-ftr-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.bng-ftr-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;
}
.bng-ftr-links a:hover { color: #f5c518; padding-left: 6px; }
.bng-ftr-brand-name {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 12px;
}
.bng-ftr-msark { height: 44px; width: auto; max-width: 140px; border-radius: 4px; opacity: 0.85; display: block; transition: opacity 0.3s; }
.bng-ftr-msark:hover { opacity: 1; }
.bng-ftr-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 18px 60px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
.bng-ftr-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);
}

/* ============================================================
   WOOCOMMERCE — Dark Product Grid
   ============================================================ */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 20px !important;
  margin: 0 !important; padding: 0 !important;
  list-style: none !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: rgba(255,255,255,0.02) !important;
  border: 1px solid rgba(255,255,255,0.06) !important;
  margin: 0 !important; padding: 0 !important;
  float: none !important; width: auto !important;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s !important;
  display: flex !important; flex-direction: column !important;
  position: relative !important; overflow: hidden !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  transform: translateY(-8px) !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5), 0 0 0 1px rgba(245,197,24,0.1) !important;
  border-color: rgba(245,197,24,0.25) !important;
}
.woocommerce ul.products li.product::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: #f5c518;
  transform: scaleX(0); transition: transform 0.3s;
}
.woocommerce ul.products li.product:hover::after { transform: scaleX(1); }

/* Image area */
.woocommerce ul.products li.product a.woocommerce-loop-product__link {
  background: linear-gradient(145deg,rgba(10,26,255,0.06) 0%,transparent 60%) !important;
  padding: 30px !important; min-height: 240px;
  display: flex !important; align-items: flex-end; justify-content: center;
}
.woocommerce ul.products li.product a img {
  max-height: 220px !important; width: auto !important;
  object-fit: contain !important; padding: 0 !important;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.4)) !important;
  transition: transform 0.4s !important;
  margin: 0 auto !important; display: block !important;
}
.woocommerce ul.products li.product:hover a img {
  transform: scale(1.06) translateY(-8px) !important;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 26px !important; color: #ffffff !important;
  letter-spacing: 2px !important; line-height: 1 !important;
  padding: 18px 20px 6px !important; margin: 0 !important;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Price */
.woocommerce ul.products li.product .price {
  font-family: 'Bebas Neue', sans-serif !important;
  font-size: 28px !important; color: #f5c518 !important;
  padding: 0 20px 8px !important; display: block !important; margin: 0 !important;
}
.woocommerce ul.products li.product .price del { color: rgba(255,255,255,0.25) !important; font-size: 17px !important; }
.woocommerce ul.products li.product .price ins { text-decoration: none !important; }

/* Star rating */
.woocommerce .star-rating { color: #f5c518 !important; padding: 0 20px 8px !important; }

/* Short description */
.woocommerce ul.products li.product p {
  font-family: 'Barlow', sans-serif !important;
  font-size: 13px !important; color: rgba(255,255,255,0.4) !important;
  line-height: 1.6 !important; padding: 0 20px 10px !important; margin: 0 !important;
}

/* Add to Cart button */
.woocommerce ul.products li.product .button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product a.button {
  display: block !important;
  width: calc(100% - 40px) !important;
  margin: 4px 20px 14px !important;
  background: #f5c518 !important; color: #04050f !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 12px !important; font-weight: 800 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  padding: 13px 20px !important; text-align: center !important;
  text-decoration: none !important; border: none !important; border-radius: 0 !important;
  clip-path: polygon(0 0,calc(100% - 8px) 0,100% 8px,100% 100%,8px 100%,0 calc(100% - 8px)) !important;
  transition: all 0.3s !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover,
.woocommerce ul.products li.product a.button:hover {
  background: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 24px rgba(245,197,24,0.3) !important;
}

/* Added to cart link */
.woocommerce ul.products li.product .added_to_cart {
  display: block !important;
  width: calc(100% - 40px) !important;
  margin: 0 20px 14px !important;
  background: rgba(0,187,68,0.12) !important;
  color: #00cc55 !important;
  border: 1px solid rgba(0,187,68,0.25) !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 11px !important; font-weight: 700 !important;
  letter-spacing: 2px !important; text-transform: uppercase !important;
  padding: 10px 20px !important; text-align: center !important;
  text-decoration: none !important; border-radius: 0 !important;
  clip-path: none !important;
}

/* Sale badge */
.woocommerce span.onsale {
  background: #e8520a !important; color: #fff !important;
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 10px !important; font-weight: 800 !important;
  letter-spacing: 1.5px !important; text-transform: uppercase !important;
  padding: 4px 10px !important; border-radius: 2px !important;
  min-height: auto !important; line-height: 1.4 !important;
  top: 14px !important; left: 14px !important; right: auto !important; margin: 0 !important;
}

/* Product card action buttons */
.bangin-card-actions {
  display: flex; gap: 6px; padding: 0 20px 18px;
}
.bangin-card-btn {
  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.4); padding: 8px 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 10px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  transition: all 0.2s; border-radius: 2px; text-decoration: none;
}
.bangin-card-btn:hover { border-color: rgba(245,197,24,0.3); color: #f5c518; }
.bangin-card-btn.wishlisted { border-color: #e8520a; color: #e8520a; }

/* ============================================================
   CART TOAST NOTIFICATION
   ============================================================ */
.bangin-toast {
  position: fixed; bottom: 90px; right: 28px; z-index: 999999;
  background: #080b1a; border: 1px solid rgba(245,197,24,0.25);
  border-left: 3px solid #f5c518;
  padding: 14px 20px; max-width: 300px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 13px; font-weight: 600; letter-spacing: 1px; color: #ffffff;
  transform: translateX(120%);
  transition: transform 0.4s cubic-bezier(0.175,0.885,0.32,1.275);
  display: flex; align-items: center; gap: 10px;
}
.bangin-toast.show { transform: translateX(0); }
.bangin-toast-icon { color: #f5c518; font-size: 16px; flex-shrink: 0; }
.bangin-toast-msg { flex: 1; }
.bangin-toast-link {
  display: block; margin-top: 4px;
  color: #f5c518; font-size: 11px;
  letter-spacing: 1.5px; text-decoration: none; text-transform: uppercase;
}
.bangin-toast-link:hover { color: #ffffff; }

/* ============================================================
   FLOATING CART FAB
   ============================================================ */
.fab-wrap {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 9998; 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: #f5c518; color: #04050f; }
.fab-wish { background: rgba(255,255,255,0.08); border: 1.5px solid rgba(255,255,255,0.2); color: #fff; }
.fab:hover { transform: scale(1.1); }
.fab-dot {
  position: absolute; top: -3px; right: -3px;
  width: 15px; height: 15px; border-radius: 50%;
  background: #e8520a; color: #fff;
  font-size: 8px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
}

/* ============================================================
   SMART SLIDER OVERRIDES
   ============================================================ */
.n2-ss-slider-wrapper,
.n2-ss-slider,
.n2-ss-slide,
.n2-section-smartslider,
.n2-ss-slider-1,
.n2-ss-slider-2,
.n2-ss-slide-background {
  min-height: 100vh !important; height: 100vh !important;
}
.n2-ss-slider-wrapper { display: block !important; margin: 0 !important; padding: 0 !important; }
.elementor-widget-smartslider,
.n2-ss-widget-wrapper { display: block !important; line-height: 0 !important; font-size: 0 !important; margin: 0 !important; padding: 0 !important; }
.n2-ss-dots { bottom: 70px !important; z-index: 4 !important; }
.n2-ss-dots .n2-bullet { background: rgba(255,255,255,0.2) !important; border: none !important; border-radius: 4px !important; width: 8px !important; height: 8px !important; margin: 0 4px !important; }
.n2-ss-dots .n2-bullet-active { background: #f5c518 !important; width: 28px !important; border-radius: 4px !important; }

/* ============================================================
   WOOCOMMERCE CART & CHECKOUT
   ============================================================ */
.woocommerce table.shop_table { border: 1px solid rgba(255,255,255,0.08) !important; background: rgba(255,255,255,0.02) !important; }
.woocommerce table.shop_table th { font-family: 'Barlow Condensed', sans-serif !important; font-size: 11px !important; font-weight: 700 !important; letter-spacing: 2px !important; text-transform: uppercase !important; color: rgba(255,255,255,0.5) !important; background: rgba(255,255,255,0.03) !important; border-color: rgba(255,255,255,0.08) !important; }
.woocommerce table.shop_table td { border-color: rgba(255,255,255,0.06) !important; color: #fff !important; }
.woocommerce .checkout-button,
.woocommerce #payment #place_order,
.woocommerce .button.alt { background: #f5c518 !important; color: #04050f !important; font-family: 'Barlow Condensed', sans-serif !important; font-weight: 800 !important; letter-spacing: 2px !important; text-transform: uppercase !important; border: none !important; transition: all 0.3s !important; }
.woocommerce .checkout-button:hover,
.woocommerce #payment #place_order:hover,
.woocommerce .button.alt:hover { background: #fff !important; transform: translateY(-2px) !important; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr !important; }
  .hero-right-panel { display: none !important; }
  .wib-inner, .challenges-inner { grid-template-columns: 1fr !important; }
  .wib-left::after, .challenges-left::before { display: none !important; }
}
@media (max-width: 900px) {
  .bng-hdr-inner { grid-template-columns: auto 1fr auto; padding: 0 24px; }
  .bng-hdr-nav { display: none; }
  .bng-burger { display: flex; }
  .bng-hdr-soc, .bng-hdr-sep { display: none; }
  .woocommerce ul.products { grid-template-columns: repeat(2,1fr) !important; }
  .bng-ftr-grid { grid-template-columns: 1fr 1fr; gap: 40px; padding: 50px 30px 30px; }
  .bangin-card-actions { display: none; }
}
@media (max-width: 600px) {
  .woocommerce ul.products { grid-template-columns: 1fr !important; }
  .bng-ftr-grid { grid-template-columns: 1fr; padding: 40px 24px 24px; }
  .bng-ftr-bottom { flex-direction: column; gap: 8px; padding: 16px 24px; text-align: center; }
  .fab-wrap { bottom: 16px; right: 16px; }
  .bangin-toast { right: 16px; max-width: calc(100vw - 32px); }
}
