/** Shopify CDN: Minification failed

Line 6:0 Unexpected "<"

**/
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&family=Inter:wght@500;700;900&display=swap" rel="stylesheet">

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  overflow-x: clip;
}

/* ================================
   FONTS & VARIABLES
   ================================ */

@font-face {
  font-family: 'DIN Condensed';
  src: url('din_condensed_bold-webfont.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange-primary: #ff6e04;
  --red-primary: #dc200d;
  --red-bright: #f20909;
  --blue-dark: #0f0f23;
  --blue-dark-2: #1a1a2e;
  --blue-dark-3: #16213e;
  --white: #ffffff;
  --black: #000000;
  --gray-light: #f5f5f5;
  --gray-medium: #666666;
  
  --font-body: 'Montserrat', sans-serif;
  --font-heading: 'Arial Narrow', sans-serif;
  --font-brand: 'DIN Condensed', 'Arial Narrow', sans-serif;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
}

.flex {
  display: flex;
}

/* ================================
   PROGRESS INDICATORS
   ================================ */

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 9999;
}

.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  width: 0%;
  transition: width 0.3s ease;
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
}

.section-nav {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.nav-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.nav-dot.active {
  background: linear-gradient(45deg, #ff6e04, #dc200d);
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.6);
}

.nav-dot:hover {
  background: rgba(255, 107, 53, 0.7);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .section-nav {
    display: none !important;
  }
}

/* ================================
   LOADING OVERLAY STYLES
   ================================ */

.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 1;
  transition: opacity 0.8s ease-out;
}

.loading-overlay.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading-content {
  text-align: center;
  color: white;
}

.loading-logo {
  margin-bottom: 30px;
  animation: logoFloat 2s ease-in-out infinite;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loading-logo img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

.loading-text h2 {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 2.5rem;
  font-weight: bold;
  text-transform: uppercase;
  color: #ff6e04;
  margin: 0 0 20px 0;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  -webkit-text-stroke: 1px #dc200d;
  animation: textGlow 2s ease-in-out infinite alternate;
}

.loading-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(255, 107, 53, 0.3);
  border-top: 3px solid #ff6e04;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes textGlow {
  0% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7); }
  100% { text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7), 0 0 20px rgba(255, 107, 53, 0.5); }
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ================================
   ANNOUNCEMENT BAR - MINIMALIST STRIP
   ================================ */

.announcement-bar {
  background: linear-gradient(90deg, #dc200d, #ff6e04, #dc200d);
  color: #FFFFFF;
  padding: 10px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.3px;
  z-index: 1001;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
  z-index: 1;
}

.announcement-socials {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 2;
}

.announcement-socials .bre-social {
  width: 16px;
  height: 16px;
  color: #FFFFFF;
  display: inline-flex;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.announcement-socials .bre-social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.announcement-socials .bre-social:hover {
  opacity: 0.8;
  transform: translateY(-1px);
}

.announcement-link {
  color: #FFFFFF;
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.25s ease;
  margin-left: 4px;
}

.announcement-link:hover {
  opacity: 0.85;
}

.announcement-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: #FFFFFF;
  font-size: 18px;
  cursor: pointer;
  padding: 4px 8px;
  transition: opacity 0.25s ease;
  z-index: 2;
}

.announcement-close:hover {
  opacity: 0.75;
}

.announcement-bar.hidden {
  display: none;
}

/* ================================
   HEADER / NAVIGATION - GLASSMORPHIC DARK BLUE NAVBAR
   ================================ */

.site-header,
.site-header.scrolled {
  background: #080814;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.header-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: padding 0.3s ease;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.site-logo {
  height: 64px;
  width: auto;
  transition: all 0.3s ease;
}

.site-header.scrolled .header-container {
  padding-top: 10px;
  padding-bottom: 10px;
}

.site-header.scrolled .site-logo {
  height: 56px;
}

.site-logo:hover {
  transform: scale(1.02);
}

.main-nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.25s ease;
  position: relative;
  padding: 6px 0;
}

.nav-link:hover {
  color: #FFFFFF;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, #FF6E04, #FF8A2D);
  transition: width 0.25s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  width: 22px;
  height: 22px;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.header-icon svg {
  width: 100%;
  height: 100%;
}

.header-icon:hover {
  color: #FF8A2D;
  transform: translateY(-1px);
}

.cart-icon-wrapper {
  position: relative;
}

.cart-count {
  position: absolute;
  top: -7px;
  right: -9px;
  background: linear-gradient(135deg, #FF6E04, #DC200D);
  color: #FFFFFF;
  font-size: 10px;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.header-cta {
  background: linear-gradient(90deg, #DC200D 0%, #FF6E04 50%, #DC200D 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 99px;
  font-family: 'DIN Condensed', 'Inter', system-ui, sans-serif;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 24px;
  box-shadow: 0 0 18px rgba(255, 110, 4, 0.45), 0 4px 14px rgba(0, 0, 0, 0.4);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.header-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  animation: headerShimmer 3s ease-in-out infinite;
}

@keyframes headerShimmer {
  0% { left: -100%; }
  40%, 100% { left: 160%; }
}

.header-cta:hover {
  background-position: right center;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.75), 0 6px 18px rgba(0, 0, 0, 0.5);
  border-color: #FFFFFF;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  cursor: pointer;
  padding: 0 !important;
  margin: 0 !important;
  align-items: center !important;
  justify-content: center !important;
  color: #FFFFFF;
  z-index: 1002;
  transition: all 0.25s ease;
  width: 42px !important;
  height: 42px !important;
  box-sizing: border-box !important;
}

.mobile-menu-toggle svg {
  width: 22px !important;
  height: 22px !important;
  stroke: #FFFFFF;
  display: block !important;
  margin: 0 auto !important;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
  background: rgba(255, 110, 4, 0.25);
  border-color: rgba(255, 110, 4, 0.5);
}

/* Mobile Navigation Drawer */
.mobile-nav {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: rgba(8, 12, 26, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8);
  z-index: 999;
  padding: 0 20px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, padding 0.35s ease;
}

.mobile-nav.active {
  max-height: 420px;
  opacity: 1;
  pointer-events: auto;
  padding: 20px 20px 24px;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.mobile-nav-links .nav-link {
  font-size: 16px;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* ================================
   HERO SECTION - LUXURY DARK ENERGY ATMOSPHERE
   ================================ */

.low-energy-hero {
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  margin-top: -93px;
  background-color: #03050c;
  background-image: url('/cdn/shop/files/newspotlight.png?v=1769654169');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 160px 20px 70px;
  z-index: 2;
}

/* Dedicated Dark Overlay Layer */
.hero-dark-overlay {
  position: absolute;
  inset: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 5, 14, 0.22);
  pointer-events: none;
  z-index: 2;
}

.hero-starfield-mobile {
  display: none;
}

/* Ambient Backlight Effects */
.hero-ambient-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 110, 4, 0.15) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
  z-index: 2;
}

.hero-spotlight-aura {
  position: absolute;
  top: 120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 157, 66, 0.18) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
}

/* Eyebrow Pill Tag */
.hero-eyebrow {
  background: rgba(14, 18, 33, 0.82);
  border: 1px solid rgba(255, 110, 4, 0.4);
  backdrop-filter: blur(10px);
  padding: 8px 22px;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 110, 4, 0.15);
}

.eyebrow-stars {
  color: #FF9D42;
  font-size: 11px;
  letter-spacing: 2px;
}

.eyebrow-stars--tri {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  gap: 3px;
  color: #FF9D42;
  flex-shrink: 0;
}

.eyebrow-stars--tri .star-row-top {
  display: flex;
  gap: 6px;
  font-size: 10px;
  line-height: 1;
  letter-spacing: normal;
}

.eyebrow-stars--tri .star-row-bottom {
  display: flex;
  justify-content: center;
  font-size: 10px;
  line-height: 1;
  letter-spacing: normal;
}

.eyebrow-text {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
}

/* Main Headline */
.hero-top-heading {
  width: fit-content;
  max-width: 1200px;
  margin: 0 auto 28px;
}

.hero-awesome {
  margin: 0;
  font-family: 'DIN Condensed', 'Impact', 'Montserrat', sans-serif;
  font-size: clamp(54px, 7.5vw, 112px);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 2px;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.hero-plain-text {
  color: rgba(255, 255, 255, 0.85);
  paint-order: stroke fill;
  -webkit-text-stroke: 1px #000000;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.85);
  display: inline;
}

/* Bright Expressive Orange-to-Red Diagonal Gradient Accent (Bottom-Left to Top-Right) */
.hero-accent-gradient {
  background: linear-gradient(45deg, #FF9000 0%, #FF6600 25%, #FF2B00 50%, #E61212 75%, #C20000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-size: inherit;
  font-weight: 900;
  letter-spacing: 0px !important;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.4px #000000;
  filter: drop-shadow(0 6px 24px rgba(0, 0, 0, 0.98)) drop-shadow(0 2px 8px rgba(0, 0, 0, 0.9)) !important;
  display: inline;
  vertical-align: baseline;
}

.hero-awesome-sub {
  margin: 12px 0 0;
  font-family: 'Georgia', 'Times New Roman', serif;
  font-style: italic;
  font-size: clamp(26px, 3vw, 46px);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

/* Central Interactive Split Layout */
.hero-split-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 28px 0 36px;
  width: 100%;
  max-width: 1300px;
}

/* Flanking Glass Cards */
.hero-card-glass {
  background: linear-gradient(145deg, rgba(16, 22, 42, 0.82), rgba(8, 12, 24, 0.94));
  border: 1.5px solid rgba(255, 110, 4, 0.4);
  border-radius: 20px;
  padding: 24px 28px;
  flex: 1;
  max-width: 320px;
  text-align: left;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(255, 110, 4, 0.15);
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}

.hero-card-glass:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 110, 4, 0.85);
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.65), 0 0 30px rgba(255, 110, 4, 0.4);
}

.card-icon {
  margin-bottom: 16px;
  background: linear-gradient(135deg, rgba(255, 110, 4, 0.2), rgba(220, 32, 13, 0.2));
  border: 1.5px solid rgba(255, 110, 4, 0.5);
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.card-icon svg {
  width: 38px;
  height: 38px;
  display: block;
}

.card-icon--lowbattery svg {
  transform: translateX(1.5px);
}

.hero-split-title {
  display: block;
  font-family: 'DIN Condensed', 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: #FFFFFF;
  letter-spacing: 0.8px;
  line-height: 1.1;
  margin-bottom: 8px;
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.6);
}

.hero-split-sub {
  display: block;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.4;
}

/* Bottle Showcase */
.hero-bottle-wrap {
  position: relative;
  z-index: 3;
  flex: 0 0 auto;
  margin: 0 12px;
}

.hero-bottle-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(255, 110, 4, 0.45) 0%, rgba(220, 32, 13, 0.25) 45%, transparent 75%);
  filter: blur(45px);
  pointer-events: none;
  z-index: -1;
  animation: bottleGlowPulse 4s ease-in-out infinite alternate;
}

@keyframes bottleGlowPulse {
  0% { opacity: 0.8; transform: translate(-50%, -50%) scale(0.95); }
  100% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-bottle img {
  height: 490px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 45px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.hero-bottle-wrap:hover .hero-bottle img {
  transform: scale(1.03);
}

/* Floating Ingredient Badges — framing outside bottle */
.ingredient-badge {
  position: absolute;
  background: rgba(14, 18, 33, 0.92);
  border: 1px solid rgba(255, 110, 4, 0.45);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 99px;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  white-space: nowrap;
  pointer-events: none;
  z-index: 6;
}

.badge-left-1 {
  top: 8%;
  left: -115px;
  animation: pillFloat 5s ease-in-out infinite;
}

.badge-right-1 {
  top: 38%;
  right: -125px;
  animation: pillFloat 5s ease-in-out 1.6s infinite;
}

.badge-left-2 {
  bottom: 15%;
  left: -105px;
  animation: pillFloat 5s ease-in-out 3.2s infinite;
}

@keyframes pillFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Punchline Heading */
.hero-heading {
  margin: 0 0 28px;
  font-family: 'DIN Condensed', 'Impact', 'Montserrat', sans-serif;
  font-size: clamp(44px, 5.8vw, 92px);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
}

.hero-bird-banner {
  padding: 2px 14px;
  position: relative;
  display: inline-block;
}

/* Action CTAs */
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.hero-cta-primary,
.hero-cta-secondary {
  height: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 99px !important;
  margin: 0 !important;
}

.hero-cta-primary {
  background: linear-gradient(90deg, #DC200D 0%, #FF6E04 50%, #DC200D 100%);
  background-size: 200% auto;
  color: #FFFFFF;
  font-family: 'DIN Condensed', 'Inter', system-ui, sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 0 42px !important;
  text-decoration: none;
  gap: 10px;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.55), 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta-primary:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 110, 4, 0.8), 0 14px 40px rgba(0, 0, 0, 0.6);
  border-color: #FFFFFF;
}

.hero-cta-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.25);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  padding: 0 36px !important;
  text-decoration: none;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* Trust Bar */
.hero-trust-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
}

.trust-check {
  color: #4ADE80;
  font-weight: bold;
}

.trust-stars {
  color: #FFB74D;
  letter-spacing: 1px;
}

.trust-stars .star-half {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
}

.trust-stars .star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #FFB74D;
}

.hero-trust-divider {
  color: rgba(255, 255, 255, 0.25);
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .hero-split-layout {
    flex-direction: column;
    gap: 20px;
  }

  .hero-card-glass {
    max-width: 95%;
    text-align: center;
  }

  .card-icon {
    margin: 0 auto 10px;
  }

  .ingredient-badge {
    display: none;
  }

  .hero-bottle img {
    height: 360px;
  }
}

@media (max-width: 768px) {
  .announcement-socials {
    display: none !important;
  }

  .announcement-bar {
    padding: 8px 36px 8px 16px;
    font-size: 12px;
    justify-content: center;
  }

  .header-container {
    padding: 10px 16px;
  }

  .site-logo {
    height: 48px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .mobile-nav {
    top: 100%;
  }

  .mobile-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-social .bre-social {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    padding: 8px;
    text-decoration: none;
  }

  .mobile-social .bre-social svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
  }

  .low-energy-hero {
    padding: 115px 16px 50px !important;
    margin-top: -85px !important;
    min-height: auto !important;
  }

  .hero-eyebrow {
    display: none !important;
  }

  .eyebrow-text {
    font-size: 10px;
    letter-spacing: 1px;
  }

  .hero-top-heading {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 2px !important;
    margin-bottom: 20px !important;
  }

  .hero-awesome {
    font-size: clamp(42px, 11.2vw, 58px) !important;
    line-height: 1 !important;
    letter-spacing: -1px !important;
    white-space: nowrap !important;
    -webkit-text-stroke: 0 !important;
    paint-order: normal !important;
    text-align: center !important;
  }

  .hero-word-orange {
    background: linear-gradient(135deg, #FFFFFF 15%, #FF9D42 60%, #FF6E04 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #FF6E04 !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
  }

  .hero-word-red {
    background: linear-gradient(135deg, #FF6B55 0%, #DC200D 100%) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: #DC200D !important;
    filter: none !important;
    -webkit-text-stroke: 0 !important;
  }

  .hero-awesome-sub {
    font-size: 28px !important;
    margin-top: 6px !important;
    color: rgba(255, 255, 255, 0.85) !important;
  }

  .hero-split-layout {
    gap: 8px !important;
    margin: 12px 0 16px !important;
    width: 100% !important;
  }

  .hero-card-glass {
    max-width: 100% !important;
    padding: 16px 20px !important;
    border-radius: 16px !important;
  }

  .card-icon {
    width: 36px;
    height: 36px;
    font-size: 18px;
    margin: 0 auto 6px;
  }

  .hero-split-title {
    font-size: 19px !important;
    line-height: 1.2 !important;
  }

  .hero-split-sub {
    font-size: 12.5px !important;
    line-height: 1.4 !important;
  }

  .hero-bottle-wrap {
    margin: 0 !important;
    padding: 0 !important;
  }

  .hero-bottle img {
    height: 410px !important;
    width: auto !important;
    max-width: 95% !important;
    margin: 0 auto !important;
    display: block !important;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.75)) drop-shadow(0 0 30px rgba(235, 242, 255, 0.45)) !important;
  }

  .hero-heading {
    font-size: clamp(34px, 8.5vw, 44px) !important;
    line-height: 1.05 !important;
    margin: 16px 0 20px !important;
    -webkit-text-stroke: 0 !important;
    paint-order: normal !important;
  }

  .hero-heading .hero-line-top,
  .hero-heading .hero-line-bottom {
    font-size: clamp(34px, 8.5vw, 44px) !important;
    line-height: 1.05 !important;
    -webkit-text-stroke: 0 !important;
  }

  .hero-actions {
    margin-bottom: 24px;
    width: 100%;
  }

  .hero-cta-primary {
    width: 100%;
    justify-content: center;
    padding: 15px 24px;
    font-size: 17px;
  }

  .hero-cta-secondary {
    width: 100%;
    text-align: center;
    padding: 14px 24px;
    font-size: 13px;
  }

  .hero-trust-bar {
    flex-direction: column;
    gap: 8px;
  }

  .hero-trust-divider {
    display: none;
  }
}

/* ================================
   SCROLL BUTTON STYLES
   ================================ */

.scroll-button {
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: inline-block;
  text-decoration: none;
  position: absolute;
  bottom: -35px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  opacity: 0;
  animation: fadeIn 0.5s ease-out 2.3s forwards, float 3s ease-in-out 2.3s infinite;
}

.scroll-button:hover {
  transform: translateX(-50%) scale(1.1);
}

.scroll-button-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #ff6e04, #dc200d);
  border: 2px solid #ffffff;
  border-radius: 40px;
  padding: 12px 24px 16px;
  box-shadow:
    0 8px 30px rgba(255, 110, 4, 0.5),
    0 0 0 3px rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.scroll-button-content::before {
  display: none;
}

.rooster-logo {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  animation: pulse 2s ease-in-out infinite;
}

.rooster-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.scroll-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-label {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 1.3rem;
  font-weight: bold;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
}

.scroll-arrow {
  font-size: 1.2rem;
  color: #ffffff;
  animation: bounce-arrow 1.5s ease-in-out infinite;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

/* ================================
   KEYFRAME ANIMATIONS
   ================================ */

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0px); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes bounce-arrow {
  0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
  40% { transform: translateY(3px); }
}

@keyframes slamDown {
  0% {
    opacity: 0;
    transform: translateY(-80px) scale(1.1);
  }
  60% {
    opacity: 1;
    transform: translateY(10px) scale(0.98);
  }
  80% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes ctaBounce {
  0%, 100% { transform: translateY(0); }
  15% { transform: translateY(-8px); }
  30% { transform: translateY(0); }
  45% { transform: translateY(-4px); }
  60% { transform: translateY(0); }
}

/* ================================
   TABLET RESPONSIVE (max-width: 991px)
   ================================ */

@media (max-width: 991px) {
  .low-energy-hero {
    height: auto;
    max-height: none;
    padding-bottom: 40px;
  }

  .hero-split-layout {
    gap: 20px;
  }

  .hero-split-text {
    font-size: 42px;
  }

  .hero-split-layout .hero-bottle img {
    height: 480px;
  }

  .hero-line-top {
    font-size: 70px;
  }

  .hero-line-bottom {
    font-size: 70px;
    margin-left: 0;
  }

  /* Top headline — tablet: shrink but keep single-line structure */
  .hero-awesome {
    font-size: 72px;
  }

  .hero-awesome-sub {
    font-size: 36px;
    padding-right: 0;
  }
}

/* ================================
   MOBILE RESPONSIVE (max-width: 768px)
   ================================ */

@media (max-width: 768px) {
  .low-energy-hero {
    height: auto;
    max-height: none;
    padding-top: 130px !important;
    padding-bottom: 36px !important;
    background: radial-gradient(ellipse 110% 75% at 50% 20%, #2a55c8 0%, #1a3a99 40%, #0b1a52 95%) !important;
  }

  .hero-top-heading {
    margin-top: 8px !important;
    margin-bottom: 24px !important;
  }

  .hero-starfield-mobile {
    display: block;
    position: absolute;
    inset: 0;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    mix-blend-mode: screen;
    opacity: 0.85;
    z-index: 1;
    pointer-events: none;
  }

  /* Mobile: lighten the dark overlay so the vibrant spotlight shows through */
  .hero-dark-overlay {
    background: rgba(3, 5, 14, 0.08) !important;
  }

  /* Mobile: replace the orange/red bottle glow with a bright spotlight glow like desktop */
  .hero-bottle-glow {
    width: 340px;
    height: 340px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.95) 0%, rgba(235, 242, 255, 0.6) 22%, rgba(190, 210, 255, 0.25) 50%, transparent 78%);
    filter: blur(30px);
  }

  .hero-heading {
    white-space: nowrap !important;
  }

  .hero-eyebrow {
    display: none !important;
  }

  .hero-line-top {
    display: inline !important;
    font-size: clamp(20px, 5.8vw, 36px) !important;
    paint-order: stroke fill;
    -webkit-text-stroke: 0.08em #000000;
  }

  .hero-line-bottom {
    display: inline !important;
    font-size: clamp(20px, 5.8vw, 36px) !important;
    margin-left: 0;
    paint-order: stroke fill;
    -webkit-text-stroke: 0.08em #000000;
  }

  /* Top headline — mobile: stack BEING A MAN IS / F*CKING AWESOME */
  .hero-top-heading {
    padding: 4px 14px 6px;
    margin-bottom: 8px;
    width: 100%;
    max-width: 100%;
  }

  .hero-awesome {
    font-size: 48px;
    white-space: normal;
    letter-spacing: 0;
  }

  .hero-awesome-line1,
  .hero-awesome-line2 {
    display: block;
  }

  .hero-awesome-gap {
    display: none;
  }

  .hero-awesome-sub {
    font-size: 24px;
    text-align: center;
    padding-right: 0;
    margin-top: 4px;
  }

  .hero-split-layout {
    flex-direction: column;
    gap: 6px;
  }

  .hero-split-left,
  .hero-split-right {
    max-width: 100%;
  }

  .hero-split-text {
    font-size: 26px;
  }

  .hero-split-layout .hero-bottle img {
    height: 320px;
  }

  .founder-strip {
    font-size: 13px;
    padding: 8px 20px;
    letter-spacing: 1px;
  }

  .hero-cta-founder {
    font-size: 18px;
    padding: 14px 36px;
  }
}

/* ================================
   SMALL MOBILE RESPONSIVE (max-width: 480px)
   ================================ */

@media (max-width: 480px) {
  .announcement-bar {
    padding: 6px 30px 6px 8px;
    font-size: 11px;
  }

  .low-energy-hero {
    height: auto;
    max-height: none;
    padding-top: 16px;
    padding-bottom: 24px !important;
  }

  .hero-bottle img {
    height: 270px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  }

  .hero-split-layout .hero-bottle img {
    height: 270px;
  }

  .hero-split-layout {
    gap: 4px;
  }

  .hero-split-text {
    font-size: 22px;
  }

  .hero-line-top,
  .hero-line-bottom {
    font-size: clamp(16px, 5.5vw, 26px) !important;
    paint-order: normal;
    -webkit-text-stroke: 0 !important;
  }

  /* Top headline — small mobile */
  .hero-top-heading {
    padding: 4px 12px 4px;
    margin-bottom: 6px;
  }

  .hero-awesome {
    font-size: 40px;
    -webkit-text-stroke: 0 !important;
  }

  .hero-awesome-sub {
    font-size: 22px;
    margin-top: 2px;
  }

  .scroll-button {
    bottom: -25px;
  }
  
  .scroll-button-content {
    padding: 10px 20px 14px;
  }
  
  .rooster-logo {
    width: 40px;
    height: 40px;
  }
  
  .rooster-logo img {
    width: 34px;
    height: 34px;
  }
  
  .scroll-label {
    font-size: 1.1rem;
  }
}


/* ================================
   FEATURES SECTION
   ================================ */

.features-section {
  background: linear-gradient(135deg, #0f0f23, #1a1a2e, #16213e);
  color: white;
  padding: 100px 0 50px 0;
  position: relative;
  z-index: 1;
  margin-top: -80px;
  padding-top: 120px;
}

.features-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 32, 13, 0.1) 0%, transparent 50%);
  z-index: 1;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.two-column-layout {
  display: flex;
  gap: 50px;
  align-items: stretch;
  min-height: 400px;
}

.column {
  flex: 1;
  padding: 40px;
  border-radius: 16px;
  position: relative;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.column--left {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.column--right {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
}

.features-heading {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  color: #FFFFFF;
  font-size: 3.2rem;
  margin-bottom: 25px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.025em;
  -webkit-text-stroke: 1px #f20709;
}

.features-heading::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #FF6B35, #dc200d);
  border-radius: 2px;
}

.features-list {
  list-style: none !important;
  padding: 0;
  margin: 0 0 30px 0;
}

.features-list li {
  color: white;
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-left: 30px;
  font-weight: 700;
}

.features-list li:before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 24px;
  height: 24px;
  background: linear-gradient(45deg, #ff6e04, #dc200d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

.column--right .features-list li:before {
  content: "★";
  background: linear-gradient(45deg, #dc200d, #ff6e04);
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.1); }
}

.features-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(90deg, var(--orange-primary), var(--red-primary));
  color: white;
  padding: 18px 45px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255, 110, 4, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 10px 0;
  position: relative;
  overflow: hidden;
}

.features-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.features-button:hover::before {
  left: 100%;
}

.features-button:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 110, 4, 0.5);
}

.features-button:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 30px rgba(255, 107, 53, 0.5);
}

/* Larger CTA variant */
.features-button--large {
  padding: 22px 56px;
  font-size: 22px;
  letter-spacing: 2px;
}

/* Subline under heading */
.features-subline {
  color: rgba(255, 255, 255, 0.8);
  font-size: 18px;
  font-style: italic;
  margin-bottom: 16px;
  margin-top: -8px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.trust-badge {
  background: rgba(255, 255, 255, 0.1);
  border: 3px solid #ff6e04;
  border-radius: 12px;
  padding: 15px 20px;
  text-align: center;
  width: 180px;
  min-height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: visible;
  transition: all 0.3s ease;
}

.trust-badge::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.trust-badge:hover::before {
  left: 100%;
}

.trust-badge:hover {
  border-color: #ff8533;
  box-shadow: 0 0 20px rgba(255, 110, 4, 0.4);
}

.trust-badge-title,
.trust-badge-text {
  font-size: 1.0rem;
  font-weight: bold;
  color: #ff6e04;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.4;
}

.label-separator {
  display: flex;
  align-items: center;
  justify-content: center;
}

.label-image {
  max-width: 200px;
  height: auto;
  border-radius: 10px;
  border: 3px solid #ff6e04;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* MOBILE FIX - Features overlap & Trust Badges */
@media (max-width: 768px) {
  .features-section {
    margin-top: -80px;
    padding-top: 110px;
  }

  .low-energy-hero {
    padding-bottom: 70px !important;
  }

  .features-section .two-column-layout {
    flex-direction: column;
    gap: 30px;
  }
  
  .features-section .column {
    width: 100%;
  }
  
  .trust-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-left: 0;
  }
  
  .trust-badge {
    width: 80%;
    max-width: 280px;
    text-align: center;
  }
  
  .label-separator {
    order: -1;
    margin-bottom: 20px;
  }
  
  .label-separator img {
    max-width: 150px;
    height: auto;
  }

  /* Mobile CTA buttons — ALL uniform, matching product-info-cta-v2 */
  .features-button,
  .features-button--large,
  .features-button--xl,
  .hero-cta-founder,
  .why-cta-btn,
  .video-cta-btn,
  .ingredients-btn,
  .product-info-cta-v2,
  .bre-timeline-btn,
  .add-to-cart-button {
    padding: 20px 40px !important;
    font-size: 20px !important;
    font-weight: 800 !important;
    border-radius: 50px !important;
    letter-spacing: 2px !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
    width: 100% !important;
    max-width: 400px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.35em !important; /* flex collapses whitespace between SAVE / BIG / NOW! — restore word spacing */
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .hero-cta-founder {
    padding: 14px 32px !important;
    font-size: 18px !important;
    font-family: 'DIN Condensed', 'Arial Narrow', sans-serif !important;
    width: auto !important;
  }

  .why-cta-btn,
  .video-cta-btn {
    padding: 20px 40px !important;
    font-size: 20px !important;
    max-width: 90% !important;
    width: 90% !important;
    text-align: center !important;
  }

  /* Landscape gallery cards — match portrait height, full image visible */
  .card--landscape {
    width: 780px !important;
    height: 480px !important;
    aspect-ratio: unset;
    background: #0C0F1E;
  }

  .card--landscape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* ========================================
   PRODUCT SECTION - FIXED LAYOUT
   ======================================== */

.product_section_bg {
  background-image: url('/cdn/shop/files/gradient_blue_REV_2.png?v=1769801499') !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  padding: 40px 40px;
  min-height: auto;
}

.product-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
  padding: 0;
}


/* Left Column - Product Image */
.product-image-column {
  display: flex;
  flex-direction: column;
}

.product-main-image-wrapper {
  background: linear-gradient(to bottom, #f3f3f3 0%, #e2e2e2 50%, #c1c1c1 100%) !important;
  border: 4px solid #ff6e04 !important;
  border-radius: 20px !important;
  padding: 0 !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1;
  width: 100%;
}

.product-main-image {
  width: 100% !important;
  height: 100% !important;
  display: block;
  object-fit: contain;
  border-radius: 16px !important;
}
.thumbnail-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  margin-bottom: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px !important;
  height: 100px !important;
  border: 2px solid rgba(255,255,255,0.3) !important;
  border-radius: 8px !important;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #ffffff !important;
  flex-shrink: 0;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: #ff6e04 !important;
  border-width: 3px !important;
  transform: none !important;
  box-shadow: none !important;
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ffffff;
}

/* ================================
   PRODUCT REVIEWS SCROLL BOX (Left Column)
   ================================ */

.product-reviews-box {
  height: 220px;
  max-height: 240px;
  display: flex;
  flex-direction: column;
  background: rgba(12, 15, 30, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1.5px solid rgba(255, 110, 4, 0.35);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  overflow: hidden;
  box-sizing: border-box;
}

.product-reviews-header {
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

.product-reviews-title-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.product-reviews-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #ffffff;
}

.product-reviews-rating-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255, 110, 4, 0.12);
  border: 1px solid rgba(255, 110, 4, 0.4);
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
}

.product-reviews-stars {
  color: #ffb400;
  font-size: 12px;
  letter-spacing: 1px;
}

.product-reviews-body {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  position: relative;
  gap: 8px;
  overflow: hidden;
}

.product-reviews-scroll {
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  overflow-y: scroll;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-right: 4px;
  /* Hide native browser scrollbar completely across browsers */
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.product-reviews-scroll::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Custom Always-Visible Scrollbar Track */
.reviews-scrollbar-track {
  width: 8px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  position: relative;
  height: 100%;
  cursor: pointer;
  box-shadow: inset 0 0 2px rgba(0, 0, 0, 0.5);
}

/* Custom Always-Visible Scrollbar Thumb */
.reviews-scrollbar-thumb {
  width: 100%;
  height: 35%;
  background: linear-gradient(180deg, #FF6E04 0%, #DC200D 100%);
  border-radius: 999px;
  position: absolute;
  top: 0;
  left: 0;
  box-shadow: 0 0 10px rgba(220, 32, 13, 0.55), inset 0 0 0 1px rgba(255, 255, 255, 0.3);
  cursor: grab;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.reviews-scrollbar-thumb:hover,
.reviews-scrollbar-thumb:active {
  background: linear-gradient(180deg, #FF8A2D 0%, #DC200D 100%);
  box-shadow: 0 0 14px rgba(255, 110, 4, 0.8), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
  cursor: grabbing;
}

.product-review-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 9px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.product-review-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 110, 4, 0.35);
}

.product-review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-review-stars {
  color: #ffb400;
  font-size: 11px;
  letter-spacing: 1px;
  display: inline-flex;
  align-items: center;
}

.product-review-stars .star-half {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.2);
}

.product-review-stars .star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffb400;
}

.product-review-stars .star-empty {
  color: rgba(255, 255, 255, 0.2);
}

.product-reviews-stars .star-half,
.stars .star-half {
  position: relative;
  display: inline-block;
  color: rgba(255, 255, 255, 0.25);
}

.product-reviews-stars .star-half::before,
.stars .star-half::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  color: #ffb400;
}

.stars .star-half::before {
  color: #ffc107;
}

.product-review-verified {
  font-size: 10px;
  font-weight: 600;
  color: #4ade80;
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.product-review-quote {
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-style: italic;
}

.product-review-author {
  font-size: 10px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .product-reviews-box {
    margin-top: 16px;
    height: 220px;
    max-height: 220px;
  }
}

/* Right Column - Product Info */
.product-info-column {
  color: #fff;
  padding: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.product-brand-logo {
  height: 75px !important;
  width: auto !important;
  margin-bottom: 5px;
  margin-left: auto;
  margin-right: auto;
}

.product-brand-name {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  font-style: normal;
  text-transform: uppercase;
  color: #ff6e04;
  -webkit-text-stroke: 1px #000000;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 10px;
  letter-spacing: 2px;
  line-height: 1;
}

.product-brand-name .bre-orange {
  color: #ff6e04;
}

.product-brand-name .bre-highlight {
  color: #dc200d;
}

.product-brand-name sup {
  font-size: 0.35em;
  vertical-align: top;
  position: relative;
  top: 0.1em;
  -webkit-text-stroke: 0.5px #000000;
}

.product-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 5px;
}

.product-rating .stars,
.stars {
  color: #ffc107 !important;
  font-size: 18px;
}

.product-rating .rating-text,
.rating-text {
  color: rgba(255,255,255,0.7) !important;
  font-size: 14px;
}

.product-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif !important;
  font-size: 56px !important;
  font-weight: 900 !important;
  color: #ff6e04 !important;
  margin: 0 0 20px 0 !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1;
  text-shadow: none !important;
  -webkit-text-stroke: none !important;
}

.product-title-image {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.product-subtitle {
  display: none !important;
}

/* Section Labels - WHITE TEXT - BIGGER */
.section-label {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px !important;
}

/* ========================================
   QUANTITY CARDS - CLEAN WHITE - BIGGER TEXT
   ======================================== */

.quantity-section {
  margin-bottom: 25px;
}

.quantity-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.quantity-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid transparent !important;
  border-radius: 10px !important;
  padding: 20px 14px !important;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.quantity-card:hover {
  border-color: #ff6e04 !important;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.quantity-card.selected {
  border: 3px solid #ff6e04 !important;
  box-shadow: 0 6px 20px rgba(255, 110, 4, 0.3) !important;
  background: rgba(255, 255, 255, 0.95) !important;
  color: inherit !important;
}

.quantity-badge {
  position: absolute;
  top: -10px;
  right: -5px;
  background: #ff6e04;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quantity-badge.best-value {
  background: #28a745;
}

.quantity-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 24px !important;
  font-weight: 700;
  color: #000 !important;
  margin-bottom: 6px;
}

.quantity-supply {
  font-size: 15px !important;
  color: #666 !important;
  margin-bottom: 12px;
}

.quantity-discount {
  display: inline-block;
  background: linear-gradient(90deg, #ff6e04, #dc200d) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700;
  padding: 6px 14px !important;
  border-radius: 15px !important;
}

/* Pricing Cycle Header */
.pricing-cycle-header {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

/* Founder pricing styles */
.quantity-pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin-bottom: 4px;
  margin-top: 8px;
}

.retail-price-struck {
  font-size: 26px;
  font-weight: 700;
  color: #999;
  text-decoration: line-through;
  text-decoration-thickness: 3px;
  text-decoration-color: #dc200d;
}

.founder-price {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ff6e04;
}

/* Savings amount — big and bold */
.quantity-savings {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #28a745;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Guarantee line */
.quantity-guarantee {
  font-size: 11px;
  font-weight: 700;
  color: #ff6e04;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Refill note for 6-bottle */
.quantity-refill-note {
  font-size: 10px;
  color: #666;
  margin-top: 4px;
  line-height: 1.3;
}

/* Glow effect on 3-bottle card */
.quantity-card--glow {
  box-shadow: 0 0 20px rgba(255, 110, 4, 0.4), 0 0 40px rgba(255, 110, 4, 0.15) !important;
  border: 3px solid #ff6e04 !important;
  animation: cardGlow 2s ease-in-out infinite alternate;
}

@keyframes cardGlow {
  0% { box-shadow: 0 0 20px rgba(255, 110, 4, 0.3), 0 0 40px rgba(255, 110, 4, 0.1); }
  100% { box-shadow: 0 0 30px rgba(255, 110, 4, 0.5), 0 0 60px rgba(255, 110, 4, 0.2); }
}

.quantity-per-bottle {
  font-size: 13px;
  color: #28a745;
  font-weight: 600;
  margin-top: 2px;
}

/* Save badge — visible everywhere */
.quantity-save-badge {
  display: inline-block;
  background: #ff6e04;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 10px;
  margin-top: 6px;
  text-transform: uppercase;
}

/* Show pricing rows in quantity cards */
.quantity-pricing {
  display: flex;
}

.quantity-per-bottle {
  display: block;
}

/* Frequency/one-time price displays */
.original-price {
  font-size: 16px;
  color: #999;
  text-decoration: line-through;
  margin-right: 4px;
}

.sale-price {
  font-size: 22px;
  font-weight: 900;
  color: #000;
}

.one-time-price-display {
  text-align: right;
  white-space: nowrap;
}

/* ========================================
   FREQUENCY CARDS - CLEAN WHITE - BIGGER TEXT
   ======================================== */

.frequency-section {
  margin-bottom: 20px;
}

.frequency-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid transparent !important;
  border-radius: 10px !important;
  padding: 18px 20px !important;
  margin-bottom: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.frequency-card:hover {
  border-color: #ff6e04 !important;
  transform: none !important;
  box-shadow: none !important;
}

.frequency-card.selected {
  border: 3px solid #ff6e04 !important;
  box-shadow: 0 6px 20px rgba(255, 110, 4, 0.3) !important;
  opacity: 1 !important;
}

.frequency-card:not(.selected) {
  opacity: 0.9;
}

.frequency-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
}

.frequency-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px !important;
  font-weight: 700;
  color: #000 !important;
}

.frequency-subtitle {
  font-size: 13px !important;
  color: #666 !important;
  margin-top: 3px;
}

.frequency-price {
  text-align: right;
}

.frequency-price .original-price,
.original-price {
  font-size: 15px !important;
  color: #999 !important;
  text-decoration: line-through;
  display: block;
  margin-right: 0 !important;
}

.frequency-price .sale-price,
.sale-price {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 30px !important;
  font-weight: 900;
  color: #ff6e04 !important;
}

/* Subscribe & Save — dynamic pricing details */
.frequency-pricing-details {
  padding: 10px 0;
  margin: 8px 0 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.freq-detail-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.freq-detail-per-bottle {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ff6e04;
}

.freq-detail-savings {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #28a745;
}

.freq-detail-badge {
  display: inline-block;
  background: #28a745;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 4px;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.freq-detail-guarantee {
  font-size: 13px;
  font-weight: 600;
  color: #ff6e04;
  margin-top: 4px;
}

.frequency-benefits {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.frequency-benefits li {
  font-size: 14px !important;
  color: #333 !important;
  padding: 3px 0 3px 24px !important;
  position: relative;
  margin-bottom: 0 !important;
  font-weight: normal !important;
  line-height: 1.5;
}

.frequency-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #28a745 !important;
  font-weight: bold;
  font-size: 14px !important;
  top: 3px !important;
}

/* One-Time Card */
.one-time-card {
  background: rgba(255, 255, 255, 0.95) !important;
  border: 2px solid transparent !important;
  border-radius: 10px !important;
  padding: 16px 20px !important;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.one-time-card:hover {
  border-color: #999 !important;
  transform: none !important;
  box-shadow: none !important;
}

.one-time-card.selected {
  border: 3px solid #ff6e04 !important;
  opacity: 1 !important;
}

.one-time-card:not(.selected) {
  opacity: 0.9;
}

.one-time-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px !important;
  font-weight: 700;
  color: #000 !important;
}

.one-time-subtitle {
  font-size: 13px !important;
  color: #999 !important;
  margin-top: 3px;
}

.one-time-price {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px !important;
  font-weight: 900;
  color: #000 !important;
}

/* ========================================
   PREMIUM PURCHASE SECTION (PPS)
   ======================================== */

.pps-section-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 80px !important;
  margin-top: -5px;
  letter-spacing: 1px;
}

.pps-quantity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
  margin-top: 0;
}

.pps-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 22px 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  position: relative;
}

.pps-card:hover {
  border-color: #ff6e04;
  transform: translateY(-2px);
}

.pps-card--active {
  border: 3px solid #ff6e04;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.8), 0 0 50px rgba(255, 110, 4, 0.5), 0 0 80px rgba(255, 110, 4, 0.3);
  z-index: 3;
}

.pps-card--active.pps-card--featured .pps-badge {
  box-shadow: 0 0 20px rgba(255, 110, 4, 0.8), 0 0 40px rgba(255, 110, 4, 0.4);
}

.pps-badge {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6e04;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.pps-badge--green {
  background: #28a745;
}

.pps-card--featured .pps-badge {
  white-space: nowrap;
  line-height: 1.4;
  text-align: center;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 40px;
  border-radius: 20px;
  min-width: 200px;
}

.badge-short {
  display: none;
}

@media (max-width: 768px) {
  .badge-full {
    display: none;
  }
  .badge-short {
    display: inline;
  }
}

.pps-bottles {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #111;
  margin-bottom: 2px;
}

.pps-duration {
  font-size: 15px;
  color: #111;
  margin-bottom: 12px;
}

.pps-price {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: #ff6e04;
  line-height: 1.1;
}

.pps-per-bottle {
  font-size: 15px;
  color: #1a8f36;
  font-weight: 800;
  margin-top: 6px;
}

/* Delivery Toggle */
.pps-delivery-toggle {
  display: flex;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 4px;
  margin-bottom: 14px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.pps-toggle-btn {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: 26px;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.25s ease;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
}

.pps-toggle-btn--active {
  background: linear-gradient(135deg, #ff6e04, #dc200d);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(255, 110, 4, 0.35);
}

/* Delivery Info & Savings Banner */
.pps-savings-container {
  text-align: center;
  margin-top: 18px;
  margin-bottom: 18px;
}

.pps-savings-line {
  display: inline-block;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 19px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #00ff66;
  background: linear-gradient(135deg, rgba(40, 167, 69, 0.25), rgba(0, 230, 118, 0.15));
  border: 1.5px solid rgba(0, 255, 102, 0.5);
  box-shadow: 0 0 16px rgba(0, 255, 102, 0.25), inset 0 0 8px rgba(0, 255, 102, 0.1);
  padding: 8px 18px;
  border-radius: 20px;
  margin: 0;
  line-height: 1.3;
}

.pps-savings-highlight {
  font-size: 23px;
  font-weight: 900;
  color: #ffea00;
  background: rgba(0, 0, 0, 0.35);
  padding: 2px 8px;
  border-radius: 6px;
  border: 1px solid rgba(255, 234, 0, 0.4);
  box-shadow: 0 0 12px rgba(255, 234, 0, 0.5);
  margin: 0 4px;
  display: inline-block;
  vertical-align: middle;
}

.pps-delivery-info {
  text-align: center;
  margin-bottom: 20px;
}

.pps-delivery-copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Reassurance */
.fda-disclaimer {
  font-size: 10px;
  color: #999;
  line-height: 1.3;
  margin-top: 10px;
  margin-bottom: 8px;
  text-align: center;
  letter-spacing: 0.2px;
}

.pps-reassurance {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
}

.pps-check {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

/* PPS Mobile */
@media (max-width: 768px) {
  .pps-quantity-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .pps-card {
    padding: 18px 8px;
  }

  .pps-bottles {
    font-size: 20px;
  }

  .pps-duration {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .pps-price {
    font-size: 26px;
  }

  .pps-per-bottle {
    font-size: 13px;
  }

  .pps-toggle-btn {
    font-size: 16px;
    padding: 11px 10px;
  }

  .pps-savings-line {
    font-size: 15px;
  }

  .pps-delivery-copy {
    font-size: 15px;
  }

  .pps-check {
    font-size: 15px;
  }

  .pps-badge {
    font-size: 9px;
    padding: 3px 10px;
  }
}

@media (max-width: 400px) {
  .pps-price {
    font-size: 22px;
  }

  .pps-bottles {
    font-size: 18px;
  }

  .pps-per-bottle {
    font-size: 12px;
  }

  .pps-toggle-btn {
    font-size: 14px;
    padding: 10px 8px;
  }
}

/* ========================================
   ADD TO CART BUTTON WITH SHEEN
   ======================================== */
.add-to-cart-button {
  width: 100%;
  padding: 22px 40px;
  background: linear-gradient(90deg, var(--orange-primary), var(--red-primary));
  color: white;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  cursor: pointer;
  box-shadow: 0 6px 24px rgba(255, 110, 4, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  min-height: 65px;
}

.add-to-cart-button span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.add-to-cart-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.add-to-cart-button:hover::before {
  left: 100%;
}

.add-to-cart-button:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 32px rgba(255, 110, 4, 0.5);
}

/* ========================================
   MONEY BACK GUARANTEE
   ======================================== */

.money-back-guarantee {
  text-align: center;
  padding: 10px 0;
}

.money-back-guarantee span {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 16px;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ========================================
   GUARANTEE BADGES
   ======================================== */

.guarantee-badge {
  background: rgba(255,255,255,0.95) !important;
  border-radius: 8px;
  padding: 12px 15px;
  flex: 1;
  text-align: center;
  margin-bottom: 10px;
  width: 100%;
}

.guarantee-badge p,
.guarantee-text {
  margin: 0;
  font-size: 13px;
  color: #000 !important;
}

/* ================================
   SCROLLING ICONS BANNER
   ================================ */

.scrolling-icons-banner {
  height: 180px;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  background: var(--black);
  border-bottom: 4px solid;
  border-top: 4px solid;
  border-image: linear-gradient(90deg, rgba(255, 109, 4, 0.95), var(--red-primary)) 1;
}

.scrolling-container {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: var(--black);
}

.scrolling-track {
  display: flex;
  align-items: center;
  width: fit-content;
  animation: marquee 30s linear infinite;
}

.icon-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.icon-item {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 10px;
}

.icon-item img {
  height: 120px;
  width: auto;
  min-width: 100px;
  object-fit: contain;
}

.icon-item img.icon-gmo-enlarged {
  height: 170px;
  min-width: 170px;
}

@keyframes marquee {
  0% { transform: translateX(0%); }
  100% { transform: translateX(-50%); }
}
/* ================================
   WHAT'S YOUR Y SECTION
   ================================ */

.whats-your-y-section {
  background-image: url('/cdn/shop/files/gradient_medium_blue.png?v=1769130732');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 60px 40px;
  position: relative;
  overflow: hidden;
}

.why-compact-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-compact-left {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.why-compact-title {
  max-width: 520px;
  width: 100%;
  height: auto;
}

.vitruvian-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 450px;
  height: 450px;
}

.spinning-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid transparent;
  border-top: 2px solid var(--orange-primary);
  border-right: 2px solid var(--orange-primary);
  animation: spinRingY 8s linear infinite;
  opacity: 0.7;
  pointer-events: none;
}

.spinning-ring.ring-2 {
  width: 390px;
  height: 390px;
  border-top: 2px solid var(--red-primary);
  border-left: 2px solid var(--red-primary);
  border-right: 2px solid transparent;
  animation: spinRingYReverse 12s linear infinite;
  opacity: 0.5;
}

@keyframes spinRingY {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinRingYReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}


.why-compact-vitruvian {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.3));
  animation: gentleFloat 4s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes gentleFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.why-compact-right {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.why-compact-text {
  font-size: 1.3rem;
  line-height: 1.7;
  color: #ffffff;
  margin: 0;
  font-weight: 600;
}

.why-compact-text strong {
  color: #ffffff;
  font-weight: 900;
}

.why-compact-text .yplex-brand {
  color: #ffffff;
  -webkit-text-stroke: 1px #dc200d;
  font-weight: 900;
}

@media (max-width: 768px) {
  .why-compact-text .yplex-brand {
    -webkit-text-stroke: 0.5px #dc200d;
  }
}

.why-compact-text .highlight {
  color: #ff6e04;
}

/* Why Benefits Row - Physically, Mentally, Sexually */
.why-benefits-row {
  display: flex;
  justify-content: flex-start;
  gap: 40px;
  margin: 10px 0 20px 0;
}

.why-benefit {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 900;
  color: #ff6e04;
  text-transform: uppercase;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.why-benefit::before {
  display: none;
}

.why-benefit-dot {
  color: #ff6e04;
  font-size: 2rem;
  line-height: 1;
  align-self: center;
}

.tagline-wrapper {
  margin-top: 16px;
  position: relative;
  overflow: hidden;
}

.why-compact-tagline {
  max-width: 90%;
  height: auto;
}

.shimmer {
  position: relative;
}

.tagline-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  animation: shimmerEffect 4s ease-in-out infinite;
}

@keyframes shimmerEffect {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

@keyframes autoSheen {
  0%, 85% { left: -100%; }
  100% { left: 150%; }
}

@media (max-width: 768px) {
  .features-button::before,
  .add-to-cart-button::before,
  .hero-cta-founder::after,
  .why-cta-btn::before,
  .video-cta-btn::before,
  .ingredients-btn::before {
    animation: autoSheen 4s ease-in-out infinite !important;
    transition: none !important;
  }
}

.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.why-cta {
  margin-top: 20px;
}

.why-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange-primary), var(--red-primary));
  color: var(--white);
  padding: 18px 45px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(255, 110, 4, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.why-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.why-cta-btn:hover::before {
  left: 100%;
}

.why-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 32px rgba(255, 110, 4, 0.5);
}

/* Tablet */
@media (max-width: 1024px) {
  .why-compact-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .why-benefits-row {
    justify-content: center;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .whats-your-y-section {
    padding: 30px 20px;
  }

  .why-compact-container {
    gap: 12px;
  }

  .why-compact-left {
    gap: 4px;
  }

  .why-compact-title {
    width: 220px;
  }

  .vitruvian-wrapper {
    width: 260px;
    height: 260px;
  }

  .spinning-ring {
    width: 250px;
    height: 250px;
  }

  .spinning-ring.ring-2 {
    width: 230px;
    height: 230px;
  }

  .why-compact-vitruvian {
    width: 240px;
  }

  .why-compact-text {
    padding: 0 10px;
    font-size: 0.95rem;
    line-height: 1.6;
  }

  .why-compact-tagline {
    max-width: 85%;
  }

  .why-compact-right {
    gap: 8px;
  }

  .why-benefits-row {
    gap: 15px;
    margin: 4px 0 8px 0;
  }

  .why-benefit {
    font-size: 1.1rem;
  }

  .tagline-wrapper {
    margin-top: 4px;
  }
}

@media (max-width: 480px) {
  .whats-your-y-section {
    padding: 20px 15px;
  }

  .why-compact-title {
    width: 200px;
  }

  .vitruvian-wrapper {
    width: 230px;
    height: 230px;
  }

  .spinning-ring {
    width: 220px;
    height: 220px;
  }

  .spinning-ring.ring-2 {
    width: 200px;
    height: 200px;
  }

  .why-compact-vitruvian {
    width: 210px;
  }

  .why-compact-text {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .why-benefits-row {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }

  .why-benefit {
    font-size: 0.85rem;
  }

  .why-benefit-dot {
    display: none;
  }

  .why-cta-btn {
    font-size: 18px;
    padding: 14px 35px;
  }
}
/* ================================
    VIDEO SECTION STYLES
    ================================ */

.video-section {
  background: #281c31;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  overflow: hidden;
}

.video-section-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -1.5px;
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin: 0 auto 40px auto;
  text-align: center;
  position: relative;
  z-index: 3;
}

.video-section-title .text-orange {
  color: #ffffff;
}

/* Ghosted Stars and Stripes overlay */
.video-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/cdn/shop/files/newspotlight.png?v=1769654169');
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1;
}

.video-title-image {
  max-width: 500px;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 3;
}

.video-container {
  position: relative;
  width: 100%;
  max-width: 900px;
  aspect-ratio: 16 / 9;
  height: auto;
  padding-bottom: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #ff6e04;
  box-shadow:
    0 25px 50px rgba(0,0,0,0.4),
    0 0 30px rgba(255, 110, 4, 0.3);
  transition: all 0.4s ease;
  z-index: 3;
}

.video-container:hover {
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.5),
    0 0 40px rgba(255, 110, 4, 0.5);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 16px;
}

/* Video support text and CTA */
.video-support-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 30px;
  font-weight: 500;
  position: relative;
  z-index: 3;
}

.video-support-text strong {
  font-weight: 900;
}

.video-support-text .yplex-brand {
  color: #ffffff;
  -webkit-text-stroke: 1px #dc200d;
  font-weight: 900;
}

.video-cta-wrapper {
  text-align: center;
  margin-top: 20px;
  padding-bottom: 10px;
  position: relative;
  z-index: 3;
}

.video-cta-btn {
  display: inline-block;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  color: #ffffff;
  padding: 22px 60px;
  border-radius: 50px;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(255, 110, 4, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.video-cta-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.video-cta-btn:hover::before {
  left: 100%;
}

.video-cta-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 110, 4, 0.6);
}

@media (max-width: 768px) {
  .video-section {
    padding: 40px 20px;
  }

  .video-section-title {
    font-size: 48px;
    margin-bottom: 20px;
  }

  .video-title-image {
    max-width: 90%;
    margin-bottom: 20px;
  }

  .video-support-text {
    font-size: 18px;
    margin-top: 20px;
  }

  .video-cta-wrapper {
    width: 100%;
  }
}

/* ================================
   INGREDIENTS SECTION - COMPLETE FIXED VERSION
   ================================ */

.ingredients-section {
  background-image: url('/cdn/shop/files/gradient_blue_REV4.png?v=1769825930');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 20px;
  position: relative;
}

.ingredients-container {
  max-width: 1400px;
  margin: 0 auto;
}

.ingredients-main-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 5.25rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  -webkit-text-stroke: 2px #dc200d;
}

.ingredients-grid {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}

/* FIXED WIDTHS TO PREVENT SHAKE */
.ingredients-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 280px;
  min-width: 280px;
  max-width: 280px;
  flex-shrink: 0;
}

.ingredient-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  border: 3px solid rgba(255, 110, 4, 0.4);
  height: 70px;
  width: 100%;
  background: rgba(0, 0, 0, 0.3);
}

.ingredient-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.5);
  transition: filter 0.3s ease;
}

.ingredient-card:hover img,
.ingredient-card.active img {
  filter: brightness(0.2);
}

/* NO TRANSFORM - prevents shake */
.ingredient-card:hover,
.ingredient-card.active {
  border-color: #ff6e04;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.6);
}

/* Hidden on desktop - only shown on mobile via media query */
.ingredient-card-benefits {
  display: none;
}

.ingredient-card-content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 10px 15px;
  background: linear-gradient(90deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 60%, transparent 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto;
  align-items: center;
  align-content: center;
}

/* Benefit text overlay — hidden by default, shown on hover/active */
.ingredient-benefit-dropdown {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 10px 15px;
  pointer-events: none;
  background: rgba(0, 0, 0, 0.85);
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ingredient-card:hover .ingredient-benefit-dropdown,
.ingredient-card.active .ingredient-benefit-dropdown {
  display: flex;
}

.ingredient-name {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.ingredient-dose {
  font-size: 0.8rem;
  color: #ffffff;
  font-weight: 700;
}

/* Center Capsule Display - FIXED WIDTH */
.ingredients-center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 450px;
  min-width: 450px;
  max-width: 450px;
  flex-shrink: 0;
  padding: 0 20px;
}

.capsule-display {
  position: relative;
  width: 450px;
  height: 470px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Ingredient Name - Hidden (redundant with selected card) */
.ingredient-display-name {
  display: none;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 2.5rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  height: 50px;
  line-height: 50px;
  margin: 0 0 20px 0;
  white-space: nowrap;
  width: 100%;
  text-align: center;
  overflow: hidden;
}

/* Capsule wrapper - contains pill and rings */
.capsule-wrapper {
  position: relative;
  width: 440px;
  height: 440px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Capsule Reveal Container */
.capsule-reveal {
  position: relative;
  z-index: 5;
  width: 180px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 800px;
}

/* Both capsule and bottle images */
.capsule-image {
  height: auto;
  filter: drop-shadow(0 0 80px rgba(255, 110, 4, 0.9))
          drop-shadow(0 0 40px rgba(255, 110, 4, 0.7))
          drop-shadow(0 0 20px rgba(255, 255, 255, 0.4));
  position: absolute;
}

/* Capsule (pill) - visible initially */
.capsule-pill {
  width: 180px;
  animation: floatCapsule 4s ease-in-out infinite;
}

/* Bottle - hidden initially */
.capsule-bottle {
  max-height: 320px;
  width: auto;
  opacity: 0;
  transform: rotateY(-90deg) scale(0.6);
}

/* ---- REVEAL ANIMATION ---- */
.capsule-reveal.revealed .capsule-pill {
  animation: pillSpinOut 1.2s ease-in forwards;
}

.capsule-reveal.revealed .capsule-bottle {
  animation: bottleSpinIn 1.2s ease-out 0.6s forwards;
}

@keyframes pillSpinOut {
  0% {
    transform: translateY(0) rotateY(0) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(-6px) rotateY(120deg) scale(0.9);
    opacity: 1;
  }
  60% {
    transform: rotateY(180deg) scale(0.7);
    opacity: 0;
  }
  100% {
    transform: rotateY(270deg) scale(0.4);
    opacity: 0;
  }
}

@keyframes bottleSpinIn {
  0% {
    transform: rotateY(-90deg) scale(0.6);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: rotateY(0deg) scale(1);
    opacity: 1;
  }
}

/* After reveal, continuously spin between capsule and bottle */
.capsule-reveal.reveal-done .capsule-pill {
  opacity: 1;
  display: block;
  animation: pillCycle 10s ease-in-out infinite;
}

.capsule-reveal.reveal-done .capsule-bottle {
  opacity: 0;
  transform: rotateY(-90deg) scale(0.6);
  animation: bottleCycle 10s ease-in-out infinite;
}

@keyframes pillCycle {
  0% { transform: rotateY(-90deg) scale(0.6); opacity: 0; }
  8% { transform: rotateY(0deg) scale(1); opacity: 1; }
  42% { transform: translateY(-6px) rotateY(0deg) scale(1); opacity: 1; }
  50% { transform: rotateY(90deg) scale(0.6); opacity: 0; }
  100% { transform: rotateY(-90deg) scale(0.6); opacity: 0; }
}

@keyframes bottleCycle {
  0% { transform: rotateY(-90deg) scale(0.6); opacity: 0; }
  50% { transform: rotateY(-90deg) scale(0.6); opacity: 0; }
  58% { transform: rotateY(0deg) scale(1); opacity: 1; }
  92% { transform: translateY(-6px) rotateY(0deg) scale(1); opacity: 1; }
  100% { transform: rotateY(90deg) scale(0.6); opacity: 0; }
}

@keyframes floatCapsule {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Rings - Positioned around capsule */
.capsule-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 110, 4, 0.5);
  animation: spinRing 15s linear infinite;
  pointer-events: none;
  width: 280px;
  height: 280px;
}

.capsule-ring.ring-2 {
  width: 360px;
  height: 360px;
  border: 3px solid rgba(220, 32, 13, 0.4);
  animation: spinRingReverse 20s linear infinite;
}

.capsule-ring.ring-3 {
  width: 440px;
  height: 440px;
  border: 2px solid rgba(255, 110, 4, 0.3);
  animation: spinRing 25s linear infinite;
}

@keyframes spinRing {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes spinRingReverse {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.ingredient-benefits {
  display: none;
}

/* Hide these */
.ingredient-number,
.ingredient-description {
  display: none;
}

/* Tagline */
/* Ingredients descriptor line */
.ingredients-descriptor {
  text-align: center;
  color: #ffffff;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  max-width: 800px;
  margin: -10px auto 40px;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 0 20px rgba(255, 110, 4, 0.4);
  background: linear-gradient(90deg, rgba(255, 110, 4, 0.15), rgba(220, 32, 13, 0.15));
  padding: 16px 30px;
  border-radius: 8px;
  border: 1px solid rgba(255, 110, 4, 0.3);
}


/* Desktop: brighter description box */
@media (min-width: 769px) {
  #ingredientDescription {
    background: rgba(255, 255, 255, 0.15) !important;
    padding: 16px 20px !important;
    border-radius: 10px !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: #ffffff !important;
    font-size: 15px !important;
  }

  #ingredientBenefits {
    background: rgba(255, 110, 4, 0.2);
    padding: 8px 16px;
    border-radius: 6px;
    font-weight: 600;
  }
}

/* Mobile: show dropdowns from each ingredient card */
@media (max-width: 768px) {
  .ingredient-benefit-dropdown {
    display: none;
  }

  .ingredient-card:hover .ingredient-benefit-dropdown,
  .ingredient-card.active .ingredient-benefit-dropdown {
    display: block;
  }

  /* Disable desktop hover dimming on touch */
  .ingredient-card:hover img {
    filter: brightness(0.45);
  }
  .ingredient-card.active img {
    filter: brightness(0.55);
  }

  /* Hide center capsule description on mobile — use dropdowns instead */
  .ingredients-center .ingredient-benefits,
  .ingredients-center .ingredient-description {
    display: none;
  }
}

.ingredients-tagline {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 4rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 45px 0 16px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 1px 2px rgba(0,0,0,0.4);
  -webkit-text-stroke: 2px #dc200d;
  font-style: italic;
}

/* Desktop: dropdown toggle + expand icon hidden, wrapper transparent */
.ingredients-dropdown-toggle {
  display: none;
}

.ingredient-expand-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 1);
  transition: all 0.3s ease;
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
}


.ingredients-list-wrapper {
  display: contents;
}

/* Desktop ordering: left column before center (center is first in DOM) */
.ingredients-column.ingredients-left {
  order: -1;
}

/* CTA Button */
.ingredients-cta {
  text-align: center;
  margin: 16px 0 10px 0;
}

.ingredients-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange-primary), var(--red-primary));
  color: white;
  padding: 20px 60px;
  border-radius: 50px;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(255, 110, 4, 0.5);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.ingredients-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.ingredients-btn:hover::before {
  left: 100%;
}

.ingredients-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 110, 4, 0.6);
}

/* Disclaimer */
.ingredients-disclaimer {
  text-align: center;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 25px;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive */
@media (max-width: 1200px) {
  .ingredients-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .ingredients-column {
    width: 100%;
    max-width: 500px;
    min-width: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  
  .ingredients-center {
    order: -1;
    min-width: auto;
    width: auto;
    max-width: none;
  }

  .ingredients-list-wrapper {
    display: contents;
  }

  .capsule-wrapper {
    width: 340px;
    height: 340px;
  }
  
  .capsule-ring { width: 220px; height: 220px; }
  .capsule-ring.ring-2 { width: 280px; height: 280px; }
  .capsule-ring.ring-3 { width: 340px; height: 340px; }
  
  .capsule-display { 
    height: 480px;
    width: auto;
  }
  
  .ingredient-benefits {
    width: auto;
    min-width: auto;
    max-width: 90%;
  }
}

@media (max-width: 768px) {
  .ingredients-section {
    padding: 40px 30px 40px 15px;
  }

  .ingredients-main-title {
    font-size: 2.2rem;
    -webkit-text-stroke: 1.5px #dc200d;
    margin-bottom: 12px;
  }

  .ingredients-descriptor {
    font-size: 14px;
    margin-bottom: 20px;
  }

  /* Grid becomes single column on mobile */
  .ingredients-grid {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  /* Capsule animation — centered, always visible */
  .ingredients-center {
    display: flex !important;
    justify-content: center;
    width: 100%;
    order: -1;
    min-width: auto;
    max-width: none;
    margin-bottom: 10px;
  }

  .ingredients-center .capsule-display {
    height: 250px;
  }

  .ingredients-center .capsule-wrapper {
    width: 240px;
    height: 240px;
  }

  .ingredients-center .capsule-ring { width: 160px; height: 160px; }
  .ingredients-center .capsule-ring.ring-2 { width: 200px; height: 200px; }
  .ingredients-center .capsule-ring.ring-3 { width: 240px; height: 240px; }
  .ingredients-center .capsule-pill { width: 120px; }
  .ingredients-center .capsule-bottle { max-height: 200px; }
  .ingredients-center .capsule-reveal { width: 120px; height: 200px; }

  /* Hide the text elements inside capsule display on mobile */
  .ingredients-center .ingredient-benefits,
  .ingredients-center .ingredient-number,
  .ingredients-center .ingredient-description {
    display: none;
  }

  /* ---- Dropdown Toggle ---- */
  .ingredients-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: auto;
    max-width: 280px;
    margin: 0 auto 8px auto;
    padding: 14px 28px;
    background: rgba(255, 110, 4, 0.08);
    border: 1.5px solid #ff6e04;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(255, 110, 4, 0.25), inset 0 0 8px rgba(255, 110, 4, 0.06);
    transition: all 0.3s ease;
  }

  .ingredients-dropdown-toggle:active {
    background: rgba(255, 110, 4, 0.15);
    box-shadow: 0 0 20px rgba(255, 110, 4, 0.4), inset 0 0 10px rgba(255, 110, 4, 0.1);
  }

  .ingredients-dropdown-toggle.open {
    box-shadow: 0 0 20px rgba(255, 110, 4, 0.4), inset 0 0 10px rgba(255, 110, 4, 0.1);
  }

  .ingredients-dropdown-label {
    font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
    font-size: 20px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .ingredients-dropdown-chevron {
    color: #ffffff;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }

  .ingredients-dropdown-toggle.open .ingredients-dropdown-chevron {
    transform: rotate(180deg);
  }

  /* ---- Collapsible List Wrapper ---- */
  .ingredients-list-wrapper {
    display: block;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .ingredients-list-wrapper.open {
    max-height: 2000px;
  }

  /* Single-column ingredient cards */
  .ingredients-column {
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    width: 100% !important;
    max-width: none !important;
    min-width: auto !important;
    margin-bottom: 8px;
  }

  .ingredients-column.ingredients-left {
    order: 0;
  }

  /* Ingredient cards — full-width, single column */
  .ingredient-card {
    height: auto;
    min-height: 60px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.3);
  }

  /* Background images — visible like desktop */
  .ingredient-card img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    filter: brightness(0.45);
    transition: filter 0.3s ease, opacity 0.3s ease;
  }

  .ingredient-card.active img {
    filter: brightness(0.55);
  }

  /* Active card — highlighted border, NO full-width spanning */
  .ingredient-card.active {
    border-color: #ff6e04;
    box-shadow: 0 0 15px rgba(255, 110, 4, 0.4);
  }

  /* Card content — name + dose left, expand icon right */
  .ingredient-card-content {
    position: relative;
    z-index: 1;
    padding: 14px 16px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.3) 60%, transparent 100%);
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 0;
  }

  .ingredient-name {
    font-size: 15px !important;
    font-weight: 700;
    margin-right: 8px;
  }

  .ingredient-dose {
    font-size: 12px !important;
    opacity: 0.8;
  }

  /* Simple chevron expand icon */
  .ingredient-expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 20px;
    height: 20px;
    color: rgba(255, 255, 255, 1);
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .ingredient-card.active .ingredient-expand-icon {
    border-color: #ff6e04;
    color: #ff6e04;
    transform: rotate(180deg);
  }

  /* Benefit dropdown — expands below card content on tap */
  .ingredient-benefit-dropdown {
    display: none;
    padding: 6px 16px 14px;
    margin-top: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0;
    border-left: 3px solid #ff6e04;
    color: rgba(255, 255, 255, 0.9);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: left;
    position: relative;
    z-index: 1;
    pointer-events: auto;
  }

  .ingredient-card.active .ingredient-benefit-dropdown {
    display: block;
  }

  .ingredient-card-benefits {
    display: none !important;
  }

  /* Tagline — move above CTA */
  .ingredients-tagline {
    font-size: 2.2rem;
    -webkit-text-stroke: 1px #dc200d;
    order: 1;
    margin: 20px 0 10px;
  }

  .ingredients-cta {
    order: 2;
    margin: 15px 0;
  }

  .ingredients-disclaimer {
    order: 3;
  }

  .ingredients-btn {
    font-size: 18px;
    padding: 16px 40px;
  }

  /* Force proper ordering via flexbox on the container */
  .ingredients-container {
    display: flex;
    flex-direction: column;
  }
}
/* ================================
   YPLEX WHY SECTION (Nature Does The Work)
   Add this to your custom_single_page.css
   ================================ */

.yplex-ewd {
  background: #281c31;
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  position: relative;
  overflow: hidden;
}

.yplex-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

#yplex-ewde .yplex-container {
  position: relative !important;
  overflow: visible !important;
}

#yplex-ewde .yplex-container {
  position: relative !important;
  background-image: url('/cdn/shop/files/Logo_BR_1.png?v=1769136963') !important;
  background-repeat: no-repeat !important;
  background-position: center center !important;
  background-size: 450px auto !important;
}

#yplex-ewde .yplex-box {
  position: relative;
  z-index: 2;
  background: rgba(255, 255, 255, 0.85);
}

.yplex-box {
  background: #ffffff;
  max-width: 850px;
  margin: 0 auto;
  padding: 70px 60px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
  border: 4px solid transparent;
  background-image: linear-gradient(#ffffff, #ffffff), linear-gradient(90deg, #ff6e04, #dc200d);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}

.yplex-title {
  font-family: var(--font-brand), 'Arial Black', sans-serif;
  font-size: 52px;
  font-weight: 900;
  margin: 0 0 18px 0;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #ffffff;
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.yplex-tagline {
  font-family: var(--font-body), Georgia, serif;
  font-size: 24px;
  font-weight: 600;
  font-style: italic;
  margin: 0 0 24px 0;
  color: #333;
}

.yplex-copy {
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 18px;
  line-height: 1.7;
  margin: 0 auto 40px auto;
  color: #555;
  max-width: 650px;
}

.yplex-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.yplex-pills.top-row {
  margin-bottom: 20px;
}

.yplex-ewd .pill {
  padding: 12px 22px;
  border-radius: 999px;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}

.yplex-ewd .pill:hover {
  transform: translateY(-2px);
}

.yplex-ewd .pill.orange {
  background: linear-gradient(135deg, #ff6e04 0%, #ff8a33 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(255, 110, 4, 0.35);
}

.yplex-ewd .pill.blue {
  background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(30, 58, 138, 0.35);
}

.yplex-cta {
  display: inline-block;
  margin-top: 35px;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  color: #ffffff;
  padding: 20px 50px;
  font-family: var(--font-heading), 'Arial Black', sans-serif;
  font-size: 18px;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 8px 30px rgba(255, 110, 4, 0.45);
}

.yplex-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(255, 110, 4, 0.55);
  color: #ffffff;
}
/* ================================
   TIMELINE BACKGROUND FIX
   ================================ */

.bre-timeline-section {
  background: url('/cdn/shop/files/purple_blue_gradient3.png?v=1770143353') center/cover no-repeat !important;
  position: relative !important;
}

/* Ghost rooster removed per client request */

.bre-timeline-container {
  position: relative !important;
  z-index: 2 !important;
  max-width: 1400px !important;
}

/* Responsive */
@media (max-width: 992px) {
  .yplex-ewd {
    padding: 80px 20px;
  }
  
  .yplex-box {
    padding: 60px 40px;
    max-width: 90%;
  }

  .yplex-title {
    font-size: 42px;
  }
  
  .yplex-rooster img {
    width: 400px;
  }
}

@media (max-width: 768px) {
  .yplex-ewd {
    padding: 60px 15px;
  }
  
  .yplex-box {
    padding: 50px 24px;
  }

  .yplex-title {
    font-size: 32px;
  }

  .yplex-tagline {
    font-size: 18px;
  }

  .yplex-copy {
    font-size: 16px;
  }
  
  .yplex-ewd .pill {
    padding: 10px 18px;
    font-size: 13px;
  }
  
  .yplex-rooster img {
    width: 280px;
    opacity: 0.15;
  }
  
  .yplex-cta {
    padding: 16px 36px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .yplex-title {
    font-size: 26px;
  }
  
  .yplex-tagline {
    font-size: 16px;
  }
  
  .yplex-ewd .pill {
    padding: 8px 14px;
    font-size: 12px;
  }
  
  .yplex-pills {
    gap: 8px;
  }
  
  .yplex-cta {
    padding: 14px 28px;
    font-size: 14px;
  }
}/* ================================
   TESTIMONIALS SECTION STYLES
   ================================ */
     
.testimonials-section {
  background: #ff6e04;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  z-index: 10;
  width: 100%;
  overflow: hidden;
}

.testimonials-header {
  margin-bottom: 10px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center !important;
}

/* Bigger YPLEX logo */
.testimonials-header img {
  width: 350px !important;
  height: auto !important;
  margin-right: 20px;
  margin-bottom: 0 !important;
  line-height: 1 !important;


}


.testimonials-header h2 {
  color: #FFFFFF;
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  letter-spacing: 0.025em;
  -webkit-text-stroke: 1px #f20709;
}

.testimonials-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 3rem;
  font-weight: bold;
  text-transform: uppercase;
  color: white;
  text-shadow: 0 1px 2px rgba(0,0,0,0.3);
  margin: 0;
}

.testimonial-card {
  background: rgba(255, 255, 255, 0.8);
  border: 5px solid #dc200d;
  border-radius: 15px;
  padding: 38px 25px 25px 25px;
  margin: 60px 15px 20px 15px;
  min-height: 320px;
  max-height: none;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.rooster-icon {
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: 110px 110px;
  background-position: center;
  background-repeat: no-repeat;
}

.testimonial-text {
  color: #333;
  font-size: 1.1rem;
  line-height: 1.5;
  text-align: left;
  margin: 20px 0;
  flex-grow: 1;
  font-weight: 600;
  font-style: italic;
}

.testimonial-author {
  color: #dc200d;
  font-weight: bold;
  font-size: 1rem;
  text-align: right;
  margin-top: auto;
  padding-top: 15px;
  line-height: 1.4;
}

/* Swiper Container */
.banner-swiper {
  position: relative;
  overflow: visible !important;
  padding-top: 80px !important;
  margin-top: -70px !important;
}

.swiper-wrapper {
  overflow: visible !important;
}

/* Swiper Navigation Arrows */
.banner-next, .banner-prev {
  color: white !important;
  background: rgba(220, 32, 13, 0.8) !important;
  border-radius: 50% !important;
  width: 60px !important;
  height: 60px !important;
  top: 10px !important;
  z-index: 1000 !important;
  position: absolute !important;
}

.banner-next svg, .banner-prev svg {
  height: 70% !important;
}

.banner-next:hover, .banner-prev:hover {
  background: rgba(220, 32, 13, 1) !important;
  transform: scale(1.1);
}

.banner-next::after, .banner-prev::after {
  font-size: 20px !important;
  font-weight: bold !important;
}

/* Responsive */
@media (max-width: 768px) {
  .testimonials-header {
    flex-direction: column;
    align-items: center;
  }
}  
  
/* Mobile */
@media (max-width: 768px) {
  .testimonials-header img {
    width: 250px !important;
    margin-right: 0;
    margin-bottom: 10px;
  }
  
  .testimonials-header h2 {
    font-size: 2.5rem !important;
  }  
  
  .testimonial-card {
    min-height: 280px;
    margin: 60px 10px 20px 10px;
  }
  
  .testimonial-text {
    font-size: 1rem;
  }
  
  .testimonial-author {
    font-size: 0.9rem;
  }
}
/* Manifesto Title */
.manifesto-title {
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.1;
}

.manifesto-bre {
  display: block;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 42px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ff6e04;
  letter-spacing: 3px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 5px;
}

.manifesto-the {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-right: 15px;
}

.manifesto-man {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 85px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -1.5px;
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.manifesto-ifesto {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
  .manifesto-the {
    font-size: 48px;
    margin-right: 10px;
  }
  
  .manifesto-man {
    font-size: 58px;
    -webkit-text-stroke: 2px #dc200d;
  }
  
  .manifesto-ifesto {
    font-size: 48px;
  }
}

@media (max-width: 480px) {
  .manifesto-the {
    font-size: 36px;
  }
  
  .manifesto-man {
    font-size: 56px;
  }
  
  .manifesto-ifesto {
    font-size: 36px;
  }
}
/* ================================
   PRODUCT INFO SECTION V3
   Navy Blue Stars + Purple Gradient Overlay
   BIGGER & BOLDER
   ================================ */

.product-info-section-v2 {
  background-image: url('/cdn/shop/files/splash_page_bkgnd.png?v=1757089169');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}

/* Navy to Purple Gradient Overlay */
.product-info-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(10, 10, 30, 0.95) 0%, 
    rgba(20, 15, 40, 0.95) 35%, 
    rgba(30, 20, 50, 0.95) 65%, 
    rgba(15, 12, 35, 0.95) 100%);
  z-index: 0;
}
.product-info-container-v2 {
  max-width: 1350px;
  margin: 0 auto;
  display: grid;
grid-template-columns: 1fr 1fr;
  gap: 50px;
align-items: flex-start;
  position: relative;
  z-index: 1;
}

/* Left Side - Image */
.product-info-image-v2 {
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid #ff6e04;
  box-shadow: 
    0 20px 50px rgba(0, 0, 0, 0.5),
    0 0 40px rgba(255, 110, 4, 0.25);
  transition: all 0.4s ease;
}

.product-info-image-v2:hover {
  box-shadow: 
    0 25px 60px rgba(0, 0, 0, 0.6),
    0 0 50px rgba(255, 110, 4, 0.35);
  transform: translateY(-5px);
}

.product-info-image-v2 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 20% top;
  display: block;
  aspect-ratio: 3 / 4;
}

/* Right Side - Content */
.product-info-content-v2 {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Headline - Full Width */
.headline-text-v2 {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 72px;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 0 20px;
  align-items: center;
  margin: 0;
}

.headline-text-v2 .text-orange {
  color: #ff6e04;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 25px rgba(255, 110, 4, 0.4);
}

.headline-text-v2 .text-red {
  color: #dc200d;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 20px rgba(220, 32, 13, 0.3);
}

/* Tabs */
.product-info-tabs-v2 {
  display: flex;
  gap: 0;
  border: 3px solid #ff6e04;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 6px 20px rgba(255, 110, 4, 0.25);
}

.info-tab-v2 {
  flex: 1;
  padding: 16px 20px;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.95);
  border: none;
  border-right: 2px solid rgba(255, 110, 4, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  color: #333;
  text-align: center;
  text-transform: uppercase;
}

.info-tab-v2:last-child {
  border-right: none;
}

.info-tab-v2.active {
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.info-tab-v2:hover:not(.active) {
  background: rgba(255, 110, 4, 0.15);
  color: #ff6e04;
}

/* Panel */
.product-info-panel-v2 {
  background: rgba(0, 0, 0, 0.45);
  border: 2px solid rgba(255, 110, 4, 0.5);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.product-info-panel-v2.hidden {
  display: none;
}

.info-panel-header-v2 {
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  color: #ffffff;
  padding: 18px 28px;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.info-panel-body-v2 {
  padding: 30px;
  font-family: 'Montserrat', sans-serif;
}

.info-panel-body-v2 p,
.panel-intro,
.subscribe-intro {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 22px;
}

.info-panel-body-v2 strong {
  color: #ffffff;
  font-weight: 700;
}

.info-panel-body-v2 .highlight {
  color: #ff6e04;
  font-weight: 700;
}

/* Ingredient Pills */
.ingredient-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 25px 0;
}

.ing-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 110, 4, 0.5);
  color: #ffffff;
  padding: 10px 18px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.ing-pill:hover {
  background: rgba(255, 110, 4, 0.25);
  border-color: #ff6e04;
  transform: translateY(-2px);
}

.ing-pill.special {
  background: linear-gradient(90deg, rgba(255, 110, 4, 0.35), rgba(220, 32, 13, 0.35));
  border-color: #ff6e04;
  color: #ff6e04;
  font-weight: 800;
}

/* Checklist - BIGGER */
.info-checklist-v2 {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.info-checklist-v2 li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 17px;
  color: #ffffff;
  font-weight: 700;
  position: relative;
  padding-left: 40px;
  font-family: 'Montserrat', sans-serif;

}

.info-checklist-v2 li::before {
  content: '✓';
  position: absolute;
  left: 0;
  width: 28px;
  height: 28px;
  background: linear-gradient(45deg, #ff6e04, #dc200d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: bold;
  font-size: 15px;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
}

/* Time Release Badge - BLACK */
.time-release-badge {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 110, 4, 0.5);
  border-radius: 14px;
  padding: 18px 24px;
  margin-top: 20px;
}
.badge-icon {
  font-size: 32px;
  color: #ff6e04; /* ADD THIS */
  filter: none; /* CHANGE THIS - remove the old filter */
}

.badge-text {
  font-size: 16px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.badge-text strong {
  color: #ff6e04;
  font-size: 17px;
}

/* Dosage Highlight (How to Use) - Purple gradient */
.dosage-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  border-radius: 14px;
  padding: 25px 35px;
  margin-bottom: 28px;
  box-shadow: 0 10px 30px rgba(255, 110, 4, 0.35);
}

.dosage-number {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 85px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.dosage-text {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  line-height: 1.2;
}

/* Pro Tip - BLACK */
.pro-tip {
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 110, 4, 0.5);
  border-radius: 12px;
  padding: 16px 20px;
  margin-top: 18px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.95);
}

.pro-tip strong {
  color: #ff6e04;
}

/* Warning Note - BLACK */
.warning-note {
  background: rgba(0, 0, 0, 0.6);
  border-left: 4px solid #ff6e04;
  padding: 16px 20px;
  margin-top: 18px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 0 10px 10px 0;
}


.warning-note strong {
  color: #ff6e04;
}

/* Save Highlight (Subscribe) - BLACK */
.save-highlight {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 14px;
  padding: 25px 35px;
  margin-bottom: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 110, 4, 0.5);
}

.save-percent {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 72px;
  font-weight: 900;
  color: #ff6e04;
  line-height: 1;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.save-text {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* CTA Button - BIGGER */
.product-info-cta-v2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  color: #ffffff;
  padding: 24px 55px;
  border-radius: 50px;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 800;
  text-decoration: none;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 3px;
  box-shadow: 0 10px 35px rgba(255, 110, 4, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-top: 15px;
}

.product-info-cta-v2::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
  border-radius: 50px; /* ADD THIS */
}

.product-info-cta-v2:hover::before {
  left: 100%;
}

.product-info-cta-v2:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 15px 45px rgba(255, 110, 4, 0.55);
  color: #ffffff;
}

/* .cta-arrow removed per revision */

/* ================================
   RESPONSIVE STYLES
   ================================ */

@media (max-width: 1200px) {
  .headline-text-v2 {
    font-size: 48px;
  }
}

@media (max-width: 1024px) {
  .product-info-section-v2 {
    padding: 80px 30px;
  }
  
  .product-info-container-v2 {
    gap: 50px;
  }
  
  .headline-text-v2 {
    font-size: 42px;
  }
  
  .info-checklist-v2 {
    grid-template-columns: 1fr;
  }
  
  .dosage-number {
    font-size: 70px;
  }
  
  .save-percent {
    font-size: 60px;
  }
}

@media (max-width: 900px) {
  .product-info-section-v2 {
    padding: 40px 20px;
  }

  .product-info-container-v2 {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .product-info-image-v2 {
    max-width: none;
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    border-width: 3px;
    border-radius: 14px;
  }

  .product-info-image-v2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .product-info-content-v2 {
    gap: 14px;
  }

  .headline-text-v2 {
    justify-content: center;
    text-align: center;
    font-size: 38px;
  }
}

@media (max-width: 600px) {
  .product-info-section-v2 {
    padding: 20px 15px;
  }

  .product-info-container-v2 {
    gap: 16px;
  }

  .headline-text-v2 {
    font-size: 30px;
    gap: 0 10px;
  }
  
  .info-tab-v2 {
    font-size: 12px;
    padding: 14px 8px;
    letter-spacing: 0.5px;
  }
  
  .info-panel-header-v2 {
    font-size: 18px;
    padding: 14px 20px;
  }
  
  .info-panel-body-v2 {
    padding: 22px;
  }
  
  .info-panel-body-v2 p,
  .panel-intro,
  .subscribe-intro {
    font-size: 16px;
  }
  
  .ingredient-pills {
    gap: 8px;
  }
  
  .ing-pill {
    font-size: 12px;
    padding: 8px 14px;
      font-family: 'Montserrat', sans-serif;

  }
  
  .dosage-highlight,
  .save-highlight {
    flex-direction: column;
    text-align: center;
    padding: 22px;
  }
  
  .dosage-number {
    font-size: 60px;
  }
  
  .dosage-text {
    font-size: 22px;
  }
  
  .save-percent {
    font-size: 50px;
  }
  
  .save-text {
    font-size: 22px;
  }
  
  .info-checklist-v2 li {
    font-size: 15px;
    padding-left: 35px;
  }
  
  .info-checklist-v2 li::before {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
  
  .product-info-cta-v2 {
    font-size: 20px;
    padding: 20px 40px;
    letter-spacing: 2px;
  }
  
  .cta-arrow {
    font-size: 22px;
  }
}

/* ================================
   ANIMATED INGREDIENT CAROUSEL
   2 Rows - Opposite Directions
   ================================ */

.ingredients-carousel-wrapper {
  margin: 25px 0;
  overflow: hidden;
  position: relative;
}

/* Fade edges for smooth look */
.ingredients-carousel-wrapper::before,
.ingredients-carousel-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}

.ingredients-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, rgba(15, 15, 45, 1) 0%, transparent 100%);
}

.ingredients-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(15, 15, 45, 1) 100%);
}

.ingredients-row {
  overflow: hidden;
  padding: 8px 0;
}

.ingredients-track {
  display: flex;
  gap: 15px;
  width: max-content;
}

/* Row 1 - Scrolls LEFT */
.row-left .ingredients-track {
  animation: scrollLeft 42s linear infinite;
}

/* Row 2 - Scrolls RIGHT */
.row-right .ingredients-track {
  animation: scrollRight 42s linear infinite;
}

/* Pause on hover */
.ingredients-carousel-wrapper:hover .ingredients-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scrollLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}
/* ================================
   ANIMATED INGREDIENT CAROUSEL
   2 Rows - Opposite Directions - FIXED
   ================================ */

/* Contain everything */
.product-info-content-v2 {
  overflow: hidden !important;
}

/* Fix accordion height shift */
.product-info-panel-v2 {
  overflow: hidden !important;
  min-height: 450px; /* Adjust this value as needed */
}

/* OR - better approach: set height on the panel body */
.info-panel-body-v2 {
  overflow: hidden !important;
  min-height: 380px; /* Adjust to fit your tallest panel */
}

.ingredients-carousel-wrapper {
  margin: 25px 0;
  overflow: hidden !important;
  position: relative;
  width: 100%;
}

.ingredients-row {
  overflow: hidden !important;
  padding: 8px 0;
  width: 100%;
}

.ingredients-track {
  display: flex;
  gap: 15px;
  width: max-content;
}

/* Row 1 - Scrolls LEFT */
.row-left .ingredients-track {
  animation: scrollLeft 42s linear infinite;
}

/* Row 2 - Scrolls RIGHT */
.row-right .ingredients-track {
  animation: scrollRight 42s linear infinite;
}

/* Pause on hover */
.ingredients-carousel-wrapper:hover .ingredients-track {
  animation-play-state: paused;
}

/* Keyframes */
@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes scrollRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Ingredient Pills */
.ingredients-carousel-wrapper .ing-pill {
  background: rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 110, 4, 0.5);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 30px;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.ingredients-carousel-wrapper .ing-pill:hover {
  background: rgba(255, 110, 4, 0.3);
  border-color: #ff6e04;
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(255, 110, 4, 0.4);
}

.ingredients-carousel-wrapper .ing-pill.special {
  background: linear-gradient(90deg, rgba(255, 110, 4, 0.4), rgba(220, 32, 13, 0.4));
  border-color: #ff6e04;
  color: #ff6e04;
  font-weight: 800;
  box-shadow: 0 0 15px rgba(255, 110, 4, 0.3);
}

.ingredients-carousel-wrapper .ing-pill.special:hover {
  background: linear-gradient(90deg, rgba(255, 110, 4, 0.6), rgba(220, 32, 13, 0.6));
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.5);
}
/* BUTTON FIX - Add at bottom of CSS */
.product-info-cta-v2 {
  overflow: hidden !important;
  box-shadow: none !important; /* Remove shadow temporarily to test */
}

/* Responsive */
@media (max-width: 768px) {
  .ingredients-carousel-wrapper .ing-pill {
    padding: 10px 18px;
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .ingredients-carousel-wrapper .ing-pill {
    padding: 8px 14px;
    font-size: 11px;
  }
}

/* ================================
   FAQ SECTION - BIGGER & BOLDER
   ================================ */

.faq-wrapper {
  background-image: url('/cdn/shop/files/splash_page_bkgnd.png?v=1757089169');
  background-size: cover;
  background-position: center;
  padding: 80px 0;
}

/* FAQ Main Title - White with Red Outline */
.faq-main-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 100px;
  font-weight: 900;
  text-transform: none;
  text-align: center;
  color: #ffffff;
  -webkit-text-stroke: 3px #dc200d;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(220, 32, 13, 0.4);
  margin: 0 0 50px 0;
  letter-spacing: 8px;
}

.faq-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: start;
}

.faq-item {
  border: 3px solid #ff6e04;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.98);
  align-self: start;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #dc200d;
  box-shadow: 0 12px 35px rgba(255, 110, 4, 0.4);
  transform: translateY(-3px);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 25px;
  background: transparent;
  border: none;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #000000;
  text-align: left;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.faq-question:hover {
  background: rgba(255, 110, 4, 0.1);
}

.faq-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
}

.faq-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-item.active .faq-icon {
  transform: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-content {
  padding: 0 25px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  line-height: 1.8;
  color: #000000;
  font-weight: 600;
  border-top: 2px solid rgba(255, 110, 4, 0.3);
  padding-top: 20px;
  margin-top: 5px;
}

/* Responsive */
@media (max-width: 900px) {
  .faq-main-title {
    font-size: 70px;
    -webkit-text-stroke: 2px #dc200d;
    letter-spacing: 5px;
  }
  
  .faq-section {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  
  .faq-question {
    font-size: 20px;
    padding: 20px;
  }
}

@media (max-width: 600px) {
  .faq-wrapper {
    padding: 50px 0;
  }
  
  .faq-main-title {
    font-size: 50px;
    letter-spacing: 3px;
    margin-bottom: 30px;
  }
  
  .faq-question {
    font-size: 18px;
    padding: 18px 15px;
  }
  
  .faq-answer-content {
    font-size: 15px;
    padding: 0 15px 20px;
  }
  
  .faq-icon {
    width: 40px;
    height: 40px;
  }
}
/* ================================
   BRAND VIDEO SECTION
   ================================ */

.brand-video-section {
  background: url('/cdn/shop/files/gradient_blue_REVISION.png?v=1769801501') center/cover no-repeat;
  padding: 70px 40px;
  position: relative;
}
.brand-video-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.brand-video-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.title-we-are {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 10px;
}

.brand-video-logo {
  max-width: 500px;
  height: auto;
}

/* First video section - wrapper fills the aspect-ratio container */
.video-container .video-wrapper {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

/* Brand video section - wrapper needs its own aspect ratio and border */
.brand-video-container .video-wrapper {
  position: relative !important;
  width: 100% !important;
  height: 0 !important;
  padding-bottom: 56.25% !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  border: 4px solid #ff6e04 !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5) !important;
}

.brand-video-container .video-wrapper iframe,
.brand-video-container .video-wrapper video {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  border-radius: 12px !important;
}

.brand-video-container .video-wrapper .video-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.brand-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.video-play-btn {
  display: none;
}

.video-play-btn svg {
  width: 30px;
  height: 30px;
  color: #ffffff;
  margin-left: 5px;
}

.custom-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.custom-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

.custom-play-btn svg {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}
/* ================================
   MANIFESTO TITLE - ONE LINE VERSION
   ================================ */

/* Manifesto Header Row - Logo + Title on One Line - FORCED */
.manifesto-header-row {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  justify-content: center !important;
  gap: 15px !important;
  margin-bottom: 40px !important;
  flex-wrap: nowrap !important;
}

.brand-video-logo-inline {
  height: 110px !important;
  width: auto !important;
  flex-shrink: 0 !important;
  align-self: center !important;
}

.brand-video-name-inline {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 1px #000000;
  letter-spacing: -1.5px;
  line-height: 1;
  flex-shrink: 0;
}

.brand-video-name-inline .bre-orange {
  color: #ff6e04;
}

.brand-video-name-inline .bre-red {
  color: #dc200d;
}

.brand-video-name-inline sup {
  font-size: 0.35em;
  vertical-align: super;
}

.bre-energy-y {
  position: relative;
  display: inline-block;
}

.bre-energy-y .bre-reg {
  position: absolute;
  top: -0.15em;
  right: -0.55em;
  font-size: 0.28em;
  color: #ff6e04;
  -webkit-text-stroke: 0;
}
.manifesto-title-inline {
  display: flex !important;
  flex-direction: row !important;
  align-items: baseline !important;
  gap: 10px !important;
  margin: 0 !important;
  flex-wrap: nowrap !important;
}

.manifesto-man,
.manifesto-ifesto {
  margin: 0;
  padding: 0;
}

/* Horizontal BRE logo in manifesto section */
.brand-video-logo-horizontal {
  height: 60px;
  width: auto;
  flex-shrink: 0;
  align-self: center;
}

@media (max-width: 900px) {
  .brand-video-logo-horizontal {
    height: 45px;
  }
}

@media (max-width: 600px) {
  .brand-video-logo-horizontal {
    height: 36px;
  }
}

/* Dark CTA variant — for use on orange backgrounds */
.features-button--dark {
  background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
  color: #ffffff !important;
  border: 2px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 6px 24px rgba(37, 99, 235, 0.4);
}

.features-button--dark:hover {
  background: linear-gradient(135deg, #2563eb, #3b82f6) !important;
  box-shadow: 0 10px 32px rgba(37, 99, 235, 0.5);
  border-color: rgba(255, 255, 255, 0.4);
}

/* MAN + IFESTO = one word — zero gap between them */
.manifesto-man {
  margin-right: -10px !important;
  letter-spacing: -2px;
}

.manifesto-ifesto {
  letter-spacing: -1.5px;
}


@media (max-width: 900px) {
  .manifesto-header-row {
    flex-wrap: wrap !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 10px !important;
    margin-bottom: 20px !important;
  }

  .brand-video-logo-inline {
    height: 60px !important;
  }

  .brand-video-name-inline {
    font-size: 42px;
    text-align: center;
  }

  .manifesto-title-inline {
    justify-content: center !important;
  }

  .manifesto-title-inline .manifesto-the,
  .manifesto-title-inline .manifesto-ifesto {
    font-size: 46px;
  }

  .manifesto-title-inline .manifesto-man {
    font-size: 56px;
    -webkit-text-stroke: 2px #dc200d;
  }

  .manifesto-bre {
    font-size: 36px;
    text-align: center;
  }

  .brand-video-section {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .manifesto-title-inline .manifesto-the,
  .manifesto-title-inline .manifesto-ifesto {
    font-size: 40px;
  }

  .manifesto-title-inline .manifesto-man {
    font-size: 50px;
    -webkit-text-stroke: 2px #dc200d;
  }

  .brand-video-name-inline {
    font-size: 36px;
  }

  .brand-video-logo-inline {
    height: 50px;
  }

  .manifesto-bre {
    font-size: 30px;
  }
}
/* ================================
   BRE LIFESTYLE SECTION
   ================================ */

.bre-lifestyle {
  background: #000000;
  padding: 80px 0;
  overflow: hidden;
}

.bre-lifestyle .container {
  max-width: 100%;
  margin: auto;
  padding: 0 40px;
}

.bre-lifestyle h2 {
  text-align: center;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 72px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -1.5px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
  margin-bottom: 60px;
  line-height: 1.2;
}

.bre-lifestyle h2 .bre-b,
.bre-lifestyle h2 .bre-e {
  color: #ff6e04;
  -webkit-text-fill-color: #ff6e04;
}

.bre-lifestyle h2 .bre-r {
  color: #dc200d;
  -webkit-text-fill-color: #dc200d;
}

.bre-lifestyle h2 small {
  display: block;
  margin-top: 15px;
  font-family: var(--font-body), Arial, sans-serif;
  font-size: 20px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
  -webkit-text-stroke: 0;
  -webkit-text-fill-color: #ffffff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  opacity: 0.9;
}

.slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.slider:hover .track {
  animation-play-state: paused;
}

.card {
  width: 320px;
  height: 480px;
  border-radius: 20px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  background: transparent;
}

.card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card--landscape {
  width: 760px;
  height: 480px;
}

.card--wide {
  width: 400px;
}
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.bre-lifestyle .track:hover {
  animation-play-state: running !important;
}

.bre-lifestyle .slider:hover .track {
  animation-play-state: running !important;
}

/* Responsive */
@media (max-width: 768px) {
  .bre-lifestyle {
    padding: 50px 0;
  }
  
  .bre-lifestyle h2 {
    font-size: 48px;
  }
  
  .bre-lifestyle h2 small {
    font-size: 16px;
  }
  
  .card {
    width: 280px;
    height: 480px;
  }

  .card--landscape {
    width: 780px;
    height: 480px;
    aspect-ratio: unset;
    background: #0C0F1E;
  }

  .card--landscape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
/* ================================
   FINAL SIMPLIFIED PRICING BLOCK
   ================================ */

.final-pricing-section {
  background: linear-gradient(135deg, #0C0F1E 0%, #1a1d2e 100%);
  padding: 80px 24px;
  text-align: center;
}

.final-pricing-container {
  max-width: 1100px;
  margin: 0 auto;
}

.final-pricing-title {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.final-pricing-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  margin-top: 40px;
}

.final-pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 40px 24px;
  position: relative;
  transition: all 0.3s ease;
  cursor: pointer;
}

.final-pricing-card:hover {
  border-color: #ff6e04;
  transform: translateY(-3px);
}

.final-pricing-card.selected {
  border-color: #ff6e04;
  box-shadow: 0 0 30px rgba(255, 110, 4, 0.2);
}

.final-pricing-card--popular {
  border-color: #ff6e04;
  box-shadow: 0 0 30px rgba(255, 110, 4, 0.2);
}

.final-pricing-badge {
  position: absolute;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6e04, #dc200d);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  white-space: normal;
  line-height: 1.4;
  text-align: center;
  min-width: 200px;
  box-shadow: 0 2px 8px rgba(255, 110, 4, 0.4);
  padding: 8px 20px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.final-pricing-badge--committed {
  background: #28a745;
}

.final-pricing-qty {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.final-pricing-duration {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 12px;
}

.final-pricing-retail {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 700;
  margin-bottom: 4px;
}

.final-pricing-retail s {
  text-decoration: line-through;
  text-decoration-color: #dc200d;
}

.final-pricing-founder {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 42px;
  font-weight: 700;
  color: #ff6e04;
}

.final-pricing-per-bottle {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.final-pricing-strip {
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 4px;
  color: rgba(255, 255, 255, 0.85);
  font-family: 'DIN Alternate', 'DIN Condensed', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 30px;
}

.final-pricing-cta {
  margin-top: 10px;
}

@media (max-width: 768px) {
  .final-pricing-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin: 0 auto 30px;
  }

  .final-pricing-card {
    padding: 20px 10px;
  }

  .final-pricing-badge {
    font-size: 10px;
    padding: 4px 14px;
    top: -14px;
    white-space: nowrap;
    min-width: auto;
  }

  .final-pricing-qty {
    font-size: 22px;
  }

  .final-pricing-duration {
    font-size: 14px;
  }

  .final-pricing-retail {
    font-size: 20px;
  }

  .final-pricing-founder {
    font-size: 28px;
  }

  .final-pricing-per-bottle {
    font-size: 13px;
  }

  .final-pricing-title {
    font-size: 36px;
  }
}

/* Final pricing enhancements */
.final-pricing-title--red {
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: 0 0 20px rgba(220, 32, 13, 0.3);
}

.final-pricing-card.selected {
  border-color: #ff6e04;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.8), 0 0 50px rgba(255, 110, 4, 0.5), 0 0 80px rgba(255, 110, 4, 0.3);
  animation: finalCardGlow 2s ease-in-out infinite alternate;
}

.final-pricing-card--glow:not(.selected) {
  box-shadow: none;
  animation: none;
}

@keyframes finalCardGlow {
  from { box-shadow: 0 0 25px rgba(255, 110, 4, 0.4), 0 0 50px rgba(255, 110, 4, 0.15); }
  to { box-shadow: 0 0 35px rgba(255, 110, 4, 0.6), 0 0 70px rgba(255, 110, 4, 0.25); }
}

.final-pricing-savings {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #1a8f36;
  margin-top: 10px;
}

.features-button--xl {
  font-size: 22px !important;
  padding: 22px 60px !important;
  letter-spacing: 2px;
}

@media (max-width: 768px) {
  .final-pricing-savings {
    font-size: 14px;
  }
  .features-button--xl {
    font-size: 20px !important;
    padding: 20px 40px !important;
  }
}

/* ================================
   FOOTER
   ================================ */

.site-footer.bre-footer {
  margin-top: 0;
}

/* Top Section - Purple Gradient Background */
.footer-top-section {
  background: url('/cdn/shop/files/purple_blue_gradient3.png?v=1770143353') center center / cover no-repeat;
  padding-top: 70px;
  padding-bottom: 50px;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  height: 140px;
  width: auto;
  object-fit: contain;
  align-self: flex-start;
}

.footer-brand--centered {
  align-items: center;
  text-align: center;
}

.footer-brand--centered .footer-logo,
.footer-logo--large {
  height: 160px;
  align-self: center;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.social-link {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: linear-gradient(45deg, var(--orange-primary, #ff6e04), var(--red-primary, #dc200d));
  transform: translateY(-3px);
}

.social-link svg {
  width: 26px;
  height: 26px;
}

.footer-links-group h4 {
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 24px 0;
  color: #ffffff;
}

.footer-links-group ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links-group li {
  margin-bottom: 14px;
}

.footer-links-group a {
  font-family: 'Montserrat', sans-serif;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer-links-group a:hover {
  color: var(--orange-primary, #ff6e04);
}

.footer-newsletter h4 {
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 14px 0;
  color: #ffffff;
}

.footer-newsletter p {
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 20px 0;
}

.newsletter-form {
  display: flex;
  gap: 0;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: 2px solid #ffffff;
  border-right: none;
  border-radius: 25px 0 0 25px;
  background: #ffffff;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #000000;
  font-size: 16px;
  font-weight: 600;
}

.newsletter-form input:focus {
  border-color: var(--orange-primary, #ff6e04);
}

.newsletter-form button {
  padding: 14px 24px;
  background: linear-gradient(45deg, var(--orange-primary, #ff6e04), var(--red-primary, #dc200d));
  border: none;
  border-radius: 0 25px 25px 0;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.newsletter-form button:hover {
  transform: scale(1.05);
}

/* Combined Slogans */
.footer-slogans {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.slogan-bird,
.bre-slogan {
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ff6e04;
  -webkit-text-stroke: 2px #000000;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.slogan-y {
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 52px;
  font-weight: 900;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: 2px var(--red-primary, #dc200d);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

.slogan-divider {
  font-size: 52px;
  color: var(--orange-primary, #ff6e04);
  font-weight: 900;
}

/* Bottom Section - Purple Gradient Background */
.footer-bottom {
  background: url('/cdn/shop/files/purple_blue_gradient3.png?v=1770143353') center center / cover no-repeat;
  color: #ffffff;
  padding: 24px 0;
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  text-align: center;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-legal p {
  font-family: 'Montserrat', sans-serif;
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.legal-links {
  display: flex;
  gap: 24px;
  justify-content: center;
}

.legal-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-links a:hover {
  color: var(--orange-primary, #ff6e04);
}

.footer-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  width: 100%;
}

.footer-disclosure {
  text-align: center;
  padding: 16px 20px 0;
  margin-bottom: 10px;
}

.footer-disclosure p {
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 6px 0;
  line-height: 1.5;
}

.badge-item {
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
}

/* Responsive */
@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .footer-newsletter {
    grid-column: span 2;
  }
  
  .slogan-y,
  .slogan-bird {
    font-size: 40px;
  }
  
  .slogan-divider {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .footer-top-section {
    padding: 50px 0;
  }
  
  .footer-container {
    padding: 0 20px;
  }
  
  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }
  
  .footer-brand {
    grid-column: span 1;
    align-items: center;
  }
  
  .footer-logo {
    align-self: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-newsletter {
    grid-column: span 1;
  }
  
  .footer-slogans {
    flex-direction: column;
    gap: 10px;
  }
  
  .slogan-y,
  .slogan-bird {
    font-size: 32px;
  }
  
  .slogan-divider {
    display: none;
  }
  
  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .footer-links-group h4 {
    font-size: 17px;
  }
  
  .footer-links-group a,
  .footer-newsletter p {
    font-size: 15px;
  }
}
/* ================================
   BRE TIMELINE SECTION - "How Does Big Richard Energy Work?"
   CLEAN VERSION - No conflicts
   ================================ */

.bre-timeline-section {
  background: url('/cdn/shop/files/purple_blue_gradient3.png?v=1770143353') center/cover no-repeat !important;
  position: relative !important;
  padding: 80px 20px;
  overflow: hidden;
}

/* Ghost Rooster Watermark - removed per client request */
.bre-timeline-section::before {
  display: none !important;
}

.bre-timeline-container {
  position: relative !important;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  z-index: 2 !important;
}

/* Timeline Title */
.bre-timeline-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #ffffff;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: none;
}

/* BIG and ENERGY in orange - no stroke */
.bre-timeline-title .bre-orange {
  color: #ff6e04 !important;
  -webkit-text-stroke: 0 !important;
  -webkit-text-stroke-width: 0 !important;
  text-shadow: none !important;
}

/* The Y-Plex - white with red outline */
.bre-timeline-title .bre-highlight {
  color: #ffffff !important;
  -webkit-text-stroke: 1.5px #dc200d !important;
  text-shadow: none !important;
}

/* Timeline Intro Text */
.bre-timeline-intro {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.9);
  max-width: 750px;
  margin: 0 auto 50px auto;
  font-weight: 600;
  line-height: 1.6;
}

/* Timeline Grid - 3 Columns */
.bre-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px !important;
  text-align: left;
  margin-bottom: 50px;
}
.bre-timeline-grid {
  max-width: 1400px;
  gap: 25px !important;
  margin: 0 auto 50px auto;
}

/* Timeline Phase Card */
.bre-timeline-phase {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 16px;
  padding: 40px 35px !important;
  border: 2px solid rgba(255, 110, 4, 0.3);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(5px);
  min-height: 320px;
  text-align: center;
}

.bre-timeline-phase::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.bre-timeline-phase:hover {
  transform: translateY(-8px);
  background: rgba(0, 0, 0, 0.55);
  border-color: rgba(255, 110, 4, 0.6);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 110, 4, 0.2);
}

.bre-timeline-phase:hover::after {
  opacity: 1;
}

/* Phase Header - Stacked Layout */
.bre-phase-header {
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
  gap: 0 !important;
  margin-bottom: 20px !important;
  align-items: center !important;
}

.bre-phase-top-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.bre-phase-icon {
  font-size: 1.8rem;
  line-height: 1;
  filter: drop-shadow(0 0 8px rgba(255, 110, 4, 0.5));
}

.bre-phase-name {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 2.8rem !important;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bre-phase-days {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 1.8rem !important;
  font-weight: 700;
  color: #ff6e04;
  letter-spacing: 1.5px !important;
  text-transform: uppercase;
  opacity: 0.9;
  text-align: center;
  width: 100%;
  margin-top: -2px !important;
}

/* Phase Content List - CENTERED, CLEAN */
.bre-phase-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.bre-phase-list li {
  padding: 0 !important;
  margin-bottom: 8px !important;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem !important;
  line-height: 1.4 !important;
  font-weight: 700;
}

.bre-phase-list li::before {
  display: none;
}

.bre-phase-list li:last-child {
  margin-bottom: 0;
}

.bre-phase-tagline {
  color: #ff6e04;
  font-family: 'DIN Condensed', sans-serif;
  font-size: 1.8rem;
  font-weight: 900;
  margin-top: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  text-shadow: 0 0 15px rgba(255, 110, 4, 0.4);
  -webkit-text-stroke: 0.5px #dc200d;
}

/* Ingredients Accordion */
.bre-ingredients-accordion {
  max-width: 800px;
  margin: 40px auto 0;
}

.bre-accordion-title {
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 1.6rem;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-align: center;
  margin-bottom: 20px;
}

.bre-accord-item {
  border: 2px solid rgba(255, 110, 4, 0.4);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.3);
  transition: border-color 0.3s ease;
}

.bre-accord-item:hover,
.bre-accord-item.active {
  border-color: #ff6e04;
}

.bre-accord-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 25px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.bre-accord-question:hover {
  background: rgba(255, 110, 4, 0.1);
}

.bre-accord-icon {
  color: #ff6e04;
  font-size: 1.5rem;
  font-weight: 700;
  transition: transform 0.3s ease;
}

.bre-accord-item.active .bre-accord-icon {
  transform: rotate(45deg);
}

.bre-accord-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.bre-accord-item.active .bre-accord-answer {
  max-height: 600px;
}

.bre-accord-content {
  padding: 0 25px 25px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

.bre-accord-content p {
  margin: 0 0 15px;
}

.bre-accord-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.bre-accord-content li {
  padding: 6px 0;
  padding-left: 16px;
  position: relative;
}

.bre-accord-content li::before {
  content: '•';
  color: #ff6e04;
  position: absolute;
  left: 0;
  font-weight: 900;
}

.bre-accord-content strong {
  color: #ff6e04;
}

.bre-accord-closing {
  margin-top: 15px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .bre-accordion-title {
    font-size: 1.3rem;
  }
  .bre-accord-question {
    font-size: 1.1rem;
    padding: 15px 18px;
  }
  .bre-accord-content {
    font-size: 0.85rem;
    padding: 0 18px 20px;
  }
}

/* Timeline CTA */
.bre-timeline-cta {
  text-align: center;
  margin-top: 20px;
}

.bre-timeline-btn {
  display: inline-block;
  background: linear-gradient(90deg, var(--orange-primary, #ff6e04), var(--red-primary, #dc200d));
  color: #ffffff;
  padding: 24px 60px;
  border-radius: 50px;
  font-family: 'DIN Condensed', var(--font-brand), 'Arial Black', sans-serif;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  box-shadow: 0 8px 30px rgba(255, 110, 4, 0.45);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.bre-timeline-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s ease;
}

.bre-timeline-btn:hover::before {
  left: 100%;
}

.bre-timeline-btn:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 110, 4, 0.55);
  color: #ffffff;
}

/* ================================
   TIMELINE RESPONSIVE STYLES
   ================================ */

@media (max-width: 1024px) {
  .bre-timeline-grid {
    gap: 15px !important;
  }
  
  .bre-timeline-phase {
    padding: 25px 18px !important;
  }
  
  .bre-phase-name {
    font-size: 1.6rem !important;
  }
  
  .bre-phase-list li {
    font-size: 0.9rem !important;
  }
}

@media (max-width: 900px) {
  .bre-timeline-section {
    padding: 60px 20px;
  }

  .bre-timeline-section::before {
    background-size: 350px auto !important;
    opacity: 0.08 !important;
  }

  .bre-timeline-title {
    font-size: 2.6rem;
  }

  .bre-timeline-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto 30px auto;
    gap: 8px !important;
  }

  .bre-timeline-phase {
    padding: 28px 24px !important;
    border-radius: 12px;
    text-align: center;
    min-height: auto;
  }

  .bre-timeline-phase:hover {
    transform: none;
    box-shadow: none;
  }

  .bre-phase-list {
    text-align: center;
  }

  .bre-phase-icon {
    font-size: 2rem;
  }

  .bre-phase-days {
    font-size: 1.1rem !important;
    margin-top: 6px !important;
  }

  .bre-phase-name {
    font-size: 2.2rem !important;
  }

  .bre-phase-list li {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
  }

  .bre-phase-tagline {
    text-align: center;
  }
}

@media (max-width: 600px) {
  .bre-timeline-section {
    padding: 50px 16px;
  }

  .bre-timeline-section::before {
    background-size: 280px auto !important;
  }

  .bre-timeline-title {
    font-size: 2.4rem;
    letter-spacing: 1px;
  }

  .bre-timeline-intro {
    font-size: 0.95rem;
    margin-bottom: 25px;
    padding: 0 10px;
  }

  .bre-timeline-grid {
    max-width: 340px;
    gap: 6px !important;
  }

  .bre-timeline-phase {
    padding: 24px 20px !important;
    border-radius: 10px;
  }

  .bre-phase-header {
    gap: 0px !important;
    margin-bottom: 14px !important;
  }

  .bre-phase-name {
    font-size: 2rem !important;
  }

  .bre-phase-days {
    font-size: 1rem !important;
    margin-top: 5px !important;
  }

  .bre-phase-list li {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
  }

  .bre-phase-tagline {
    font-size: 1.2rem;
    margin-top: 12px;
  }

  .bre-timeline-btn {
    font-size: 16px;
    padding: 16px 35px;
  }
}

/* ================================
   YPLEX BACKGROUND OVERRIDE
   (Keep this OUTSIDE media queries)
   ================================ */
.yplex-ewd {
  background: url('/cdn/shop/files/purple_blue_gradient3.png?v=1770143353') center/cover no-repeat !important;
}

/* FORCE TIGHT HEADER SPACING */
.bre-phase-header {
  gap: 0 !important;
  margin-bottom: 15px !important;
}

.bre-phase-name {
  margin: 0 0 2px 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.bre-phase-days {
  margin: 0 0 2px 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

@media (max-width: 1024px) {
  .product_section_bg {
    padding: 60px 30px;
  }
  
  .product-section {
    gap: 40px;
  }
  
.product-main-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
  
  .product-title {
    font-size: 46px !important;
  }
}

@media (max-width: 992px) {
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 42px;
  }
}


@media (max-width: 900px) {
  .announcement-bar {
    padding: 8px 36px 8px 12px;
    font-size: 12px;
  }

  .announcement-content {
    display: inline;
    text-align: center;
  }

  .header-container {
    padding: 12px 12px 12px 6px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .header-actions {
    gap: 10px;
  }

  .header-cta {
    display: none;
  }

  .site-logo {
    height: 55px;
    flex-shrink: 0;
  }

  .header-icon {
    width: 22px;
    height: 22px;
  }

  .mobile-menu-toggle {
    font-size: 28px;
    padding: 4px;
    flex-shrink: 0;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 10px 10px 10px 4px;
  }

  .site-logo {
    height: 48px;
  }

  .header-actions {
    gap: 10px;
  }

  .header-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 900px) {
  .product_section_bg {
    padding: 20px 15px;
  }

  .product-section {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .product-image-column {
    position: relative;
    top: 0;
  }

  .product-main-image-wrapper {
    border-width: 3px !important;
    border-radius: 14px !important;
  }

  .thumbnail-gallery {
    flex-wrap: nowrap;
    gap: 6px;
    margin-top: 10px;
    margin-bottom: 0;
  }

  .thumbnail {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0 !important;
    border-radius: 6px !important;
  }

  .thumbnail img {
    object-fit: cover !important;
  }

  .product-info-column {
    min-height: auto;
  }

  .product-brand-name {
    font-size: 2.2rem;
    margin-bottom: 4px;
    text-align: center;
  }

  .product-brand-logo {
    height: 50px !important;
    margin-bottom: 2px;
    margin-left: auto;
    margin-right: auto;
  }

  .product-title-image {
    max-width: 110px;
    margin: 0 auto;
  }

  .product-title {
    margin: 0 0 10px 0 !important;
    text-align: center;
  }

  .pricing-cycle-header {
    margin-top: 5px;
    font-size: 22px;
    margin-bottom: 10px;
  }

  .quantity-section {
    margin-bottom: 12px;
  }

  .quantity-options {
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
  }

  .quantity-card {
    padding: 10px 6px !important;
    border-radius: 8px !important;
  }

  .quantity-badge {
    font-size: 8px;
    padding: 3px 6px;
    top: -8px;
    right: -4px;
  }

  .product-title {
    font-size: 42px !important;
  }

  .quantity-title {
    font-size: 16px !important;
    margin-bottom: 2px;
  }

  .quantity-supply {
    font-size: 10px !important;
    margin-bottom: 4px;
    color: #000 !important;
  }

  /* Save badge size override for mobile */
  .quantity-save-badge {
    font-size: 9px;
    padding: 3px 8px;
    margin-top: 4px;
  }

  .quantity-discount {
    font-size: 10px !important;
    padding: 3px 8px !important;
  }

  .frequency-section {
    margin-bottom: 10px;
  }

  .frequency-card {
    padding: 12px 14px !important;
    margin-bottom: 8px;
  }

  .frequency-header {
    margin-bottom: 6px;
  }

  .frequency-title {
    font-size: 18px !important;
  }

  .frequency-subtitle {
    font-size: 12px !important;
  }

  .frequency-benefits {
    padding-top: 6px;
  }

  .frequency-benefits li {
    font-size: 13px !important;
    margin-bottom: 2px;
  }

  .one-time-card {
    padding: 10px 14px !important;
  }

  .one-time-title {
    font-size: 17px !important;
  }

  .one-time-subtitle {
    font-size: 11px !important;
  }

  .one-time-price {
    font-size: 22px !important;
  }

  .add-to-cart-button {
    padding: 16px 30px;
    font-size: 20px;
  }

  .why-compact-container {
    grid-template-columns: 1fr;
    gap: 20px;
    text-align: center;
  }

  .why-compact-left {
    gap: 5px;
  }

  .why-compact-title {
    width: 250px;
  }

  .vitruvian-wrapper {
    width: 280px;
    height: 280px;
  }

  .spinning-ring {
    width: 270px;
    height: 270px;
  }

  .spinning-ring.ring-2 {
    width: 250px;
    height: 250px;
  }

  .why-compact-vitruvian {
    width: 260px;
  }

  .why-compact-right {
    gap: 10px;
  }

  .why-compact-text {
    font-size: 1rem;
  }

  .why-benefits-row {
    margin: 5px 0 10px 0;
    gap: 20px;
  }

  .why-benefit {
    font-size: 1.1rem;
  }

  .tagline-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 5px;
  }

  .why-cta-btn {
    font-size: 18px;
    padding: 14px 35px;
  }

  .testimonials-title {
    font-size: 36px;
  }

  .title-yplex {
    font-size: 52px;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .testimonial-card {
    max-width: 450px;
    margin: 60px auto 20px;
  }

  .product-info-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clean-ingredients-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .clean-ingredients-right {
    order: -1;
  }

  .clean-ingredients-image {
    max-width: 350px;
  }

  .clean-ingredients-title {
    font-size: 30px;
    text-align: center;
  }

  .clean-ingredients-subtitle {
    font-size: 20px;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .two-column-layout {
    flex-direction: column;
    gap: 40px;
  }

  .features-heading {
    font-size: 2rem;
  }

  .clean-items {
    flex-direction: column;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .footer-brand {
    align-items: center;
  }

  .footer-logo {
    align-self: center;
    height: 80px;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links-group {
    text-align: center;
  }

  .footer-newsletter {
    text-align: center;
  }

  .newsletter-form {
    max-width: 300px;
    margin: 0 auto;
  }

  .footer-info-bar .footer-container {
    flex-direction: column;
    gap: 12px;
  }

  .footer-bottom .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    gap: 12px;
  }

  .footer-badges {
    flex-wrap: wrap;
    justify-content: center;
  }

  .card {
    min-width: 240px;
    height: 420px;
  }

  .card--landscape {
    width: 680px !important;
    height: 420px !important;
    aspect-ratio: unset;
    background: #0C0F1E;
  }

  .card--landscape img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .bre-lifestyle h2 {
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  .quantity-options {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 6px;
  }

  .quantity-card {
    padding: 10px 6px !important;
    border-radius: 8px !important;
  }

  .quantity-badge {
    font-size: 7px;
    padding: 3px 6px;
    top: -8px;
    right: -3px;
  }

  .quantity-title {
    font-size: 14px !important;
    margin-bottom: 2px;
  }

  .quantity-supply {
    font-size: 9px !important;
    margin-bottom: 2px;
  }

  .quantity-save-badge {
    font-size: 8px;
    padding: 2px 6px;
  }

  .flex {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .features-section {
    margin-top: -80px;
    padding: 110px 25px 25px 25px;
  }

  .column {
    padding: 25px;
  }

  .features-heading {
    font-size: 2.5rem;
  }
}

/* ================================
   EMAIL NEWSLETTER POPUP
   ================================ */

.bre-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  animation: popupFadeIn 0.3s ease;
}

@keyframes popupFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.bre-popup {
  background: linear-gradient(145deg, #0C0F1E 0%, #1a1d2e 50%, #0C0F1E 100%);
  border: 2px solid #ff6e04;
  border-radius: 20px;
  max-width: 480px;
  width: 90%;
  position: relative;
  box-shadow: 0 0 60px rgba(255, 110, 4, 0.3), 0 30px 60px rgba(0, 0, 0, 0.5);
  animation: popupSlideUp 0.4s ease;
}

@keyframes popupSlideUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.bre-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  z-index: 2;
  transition: color 0.3s ease;
}

.bre-popup-close:hover {
  color: #ffffff;
}

.bre-popup-content {
  padding: 28px 24px 24px;
  text-align: center;
}

.bre-popup-logo {
  height: 120px;
  width: auto;
  margin: 0 auto 12px;
  display: block;
}

.bre-popup-title {
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0 0 16px 0;
  -webkit-text-stroke: 1px #dc200d;
}

.bre-popup-offers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 12px;
}

.bre-popup-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.bre-popup-amount {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 38px;
  font-weight: 700;
  color: #ff6e04;
}

.bre-popup-desc {
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}

.bre-popup-divider {
  width: 2px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
}

.bre-popup-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 16px 0;
}

.bre-popup-form {
  display: flex;
  gap: 0;
  margin-bottom: 10px;
}

.bre-popup-form input {
  flex: 1;
  padding: 14px 16px;
  border: 2px solid #ffffff;
  border-right: none;
  border-radius: 30px 0 0 30px;
  background: #ffffff;
  color: #1a1a2e;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.bre-popup-form input::placeholder {
  color: #999;
}

.bre-popup-form input:focus {
  border-color: #ff6e04;
}

.bre-popup-form button {
  padding: 14px 24px;
  background: linear-gradient(45deg, #ff6e04, #dc200d);
  border: none;
  border-radius: 0 30px 30px 0;
  color: #ffffff;
  font-family: 'DIN Condensed', 'Arial Black', sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bre-popup-form button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 20px rgba(255, 110, 4, 0.4);
}

.bre-popup-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.4);
  margin: 0 0 12px;
}

.bre-popup-disclaimer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 110, 4, 0.12);
  border: 1px solid rgba(255, 110, 4, 0.4);
  border-radius: 8px;
  padding: 10px 12px;
  margin-top: 10px;
  text-align: left;
}

.bre-popup-disclaimer-icon {
  font-size: 14px;
  flex-shrink: 0;
}

.bre-popup-disclaimer-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.9);
}

.bre-popup-disclaimer-text strong {
  color: #ff6e04;
}

.bre-popup-success {
  padding: 20px 0;
}

@media (max-width: 480px) {
  .bre-popup-content {
    padding: 22px 16px 18px;
  }

  .bre-popup-logo {
    height: 90px;
  }

  .bre-popup-title {
    font-size: 30px;
  }

  .bre-popup-amount {
    font-size: 30px;
  }

  .bre-popup-form button {
    font-size: 13px;
    padding: 14px 16px;
  }
}
/* ================================
   JAY'S FINAL UPDATES — Mar 6, 2026
   ================================ */

/* "Not for everyone... Just for men" — Yplex style (white + red outline) */
.bre-yplex-style {
  color: #ffffff;
  -webkit-text-fill-color: #ffffff;
  -webkit-text-stroke: 2px #dc200d;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.4);
}

/* Orange CTA button — "Start your 90-day cycle" */
.bre-cta-orange {
  display: inline-block;
  background: linear-gradient(135deg, #ff6e04, #e85d00);
  color: #ffffff;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 22px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 18px 48px;
  border-radius: 50px;
  text-decoration: none;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 110, 4, 0.4);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.bre-cta-orange:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 110, 4, 0.5);
}

/* Ingredient section — hover only on desktop, tap on mobile */
.ingredient-card {
  cursor: default !important;
}

.ingredient-card .ingredient-benefit-dropdown {
  pointer-events: none;
}

.ingredient-card:hover .ingredient-benefit-dropdown {
  display: flex !important;
}

.ingredient-card.active .ingredient-benefit-dropdown {
  display: none !important;
}

/* Ingredient text — name white, dose stays orange (brand color) */
.ingredient-card .ingredient-name {
  color: #ffffff;
}

@media (max-width: 768px) {
  .bre-yplex-style {
    -webkit-text-stroke: 1.5px #dc200d;
  }

  .bre-cta-orange {
    font-size: 18px;
    padding: 16px 36px;
    width: 100%;
    max-width: 400px;
  }

  /* Mobile ingredients: hide + icon, restore tap-to-expand */
  .ingredient-expand-icon {
    display: flex !important;
  }

  .ingredient-card {
    cursor: pointer !important;
  }

  /* Allow both hover and tap to show dropdown on mobile */
  .ingredient-card:hover .ingredient-benefit-dropdown,
  .ingredient-card.active .ingredient-benefit-dropdown {
    display: flex !important;
  }
}

/* ================================
   FOUNDER PRICING — BIGGER / BRIGHTER
   ================================ */

/* Announcement bar — bigger, orange glow */
.announcement-bar .announcement-content span {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #ffffff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.announcement-bar .announcement-link {
  color: #ffffff;
  text-decoration: underline;
  font-weight: 700;
}

/* (founder-strip main definition is above — this override removed) */

/* ================================
   STRIKETHROUGH RETAIL PRICING
   ================================ */

.pps-retail-struck {
  font-size: 22px;
  color: #000;
  font-weight: 700;
  margin-bottom: 2px;
  line-height: 1;
}

.pps-retail-struck s {
  text-decoration: line-through;
  text-decoration-color: #dc200d;
}

.pps-savings-tag {
  font-size: 13px;
  font-weight: 800;
  color: #1a8f36;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

/* ================================
   3-BOTTLE FEATURED CARD — LARGER
   ================================ */

.pps-card--featured {
  transform: scale(1.06);
  z-index: 2;
  border-width: 3px;
}

.pps-card--featured:hover {
  transform: scale(1.08);
}

.pps-card--featured .pps-bottles {
  font-size: 28px;
}

.pps-card--featured .pps-price {
  font-size: 38px;
}

.pps-card--featured .pps-badge {
  font-size: 16px;
  padding: 7px 40px;
  background: linear-gradient(135deg, #ff6e04, #dc200d);
  box-shadow: 0 2px 8px rgba(255, 110, 4, 0.4);
  white-space: nowrap;
  line-height: 1.1;
  text-align: center;
  top: -26px;
  min-width: 200px;
}

@media (max-width: 768px) {
  .founder-strip {
    font-size: 14px;
    padding: 12px 16px;
    letter-spacing: 1.5px;
  }

  .founder-strip-icon {
    width: 18px;
    height: 18px;
  }

  .pps-quantity-cards {
    margin-top: 16px;
  }

  .pps-card--featured {
    transform: none;
  }

  .pps-card--featured:hover {
    transform: translateY(-2px);
  }

  .pps-card--featured .pps-bottles {
    font-size: 22px;
  }

  .pps-card--featured .pps-price {
    font-size: 30px;
  }

  .pps-card--featured .pps-badge {
    font-size: 13px;
    padding: 4px 16px;
    white-space: nowrap;
    line-height: 1.1;
    text-align: center;
    top: -14px;
    min-width: auto;
  }

  .pps-retail-struck {
    font-size: 18px;
  }

  .pps-savings-tag {
    font-size: 11px;
  }
}

/* New custom styles for product page revisions */

.product-title-text {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif !important;
  font-size: 40px !important;
  font-weight: 900 !important;
  color: #ffffff !important;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.1 !important;
  margin: 0 0 10px 0 !important;
  text-align: center !important;
  text-shadow: none !important;
  -webkit-text-stroke: none !important;
}

.product-title-text .hero-accent-gradient {
  filter: drop-shadow(0 3px 12px rgba(0, 0, 0, 0.75)) drop-shadow(0 1px 4px rgba(0, 0, 0, 0.5)) !important;
  -webkit-text-stroke: 0.4px #000000;
}

.product-usps {
  list-style: none !important;
  padding: 0 !important;
  margin: 24px auto !important;
  max-width: 460px;
  text-align: left !important;
}

@media (min-width: 768px) {
  .product-title-text {
    font-size: 48px !important;
  }
  .product-usps {
    margin: 24px auto 64px !important;
  }
}

.product-usps li {
  font-family: var(--font-heading), sans-serif !important;
  font-size: 15px !important;
  color: #ffffff !important;
  margin-bottom: 12px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.product-usps li .usp-check {
  color: #ff6e04 !important;
  font-weight: 900 !important;
  font-size: 18px !important;
}

/* ================================
   CONTACT FORM SECTION
   ================================ */

.bre-contact-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, rgba(220, 32, 13, 0.08) 0%, transparent 40%),
              radial-gradient(circle at 90% 80%, rgba(255, 110, 4, 0.08) 0%, transparent 45%),
              linear-gradient(180deg, #090c19 0%, #0d1226 50%, #070913 100%);
  padding: 100px 20px;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.bre-contact-glow-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.4;
  z-index: 1;
}

.bre-contact-glow-orb--1 {
  top: 10%;
  left: -50px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 110, 4, 0.4) 0%, transparent 70%);
}

.bre-contact-glow-orb--2 {
  bottom: 5%;
  right: -50px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(220, 32, 13, 0.35) 0%, transparent 70%);
}

.bre-contact-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bre-contact-header {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto 50px;
}

.bre-contact-title {
  margin: 0 0 16px;
  font-family: 'DIN Condensed', 'Impact', 'Montserrat', sans-serif;
  font-size: clamp(38px, 4.4vw, 68px);
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1.05;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  white-space: nowrap;
}

@media (max-width: 900px) {
  .bre-contact-title {
    white-space: normal;
    font-size: clamp(32px, 7vw, 44px);
    line-height: 1.1;
  }
}

.bre-contact-subtitle {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(15px, 1.8vw, 16.5px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

/* Grid Layout */
.bre-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: Info Cards */
.bre-contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.bre-contact-card {
  background: rgba(20, 24, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 24px 26px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.bre-contact-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 110, 4, 0.45);
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.35), 0 0 20px rgba(255, 110, 4, 0.2);
}

.bre-contact-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(255, 110, 4, 0.22), rgba(220, 32, 13, 0.22));
  border: 1.5px solid rgba(255, 110, 4, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 16px rgba(255, 110, 4, 0.25);
  transition: all 0.3s ease;
}

.bre-contact-card:hover .bre-contact-card-icon {
  border-color: rgba(255, 110, 4, 0.95);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 110, 4, 0.5);
  transform: scale(1.05);
}

.bre-contact-card-content h3 {
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 6px;
  color: #ffffff;
}

.bre-contact-card-content p {
  font-size: 14px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 10px;
}

.bre-highlight-gradient {
  background: linear-gradient(45deg, #FF9000 0%, #FF6600 25%, #FF2B00 50%, #E61212 75%, #C20000 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  font-size: 15px;
  display: inline-block;
}

.bre-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: transform 0.2s ease, filter 0.2s ease;
}

.bre-contact-link:hover {
  transform: translateX(3px);
  filter: brightness(1.2);
}

/* Trust Perks */
.bre-contact-perks {
  background: rgba(14, 17, 31, 0.6);
  border: 1px dashed rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bre-contact-perk {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.bre-perk-check {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(45deg, #FF9000 0%, #FF6600 25%, #FF2B00 50%, #E61212 75%, #C20000 100%);
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
  box-shadow: 0 2px 10px rgba(255, 110, 4, 0.5);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.bre-contact-perk strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 2px;
}

.bre-contact-perk span {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* Right Column: Contact Form */
.bre-contact-form-wrap {
  background: rgba(19, 23, 41, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 38px 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.05) inset;
  position: relative;
}

.bre-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Alert States */
.bre-form-alert {
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  animation: breFadeIn 0.3s ease;
}

@keyframes breFadeIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

.bre-form-alert--success {
  background: rgba(24, 120, 60, 0.2);
  border: 1px solid rgba(34, 197, 94, 0.5);
  color: #86efac;
}

.bre-form-alert--error {
  background: rgba(220, 32, 13, 0.2);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
}

.bre-alert-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: currentColor;
  color: #0c0f1e;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.bre-form-alert h4 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
  color: #ffffff;
}

.bre-form-alert p {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
}

/* Rows & Fields */
.bre-form-row {
  display: grid;
  gap: 20px;
}

.bre-form-row--two-col {
  grid-template-columns: 1fr 1fr;
}

.bre-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bre-form-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.88);
}

.bre-required {
  color: #ff6e04;
}

.bre-optional {
  font-size: 11px;
  font-weight: 500;
  text-transform: none;
  letter-spacing: normal;
  color: rgba(255, 255, 255, 0.45);
}

.bre-form-input,
.bre-form-select,
.bre-form-textarea {
  width: 100%;
  background: rgba(10, 13, 26, 0.75);
  border: 1.5px solid rgba(255, 255, 255, 0.14);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: var(--font-body, 'Montserrat', sans-serif);
  font-size: 15px;
  color: #ffffff;
  outline: none;
  min-height: 48px;
  box-sizing: border-box;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.bre-form-input::placeholder,
.bre-form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
  font-size: 14px;
}

.bre-form-input:focus,
.bre-form-select:focus,
.bre-form-textarea:focus {
  border-color: #ff6e04;
  background: rgba(14, 18, 36, 0.95);
  box-shadow: 0 0 0 3px rgba(255, 110, 4, 0.25), 0 8px 24px rgba(0, 0, 0, 0.35);
}

.bre-form-select {
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 40px;
}

.bre-form-select option {
  background: #14182a;
  color: #ffffff;
  padding: 10px;
}

.bre-select-wrap {
  position: relative;
}

.bre-select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 10px;
  color: #ff8a2d;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.bre-form-textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

/* Submit Button */
.bre-contact-submit-btn {
  width: 100% !important;
  margin-top: 8px !important;
  cursor: pointer !important;
}

.bre-form-privacy-note {
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  margin: 4px 0 0;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .bre-contact-section {
    padding: 70px 16px;
  }
  .bre-contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .bre-contact-form-wrap {
    padding: 28px 20px;
  }
  .bre-form-row--two-col {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .bre-contact-header {
    margin-bottom: 36px;
  }
  .bre-contact-title {
    font-size: 38px;
  }
}

/* ================================
   QUIZ CALL-TO-ACTION SECTION (SPACIOUS & VIBRANT)
   ================================ */

.bre-quiz-banner-section {
  position: relative;
  background: radial-gradient(circle at 10% 40%, rgba(255, 110, 4, 0.18) 0%, transparent 45%),
              radial-gradient(circle at 90% 60%, rgba(32, 108, 213, 0.2) 0%, transparent 50%),
              linear-gradient(180deg, #070914 0%, #06132d 50%, #080a18 100%);
  padding: 72px 20px;
  color: #ffffff;
  overflow: hidden;
  border-top: 1px solid rgba(255, 110, 4, 0.25);
  border-bottom: 1px solid rgba(255, 110, 4, 0.25);
}

.bre-quiz-banner-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.55;
  z-index: 1;
}

.bre-quiz-glow--1 {
  top: 10%;
  left: -40px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 110, 4, 0.45) 0%, transparent 70%);
}

.bre-quiz-glow--2 {
  bottom: 10%;
  right: -40px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(32, 108, 213, 0.45) 0%, transparent 70%);
}

.bre-quiz-banner-container {
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.bre-quiz-banner-card {
  background: linear-gradient(135deg, rgba(4, 32, 74, 0.95) 0%, rgba(7, 24, 64, 0.96) 50%, rgba(14, 36, 82, 0.95) 100%);
  border: 2px solid rgba(255, 110, 4, 0.5);
  border-radius: 26px;
  padding: 42px 48px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55), 0 0 35px rgba(32, 108, 213, 0.25), 0 0 20px rgba(255, 110, 4, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 42px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.bre-quiz-banner-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #FF9000 0%, #FF6600 30%, #FF2B00 65%, #DC200D 100%);
}

/* Left Content */
.bre-quiz-banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.bre-quiz-pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 110, 4, 0.12);
  border: 1.5px solid #FF6E04;
  color: #FF8A00;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  box-shadow: 0 0 16px rgba(255, 110, 4, 0.3), inset 0 0 10px rgba(255, 110, 4, 0.08);
}

.bre-pill-icon {
  flex-shrink: 0;
}

.bre-quiz-banner-headline {
  font-family: 'DIN Condensed', 'Impact', 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.6vw, 46px);
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  line-height: 1.05;
  margin: 0 0 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bre-headline-white {
  color: #ffffff;
}

.bre-headline-gradient {
  background: linear-gradient(135deg, #ff9e00 0%, #ff5a36 50%, #dc200d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: 0 0 25px rgba(255, 110, 4, 0.4);
}

.bre-quiz-banner-subtext {
  font-size: 15.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 20px;
  max-width: 620px;
}

.bre-quiz-perks-list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2px;
}

.bre-quiz-perk-item {
  font-size: 12.5px;
  font-weight: 700;
  color: #ffb066;
  background: rgba(255, 110, 4, 0.12);
  border: 1px solid rgba(255, 110, 4, 0.4);
  padding: 6px 14px;
  border-radius: 999px;
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.bre-quiz-check-icon {
  color: #ff6e04;
  font-weight: 900;
}

/* Right Column: Visual Teaser + Action Wrap */
.bre-quiz-banner-action-wrap {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: rgba(4, 24, 60, 0.45);
  border: 1px solid rgba(32, 108, 213, 0.2);
  border-radius: 20px;
  padding: 26px 28px;
  backdrop-filter: blur(10px);
}

.bre-quiz-teaser-box {
  display: flex;
  align-items: center;
  gap: 20px;
}

.bre-quiz-bottle-preview {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 85px;
  height: 115px;
  flex-shrink: 0;
}

.bre-bottle-glow-backdrop {
  position: absolute;
  width: 75px;
  height: 75px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 110, 4, 0.6) 0%, rgba(220, 32, 13, 0.3) 50%, transparent 70%);
  filter: blur(16px);
  pointer-events: none;
}

.bre-quiz-bottle-thumb {
  position: relative;
  z-index: 2;
  width: 72px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.6)) drop-shadow(0 0 12px rgba(255, 110, 4, 0.45));
  transition: transform 0.3s ease;
}

.bre-quiz-banner-card:hover .bre-quiz-bottle-thumb {
  transform: scale(1.06) rotate(-3deg);
}

.bre-quiz-teaser-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.bre-quiz-teaser-step {
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #ff6e04;
  text-transform: uppercase;
}

.bre-quiz-teaser-q {
  font-size: 14.5px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.35;
}

.bre-quiz-teaser-bar {
  width: 100%;
  height: 5px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 2px;
}

.bre-quiz-teaser-fill {
  width: 40%;
  height: 100%;
  background: linear-gradient(90deg, #ff6e04, #dc200d);
  border-radius: 999px;
}

.bre-quiz-btn-block {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.bre-quiz-vibrant-btn {
  height: 60px !important;
  min-height: 60px !important;
  max-height: 60px !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 99px !important;
  margin: 0 !important;
  background: linear-gradient(90deg, #DC200D 0%, #FF6E04 50%, #DC200D 100%);
  background-size: 200% auto;
  color: #FFFFFF !important;
  font-family: 'DIN Condensed', 'Inter', system-ui, sans-serif;
  font-size: 27px;
  font-weight: 900;
  letter-spacing: 1.5px;
  padding: 0 36px !important;
  text-decoration: none;
  gap: 10px;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.55), 0 10px 30px rgba(0, 0, 0, 0.5);
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  text-transform: uppercase;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  width: 100%;
  text-align: center;
  cursor: pointer;
}

.bre-quiz-vibrant-btn:hover {
  background-position: right center;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 0 35px rgba(255, 110, 4, 0.8), 0 14px 40px rgba(0, 0, 0, 0.6);
  border-color: #FFFFFF;
  color: #FFFFFF !important;
}

.bre-quiz-vibrant-btn svg {
  transition: transform 0.3s ease;
}

.bre-quiz-vibrant-btn:hover svg {
  transform: translateX(5px);
}

.bre-quiz-micro-note {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.3px;
  text-align: center;
}

/* Responsive */
@media (max-width: 1024px) {
  .bre-quiz-banner-card {
    padding: 36px 32px;
    gap: 32px;
  }
}

@media (max-width: 900px) {
  .bre-quiz-banner-section {
    padding: 55px 16px;
  }
  .bre-quiz-banner-card {
    grid-template-columns: 1fr;
    padding: 30px 22px;
    gap: 26px;
  }
  .bre-quiz-banner-content {
    align-items: center;
    text-align: center;
  }
  .bre-quiz-perks-list {
    justify-content: center;
  }
  .bre-quiz-banner-action-wrap {
    width: 100%;
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .bre-quiz-banner-section {
    padding: 45px 12px;
  }
  .bre-quiz-banner-headline {
    font-size: 30px;
  }
  .bre-quiz-banner-subtext {
    font-size: 14px;
  }
  .bre-quiz-teaser-box {
    flex-direction: column;
    text-align: center;
  }
}

/* ================================
   HCAPTCHA / RECAPTCHA BADGE CLEANUP
   ================================ */

/* ================================
   HCAPTCHA / RECAPTCHA BADGE CLEANUP
   ================================ */

/* Hide passive floating badges in the viewport corners; active submission challenge modals remain visible */
.hcaptcha-badge,
.grecaptcha-badge,
div:has(> iframe[src*="hcaptcha"]),
div:has(> iframe[src*="recaptcha"]),
div[style*="position: fixed"][style*="bottom: 0px"][style*="right: 0px"],
div[style*="position: fixed"][style*="bottom: 0"][style*="right: 0"],
div[style*="position:fixed"][style*="bottom:0"],
div[style*="position: fixed"][style*="z-index: 2147483647"]:has(iframe[src*="hcaptcha"]),
div[style*="position: fixed"][style*="z-index: 2147483647"]:has(iframe[src*="recaptcha"]) {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
