:root {
  --brand-1: #E31E24; /* Red */
  --brand-2: #F7941D; /* Orange */
  --brand-3: #FFF200; /* Yellow */
  --brand-4: #00A651; /* Green */
  --brand-5: #2E3192; /* Blue */
  --brand-6: #662D91; /* Purple */
  --hot-pink: var(--brand-1);
  --electric-yellow: var(--brand-3);
  --lime: var(--brand-4);
  --sky: #00d4ff;
  --dark: #0a0a0a;
  --cream: #f4f4f4;
  --purple: var(--brand-6);
  --glass: rgba(255, 255, 255, 0.05);
}

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

body {
  background: var(--dark);
  color: var(--cream);
  font-family: "Space Mono", monospace;
  overflow-x: hidden;
  cursor: none;
}

/* Custom Cursor */
.cursor {
  position: fixed;
  width: 20px;
  height: 20px;
  background: var(--brand-2);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease, width 0.2s, height 0.2s;
  mix-blend-mode: difference;
  display: none;
}
.cursor.visible {
  display: block;
}
.cursor.big {
  width: 60px;
  height: 60px;
}

.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

/* Ticker */
.ticker {
  background: #000;
  overflow: hidden;
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.ticker-inner {
  display: inline-flex;
  align-items: center;
  animation: ticker 25s linear infinite;
}
.ticker-word {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.15em;
  padding: 12px 0;
  white-space: nowrap;
}
.ticker-word.brand-color-1 { color: var(--brand-1); padding-right: 30px; }
.ticker-word.brand-color-2 { color: var(--brand-2); padding-right: 30px; }
.ticker-word.brand-color-3 { color: var(--brand-3); padding-right: 30px; }
.ticker-word.brand-color-4 { color: var(--brand-4); padding-right: 30px; }
.ticker-word.brand-color-5 { color: var(--brand-5); padding-right: 30px; }
.ticker-word.brand-color-6 { color: var(--brand-6); padding-right: 30px; }

.ticker-sep {
  color: var(--brand-3);
  font-size: 1.2rem;
  padding: 0 20px 0 0;
  opacity: 0.6;
}
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Navigation */
nav {
  padding: 10px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 10;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(10px);
}
.brand-nav-logo {
  display: block;
  text-decoration: none;
}
.brand-logo-img {
  height: 120px !important;
  width: auto;
  filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.2));
  transition: transform 0.3s ease;
  display: block;
}
.brand-nav-logo:hover .brand-logo-img {
  transform: scale(1.05);
}
.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  color: var(--cream);
  text-decoration: none;
  transition: color 0.3s, transform 0.3s;
}
.nav-links a:hover {
  color: var(--brand-2);
  transform: translateY(-2px);
}
.nav-links .cart-link {
  background: var(--brand-1);
  color: white;
  padding: 10px 25px;
  border-radius: 5px;
  font-size: 1.1rem;
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.3);
}
.nav-links .cart-link:hover {
  background: var(--brand-2);
  color: white;
  box-shadow: 0 4px 20px rgba(247, 148, 29, 0.4);
}

.nav-links .nav-secondary-link {
  background: transparent;
  color: var(--cream);
  padding: 8px 23px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  font-size: 1.1rem;
}
.nav-links .nav-secondary-link:hover {
  border-color: var(--brand-2);
  color: var(--brand-2);
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 40px 60px;
  position: relative;
  overflow: hidden;
  gap: 60px;
}
.hero-blob {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
  animation: blobPulse 8s ease-in-out infinite;
}
.hero-blob2 {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 49, 146, 0.15) 0%, transparent 70%);
  bottom: -100px;
  left: 0;
  pointer-events: none;
  animation: blobPulse 10s ease-in-out infinite reverse;
}
@keyframes blobPulse {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(20px, -20px); }
}

.hero-text { position: relative; z-index: 2; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  padding: 8px 20px;
  margin-bottom: 25px;
}
.hero-eyebrow span {
  font-size: 0.8rem;
  color: var(--brand-3);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.hero-eyebrow .dot {
  width: 8px;
  height: 8px;
  background: var(--brand-2);
  border-radius: 50%;
  animation: blink 1.2s step-end infinite;
}
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }

.hero-h1 {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 10vw, 10rem);
  line-height: 0.85;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.hero-h1 .brand-color-1 { color: var(--brand-1); }
.hero-h1 .brand-color-2 { color: var(--brand-2); }

.hero-sub {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 450px;
  margin: 20px 0 30px;
}

.hero-pills { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.hero-pill {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  padding: 10px 22px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: transparent;
}
.hero-pill:hover { 
  border-color: var(--brand-1); 
  color: var(--cream);
}
.hero-pill.active { 
  background: var(--brand-1); 
  border-color: var(--brand-1); 
  color: white; 
  box-shadow: 0 4px 15px rgba(227, 30, 36, 0.2);
}

.hero-btns { display: flex; gap: 20px; margin-bottom: 40px; }
.btn-hero-primary {
  background: var(--brand-1);
  color: white;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.3);
}
.btn-hero-primary:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(227, 30, 36, 0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: var(--cream);
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  padding: 15px 40px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-hero-secondary:hover { border-color: var(--brand-2); color: var(--brand-2); }

.hero-mini-stats { display: flex; gap: 15px; flex-wrap: wrap; }
.hms-chip {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 10px 18px;
  display: flex;
  align-items: center;
}
.hms-val { font-family: "Bebas Neue", sans-serif; font-size: 1.3rem; color: var(--brand-4); line-height: 1; }
.hms-lbl { font-size: 0.7rem; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; margin-top: 2px; }

/* ================================================
   HERO CAROUSEL  —  faithful template port
   Template: codocular.com/lab/swiper-carousel
   Adapted for Printstar dark theme
================================================ */

/* Container: fills the right hero column */
.hero-carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* Carousel wrap: template uses flex-grow + overflow:hidden + centred */
.co-carousel-wrap {
  flex-grow: 1;
  position: relative;
  z-index: 9;
  overflow: visible;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 520px;
}

/* Swiper: 80% of the column, fixed height — matches template's 50%-of-page width */
.co-carousel {
  width: 80%;
  height: 420px;
  overflow: visible;   /* lets the floating image overflow card top */
}

.co-carousel__slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── NAV BUTTONS — match template's line + sliding text style ── */
.co-carousel__nav-buttons {
  margin-top: 32px;
  width: 80%;         /* match .co-carousel width */
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.co-autoplay-bar {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.2);
  border-radius: 1px;
  overflow: hidden;
}
.co-autoplay-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-2));
  width: 0%;
  transition: width 0.1s linear;
}

.co-carousel__nav-button {
  padding: 10px 0;
  width: 100px;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  font-family: "Bebas Neue", sans-serif;
}

/* Line above the text — the template's signature detail */
.co-carousel__nav-button::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: var(--brand-1);
  transition: transform 0.3s ease;
}
.co-carousel__nav-button:hover::before {
  transform: scaleX(1.15);
  background-color: var(--brand-2);
}

.co-carousel__nav-button.prev { align-items: flex-end; }
.co-carousel__nav-button.next { align-items: flex-start; }
.co-carousel__nav-button.swiper-button-disabled { opacity: 0.3; }

.co-carousel__nav-button span {
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 8px 0;
  color: rgba(255,255,255,0.85);
  transition: transform 0.3s cubic-bezier(0.22, 0.74, 0.46, 0.97);
}
.co-carousel__nav-button.prev:hover span { transform: translate3d(-8px, 0, 0); }
.co-carousel__nav-button.next:hover span { transform: translate3d(8px,  0, 0); }

/* ── CARD — template structure adapted for dark theme ── */
.co-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  width: 260px;
  border-radius: 20px;
  /* Default: warm dark gradient (T-Shirt / Apparel) */
  background: linear-gradient(163deg, rgba(60,20,10,1) 0%, rgba(40,12,5,1) 100%);
  box-shadow: 0 4px 30px rgba(0,0,0,0.6);
  overflow: visible;   /* allow shoe to overflow top */
}

/* Dark-theme card colour variants */
.co-card--style-1 {
  /* Magenta / Hoodie */
  background: linear-gradient(163deg, rgba(50,5,50,1) 0%, rgba(30,5,35,1) 100%);
  box-shadow: 0 4px 30px rgba(255,0,242,0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.co-card--style-2 {
  /* Cyan / Cap */
  background: linear-gradient(163deg, rgba(5,35,50,1) 0%, rgba(3,20,30,1) 100%);
  box-shadow: 0 4px 30px rgba(0,249,255,0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.co-card--style-3 {
  /* Lime / Promo */
  background: linear-gradient(163deg, rgba(20,35,5,1) 0%, rgba(12,22,3,1) 100%);
  box-shadow: 0 4px 30px rgba(176,255,0,0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.co-card--style-4 {
  /* Blue / Long Sleeve */
  background: linear-gradient(163deg, rgba(5,15,60,1) 0%, rgba(3,8,40,1) 100%);
  box-shadow: 0 4px 30px rgba(0,102,255,0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.co-card--style-5 {
  /* Green / Banner */
  background: linear-gradient(163deg, rgba(5,60,15,1) 0%, rgba(3,40,8,1) 100%);
  box-shadow: 0 4px 30px rgba(0,255,102,0.15), 0 20px 50px rgba(0,0,0,0.6);
}
.co-card--style-6 {
  /* Yellow/Orange / Retractable */
  background: linear-gradient(163deg, rgba(60,40,5,1) 0%, rgba(40,25,3,1) 100%);
  box-shadow: 0 4px 30px rgba(255,204,0,0.15), 0 20px 50px rgba(0,0,0,0.6);
}

/* ── FLOATING IMAGE AREA — massive and centered mathematically ── */
.co-card__shoe {
  position: absolute;
  width: 170%;         /* heavily expanded wrapper for massive image size */
  left: -35%;          /* (170 - 100) / 2 = exactly 35% offset to lock dead center */
  height: 360px;       /* much taller vertical space */
  top: -40px;          /* shift slightly upwards into the safe zone */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
}

.co-card__shoe-img {
  user-select: none;
  position: relative;
  width: 100%;         /* image fills the huge 170% mathematically centered wrapper */
  height: 100%;
  object-fit: contain; /* ensures image aspect ratio is kept and fully visible */
  display: block;
  z-index: 9;
  filter: contrast(1.05) saturate(1.2);
}

.co-card__shoe-shadow {
  position: absolute;
  top: 80px;
  left: 0; right: 0;
  margin: 0 auto;
  display: block;
  border-radius: 50%;
  width: 20px; height: 20px;
  opacity: 0.4;
  background-color: rgba(0,0,0,1);
  box-shadow: 0 0 40px 50px rgba(0,0,0,0.8);
}

/* ── INFO AREA — clean separate box at bottom ── */
.co-card__info {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 15px 20px;
  background: rgba(10, 10, 10, 0.95); /* Solid clear block to ensure text is fully readable */
  border-radius: 0 0 20px 20px;
  z-index: 10;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.co-card__collection {
  font-weight: 700;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  opacity: 0.6;
  color: #fff;
  margin-bottom: 4px;
}

.co-card__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  line-height: 1;
  letter-spacing: 0.05em;
}

.co-card__price {
  margin-top: 8px;
  font-family: "Space Mono", monospace;
  font-size: 1rem;
  color: var(--brand-2);
  font-weight: 700;
}

.text-mask { overflow: hidden; }
.text-mask span { display: inline-flex; }

/* ── BACKGROUND COLOUR SHIFTS — fixed to hero container ── */
.co-background {
  top: 0; left: 0;
  position: absolute;
  width: 100%; height: 100%;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.8s ease;
}
/* Style 0 = T-Shirt (warm red) */
.co-background--style-0 { background: radial-gradient(circle at 60% 40%, rgba(227,30,36,0.18) 0%, transparent 65%); }
/* Style 1 = Hoodie (magenta) */
.co-background--style-1 { background: radial-gradient(circle at 60% 40%, rgba(255,0,242,0.15) 0%, transparent 65%); }
/* Style 2 = Cap (cyan) */
.co-background--style-2 { background: radial-gradient(circle at 60% 40%, rgba(0,249,255,0.15) 0%, transparent 65%); }
/* Style 3 = Promo (lime) */
.co-background--style-3 { background: radial-gradient(circle at 60% 40%, rgba(176,255,0,0.12) 0%, transparent 65%); }
/* Style 4 = Long Sleeve (blue) */
.co-background--style-4 { background: radial-gradient(circle at 60% 40%, rgba(0,102,255,0.12) 0%, transparent 65%); }
/* Style 5 = Banner (green) */
.co-background--style-5 { background: radial-gradient(circle at 60% 40%, rgba(0,255,102,0.1) 0%, transparent 65%); }
/* Style 6 = Retractable (yellow) */
.co-background--style-6 { background: radial-gradient(circle at 60% 40%, rgba(255,204,0,0.1) 0%, transparent 65%); }

/* Stats Strip */
.stats-strip {
  display: flex;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.02);
}
.stat {
  flex: 1;
  text-align: center;
  padding: 30px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child { border-right: none; }
.stat-num { font-family: "Bebas Neue", sans-serif; font-size: 3rem; color: var(--brand-1); }
.stat-label { font-size: 0.8rem; color: rgba(255, 255, 255, 0.4); text-transform: uppercase; margin-top: 5px; }

/* Slider Section */
.slider-section { padding: 100px 0; }
.section-header {
  padding: 0 60px;
  margin-bottom: 60px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
}
.section-header h2 { font-family: "Bebas Neue", sans-serif; font-size: clamp(4rem, 8vw, 7rem); line-height: 0.9; }
.section-header h2 em { font-style: normal; color: var(--brand-2); }
.section-header p { font-size: 1rem; color: rgba(255, 255, 255, 0.5); max-width: 400px; line-height: 1.6; }

.slider-viewport { overflow: hidden; padding: 40px 0; }
.slider-track {
  display: flex;
  gap: 30px;
  padding: 0 60px;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.shake-card {
  min-width: 320px;
  height: 480px;
  background: #151515;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s;
  cursor: none;
}
.shake-card:hover {
  transform: translateY(-15px);
  border-color: var(--brand-1);
}
.card-img {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: auto;
  filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
  transition: transform 0.4s ease;
}
.shake-card:hover .card-img { transform: translateX(-50%) translateY(-10px) scale(1.05); }

.card-chip {
  position: absolute;
  top: 25px;
  right: 25px;
  font-size: 0.7rem;
  padding: 5px 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  color: var(--brand-3);
}

.card-name { font-family: "Bebas Neue", sans-serif; font-size: 2.8rem; color: var(--cream); margin-bottom: 5px; }
.card-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.4); line-height: 1.5; margin-bottom: 25px; }
.card-footer { display: flex; justify-content: space-between; align-items: center; }
.card-price { font-family: "Bebas Neue", sans-serif; font-size: 1.8rem; color: var(--brand-2); }
.card-btn {
  background: var(--brand-1);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 5px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.1rem;
  transition: background 0.3s;
  cursor: none;
}
.card-btn:hover { background: var(--brand-2); }

.slider-controls { padding: 0 60px; display: flex; align-items: center; gap: 20px; margin-top: 30px; }
.ctrl-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: var(--cream);
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  cursor: none;
}
.ctrl-btn:hover { background: var(--brand-1); border-color: var(--brand-1); transform: scale(1.1); }
.slider-dots { display: flex; gap: 10px; }
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transition: all 0.3s;
}
.slider-dot.active { width: 30px; border-radius: 10px; background: var(--brand-1); }

/* Grid / Quality Section */
.ingredients-section { padding: 100px 60px; background: #080808; }
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  margin-top: 60px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}
.ing-card {
  background: var(--dark);
  padding: 60px 40px;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
  cursor: none;
}
.ing-card:hover { background: #111; }
.ing-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--brand-1);
  transition: width 0.4s;
}
.ing-card:hover::after { width: 100%; }

.ing-img-wrap { margin-bottom: 30px; opacity: 0.8; transition: transform 0.4s; }
.ing-card:hover .ing-img-wrap { transform: scale(1.1) rotate(5deg); opacity: 1; }
.ing-num { font-family: "Space Mono", monospace; font-size: 0.9rem; color: rgba(255, 255, 255, 0.2); margin-bottom: 10px; }
.ing-name { font-family: "Bebas Neue", sans-serif; font-size: 2.2rem; color: var(--cream); margin-bottom: 15px; }
.ing-desc { font-size: 0.9rem; color: rgba(255, 255, 255, 0.4); line-height: 1.6; }

/* Newsletter */
.newsletter { padding: 60px; }
.newsletter-inner {
  background: linear-gradient(135deg, var(--brand-1) 0%, #a01519 100%);
  border-radius: 30px;
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}
.nl-left h2 { font-family: "Bebas Neue", sans-serif; font-size: 5rem; line-height: 0.9; color: white; margin-bottom: 30px; }
.nl-tag { background: rgba(0, 0, 0, 0.2); padding: 5px 15px; border-radius: 100px; font-size: 0.8rem; text-transform: uppercase; margin-bottom: 20px; display: inline-block; }
.nl-avatars { display: flex; margin-bottom: 15px; }
.nl-avatar { width: 40px; height: 40px; border-radius: 50%; border: 3px solid white; display: flex; align-items: center; justify-content: center; font-weight: bold; background: #333; margin-left: -10px; }
.nl-avatar:first-child { margin-left: 0; }
.av1 { background: var(--brand-2); }
.av2 { background: var(--brand-4); }
.av3 { background: var(--brand-5); }
.av4 { background: var(--brand-6); }
.nl-proof-text { font-size: 0.9rem; opacity: 0.9; }

.nl-perks { display: flex; flex-direction: column; gap: 15px; margin-bottom: 30px; }
.nl-perk { display: flex; align-items: center; gap: 15px; }
.nl-perk-icon { width: 40px; height: 40px; background: rgba(255, 255, 255, 0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.nl-form { display: flex; gap: 15px; }
.nl-input { flex: 1; padding: 18px 25px; border-radius: 5px; border: none; background: rgba(255, 255, 255, 0.15); color: white; border: 1px solid rgba(255, 255, 255, 0.2); }
.nl-input::placeholder { color: rgba(255, 255, 255, 0.5); }
.nl-btn { padding: 18px 35px; border-radius: 5px; border: none; background: white; color: var(--brand-1); font-family: "Bebas Neue", sans-serif; font-size: 1.2rem; cursor: none; transition: transform 0.3s; }
.nl-btn:hover { transform: scale(1.05); }

/* Footer */
footer { padding: 80px 60px 40px; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 40px; }
.footer-logo-link { display: block; text-decoration: none; }
.brand-footer-logo { height: 160px; width: auto; display: block; filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.1)); transition: transform 0.3s ease; }
.footer-logo-link:hover .brand-footer-logo { transform: scale(1.05); }
.footer-dev-label { display: block; font-size: 0.7rem; color: rgba(255, 255, 255, 0.3); text-transform: uppercase; margin-top: 5px; letter-spacing: 2px; }
.footer-links { display: flex; gap: 30px; }
.footer-links a { text-decoration: none; color: rgba(255, 255, 255, 0.4); font-size: 0.8rem; text-transform: uppercase; transition: color 0.3s; }
.footer-links a:hover { color: white; }
.footer-contact { display: flex; flex-direction: column; gap: 15px; align-items: flex-end; }
.footer-contact-btn { background: rgba(255, 255, 255, 0.05); padding: 12px 30px; border-radius: 5px; color: white; text-decoration: none; font-family: "Bebas Neue", sans-serif; font-size: 1.1rem; border: 1px solid rgba(255, 255, 255, 0.1); transition: all 0.3s; cursor: none; text-align: center;}
.footer-contact-btn:hover { background: var(--brand-1); border-color: var(--brand-1); transform: translateY(-3px); }
.footer-contact-info { text-align: right; color: rgba(255, 255, 255, 0.4); font-size: 0.85rem; line-height: 1.6; }
.footer-contact-info p { margin: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .hero { grid-template-columns: 1fr; padding: 40px 20px; text-align: center; }
  .hero-eyebrow { margin: 0 auto 20px; }
  .hero-h1 { font-size: clamp(4rem, 15vw, 8rem); }
  .hero-sub { margin: 20px auto 30px; }
  .hero-pills { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-mini-stats { justify-content: center; }
  .hero-img-wrap { margin-top: 40px; }
  .hero-img-ring { width: 350px; height: 350px; }
  .hero-badge { right: calc(50% - 175px); }
  
  .ingredients-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-inner { grid-template-columns: 1fr; padding: 40px; }
  nav { padding: 20px; }
}

@media (max-width: 800px) {
  nav { padding: 10px 20px; }
  .nav-links { gap: 10px; }
  .nav-links li:not(:nth-last-child(-n+2)) { display: none; }
  .brand-logo-img { height: 60px !important; }
  
  .nav-links a { font-size: 0.9rem; padding: 8px 12px; }
  
  /* Make Get a Quote prominent on mobile */
  #quoteLink {
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
  }
  
  .nav-links .cart-link {
    padding: 8px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 600px) {
  .stat { flex: none; width: 50%; border-bottom: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:nth-child(even) { border-right: none; }
  .stats-strip { flex-wrap: wrap; }
  .ingredients-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .nl-form { flex-direction: column; }
}
/* Modal Overlay */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(15px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 20px;
}
.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Quote Modal */
.quote-modal {
  background: linear-gradient(135deg, rgba(25, 25, 25, 0.95) 0%, rgba(10, 10, 10, 0.98) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  width: 100%;
  max-width: 600px;
  padding: 50px;
  position: relative;
  transform: translateY(40px) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  overflow: hidden;
}
.modal-overlay.active .quote-modal {
  transform: translateY(0) scale(1);
}

.modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: none;
  transition: all 0.3s;
  z-index: 10;
}
.modal-close:hover {
  background: var(--brand-1);
  border-color: var(--brand-1);
  transform: rotate(90deg);
}

.modal-header {
  margin-bottom: 35px;
  text-align: center;
}
.modal-header h2 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 10px;
}
.modal-header h2 em {
  font-style: normal;
  color: var(--brand-1);
}
.modal-header p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Form Styles */
.quote-form {
  display: grid;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
}
.form-group input,
.form-group textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 15px;
  color: white;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--brand-1);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 15px rgba(227, 30, 36, 0.1);
}
.form-group textarea {
  resize: none;
}

.submit-btn {
  background: var(--brand-1);
  color: white;
  border: none;
  padding: 18px;
  border-radius: 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  margin-top: 10px;
  transition: all 0.3s;
  cursor: none;
  box-shadow: 0 10px 20px rgba(227, 30, 36, 0.2);
}
.submit-btn:hover {
  background: #c21a1f;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(227, 30, 36, 0.3);
}

/* Success State */
.form-success {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 50px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s;
  z-index: 5;
}
.form-success.active {
  opacity: 1;
  pointer-events: all;
}
.form-success i {
  font-size: 4rem;
  color: var(--brand-4);
  margin-bottom: 25px;
  animation: scaleUp 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes scaleUp {
  0% { transform: scale(0); }
  100% { transform: scale(1); }
}
.form-success h3 {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.5rem;
  margin-bottom: 10px;
}
.form-success p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 30px;
}

@media (max-width: 600px) {
  .quote-modal {
    padding: 30px 20px;
  }
  .modal-header h2 {
    font-size: 2.5rem;
  }
}
