/** 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;
}

/* ================================
   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
   ================================ */

.announcement-bar {
  background: linear-gradient(135deg, #ff6e04, #ff8a33, #ff6e04);
  color: var(--white);
  padding: 12px 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 14px;
  font-weight: 600;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(220, 32, 13, 0.15) 0%, transparent 50%);
  pointer-events: none;
  z-index: 0;
}

.announcement-content {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
}

.announcement-close {
  position: absolute;
  right: 20px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
  cursor: pointer;
  padding: 4px 8px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.announcement-link {
  color: var(--white);
  text-decoration: underline;
  font-weight: 700;
  transition: opacity 0.3s ease;
}

.announcement-link:hover {
  opacity: 0.8;
}

.announcement-close:hover {
  opacity: 1;
}

.announcement-bar.hidden {
  display: none;
}

/* ================================
   HEADER/NAVIGATION
   ================================ */

.site-header {
  background: var(--black);
  border-bottom: 1px solidrgb(32, 31, 31);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 16px 20px 16px 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: padding 0.3s ease;
}

.site-logo {
  height: 105px;
  width: auto;
  transition: height 0.3s ease, opacity 0.3s ease;
}

/* Shrink header on scroll */
.site-header.scrolled .header-container {
  padding-top: 6px;
  padding-bottom: 6px;
}

.site-header.scrolled .site-logo {
  height: 55px;
}

.site-logo:hover {
  opacity: 0.8;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: var(--orange-primary);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-link:hover {
  color: var(--white);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-icon {
  width: 24px;
  height: 24px;
  color: var(--white);
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-icon svg {
  width: 100%;
  height: 100%;
  --icon-stroke-width: 1.5;
}

.header-icon:hover {
  color: var(--orange-primary);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--orange-primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-cta {
  padding: 14px 32px;
  background: linear-gradient(45deg, var(--orange-primary), var(--red-primary));
  color: var(--white);
  border: none;
  border-radius: 25px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.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 2.5s ease-in-out infinite;
}

@keyframes headerShimmer {
  0% { left: -100%; }
  50%, 100% { left: 150%; }
}

.header-cta:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 8px 24px rgba(255, 107, 53, 0.5);
}

/* Header responsive — large desktop */
@media (max-width: 1350px) {
  .nav-links {
    gap: 14px;
  }
  .nav-link {
    font-size: 22px;
  }
  .header-cta {
    padding: 12px 22px;
    font-size: 15px;
  }
  .site-logo {
    height: 85px;
  }
  .header-actions {
    gap: 14px;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 10px;
  }
  .nav-link {
    font-size: 18px;
  }
  .header-cta {
    padding: 10px 18px;
    font-size: 14px;
  }
  .site-logo {
    height: 70px;
  }
  .header-actions {
    gap: 10px;
  }
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--white);
  cursor: pointer;
  padding: 8px;
}

/* Mobile Menu */
.mobile-nav {
  display: none;
  position: fixed;
  top: 83px;
  left: 0;
  right: 0;
  background: var(--black);
  border-bottom: 1px solid #e0e0e0;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  z-index: 999;
}

.mobile-nav.active {
  display: block;
}

.mobile-nav-links {
  list-style: none;
  margin: 0;
  padding: 20px;
}

.mobile-nav-links li {
  border-bottom: 1px solid #f0f0f0;
}

.mobile-nav-links .nav-link {
  display: block;
  padding: 16px 0;
  font-size: 16px;
}

.mobile-nav-links .nav-link::after {
  display: none;
}

/* ================================
   TRUST BAR
   ================================ */

.trust-bar {
  display: none;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.trust-icon {
  font-size: 18px;
}

/* ================================
   HERO SECTION - BACKGROUND + BOTTLE OVERLAY
   ================================ */

.low-energy-hero {
  position: relative;
  overflow: visible;
  min-height: 90vh;
  background-image: linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25)), url('/cdn/shop/files/newspotlight.png?v=1769654169');
  background-size: cover;
  background-position: center -50px;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 60px;
  padding-bottom: 60px;
  z-index: 2;
}

/* Diagonal light rays from spotlight */
.low-energy-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    /* Left rays — lean from top-center toward lower-left */
    linear-gradient(215deg, transparent 38%, rgba(180,210,255,0.07) 42%, rgba(180,210,255,0.09) 42.5%, transparent 47%),
    linear-gradient(205deg, transparent 42%, rgba(180,210,255,0.05) 46%, rgba(180,210,255,0.07) 46.5%, transparent 51%),
    linear-gradient(225deg, transparent 34%, rgba(180,210,255,0.04) 38%, rgba(180,210,255,0.06) 38.5%, transparent 43%),
    /* Right rays — lean from top-center toward lower-right */
    linear-gradient(145deg, transparent 38%, rgba(180,210,255,0.07) 42%, rgba(180,210,255,0.09) 42.5%, transparent 47%),
    linear-gradient(155deg, transparent 42%, rgba(180,210,255,0.05) 46%, rgba(180,210,255,0.07) 46.5%, transparent 51%),
    linear-gradient(135deg, transparent 34%, rgba(180,210,255,0.04) 38%, rgba(180,210,255,0.06) 38.5%, transparent 43%);
  pointer-events: none;
  z-index: 1;
}

.hero-bottle {
  position: absolute;
  bottom: 110px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.hero-bottle img {
  height: 540px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
          drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3))
          drop-shadow(0 0 30px rgba(255, 110, 4, 0.25));
}

.hero-background,
.hero-overlay,
.hero-image {
  display: none;
}
.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  height: 100%;
  justify-content: flex-start;
  padding-bottom: 0;
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-heading {
  margin: 0;
  white-space: nowrap;
}

/* "GIVE LOW ENERGY" line */
.hero-line-top {
  display: inline;
  font-family: 'DIN Condensed', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
  font-size: 110px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  -webkit-text-stroke: 2px #000000;
  text-shadow: 0px 0px 6px #000000;
  opacity: 0;
  animation: slamDown 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s forwards;
}

/* "THE BIRD!" line */
.hero-line-bottom {
  display: inline;
  font-family: 'DIN Condensed', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
  font-size: 110px;
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  -webkit-text-stroke: 2px #000000;
  text-shadow: 0px 0px 6px #000000;
  position: relative;
  z-index: 5;
  margin-left: 20px;
  opacity: 0;
  animation: slamDown 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 1.9s forwards;
}

/* Orange words: GIVE, THE BIRD */
.hero-word-orange {
  color: #ff6e04;
}

/* Red words: LOW ENERGY */
.hero-word-red {
  color: #dc200d;
}

/* ================================
   HERO SPLIT LAYOUT
   ================================ */
.hero-split-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  margin-top: 20px;
  opacity: 0;
  animation: fadeIn 0.8s ease-out 2.3s forwards;
}

.hero-split-left,
.hero-split-right {
  flex: 0 1 auto;
  max-width: 360px;
}

.hero-split-text {
  font-family: 'DIN Condensed', 'Arial Narrow', 'Helvetica Condensed', sans-serif;
  font-size: 62px;
  font-weight: 900;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.05;
  letter-spacing: 2px;
  text-shadow: 0 3px 15px rgba(0, 0, 0, 0.6);
}

.hero-split-layout .hero-bottle {
  position: relative;
  bottom: auto;
  left: auto;
  transform: none;
  z-index: 2;
  pointer-events: none;
  flex-shrink: 0;
}

.hero-split-layout .hero-bottle img {
  height: 650px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.5))
          drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3))
          drop-shadow(0 0 30px rgba(255, 110, 4, 0.25));
}

/* Founder Strip */
.founder-strip {
  margin-top: 24px;
  padding: 14px 40px;
  background: rgba(255, 110, 4, 0.12);
  border: 1.5px solid rgba(255, 110, 4, 0.5);
  border-radius: 6px;
  color: #ffffff;
  font-family: 'DIN Alternate', 'DIN Condensed', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 0 15px rgba(255, 110, 4, 0.2);
  opacity: 0;
  animation: fadeIn 0.6s ease-out 2.6s forwards;
}

/* Founder CTA */
.hero-cta-founder {
  display: inline-block;
  margin-top: 20px;
  padding: 20px 56px;
  background: linear-gradient(135deg, #ff6e04, #dc200d);
  color: #ffffff;
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
  opacity: 0;
  animation: fadeIn 0.6s ease-out 2.9s forwards, ctaBounce 2s ease-in-out 3.5s infinite;
  transition: transform 0.3s ease;
}

.hero-cta-founder:hover {
  transform: scale(1.03);
}

/* Hover sheen effect */
.hero-cta-founder::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.hero-cta-founder:hover::after {
  left: 120%;
}

/* ================================
   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: 15px;
  }
}

/* ================================
   MOBILE RESPONSIVE (max-width: 768px)
   ================================ */

@media (max-width: 768px) {
  .low-energy-hero {
    height: auto;
    max-height: none;
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .hero-heading {
    white-space: normal;
  }

  .hero-line-top {
    display: block;
    font-size: 50px;
  }

  .hero-line-bottom {
    display: block;
    font-size: 80px;
    margin-left: 0;
  }

  .hero-split-layout {
    flex-direction: column;
    gap: 16px;
  }

  .hero-split-left,
  .hero-split-right {
    max-width: 100%;
  }

  .hero-split-text {
    font-size: 36px;
  }

  .hero-split-layout .hero-bottle img {
    height: 400px;
  }

  .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: 30px;
    padding-bottom: 60px !important;
  }

  .hero-bottle img {
    height: 340px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.3))
            drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
  }
  
  .hero-line-top {
    font-size: 38px;
  }
  
  .hero-line-bottom {
    font-size: 60px;
  }
  
  .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: 2px 2px 8px rgba(0,0,0,0.7);
  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;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* Landscape gallery cards match portrait sizing on mobile */
  .card--landscape {
    width: 260px !important;
    height: 390px !important;
  }
}
/* ========================================
   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: 80px 40px;
  min-height: auto;
}

.product-section {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
  padding: 0;
}


/* Left Column - Product Image */
.product-image-column {
  display: flex;
  flex-direction: column;
}

.product-main-image-wrapper {
  background: #121236 !important;
  border: 4px solid #ff6e04 !important;
  border-radius: 20px !important;
  padding: 0 !important;
  overflow: hidden !important;
  flex: 1;
}

.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: 20px;
  margin-bottom: 60px;
  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;
}

/* Right Column - Product Info */
.product-info-column {
  color: #fff;
  padding: 0 !important;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.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: 2px 2px 6px 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: 20px;
  letter-spacing: 1px;
}

.pps-quantity-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px;
}

.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 6px 24px rgba(255, 110, 4, 0.3);
}

.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-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: #666;
  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: 14px;
  color: #28a745;
  font-weight: 600;
  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 */
.pps-delivery-info {
  text-align: center;
  margin-bottom: 20px;
}

.pps-savings-line {
  font-size: 16px;
  font-weight: 600;
  color: #28a745;
  margin: 0 0 6px 0;
}

.pps-delivery-copy {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

/* Reassurance */
.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 {
  display: none;
}

.add-to-cart-button:hover {
  transform: translateY(-3px) scale(1.02);
  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;
  background: var(--black);
  border-bottom: 4px solid;
  border-top: 4px solid;
  padding-bottom: 15px;
  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;
  margin-bottom: 15px;
}

@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;
}

.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%; }
}

.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 {
    font-size: 1rem;
  }

  .why-cta-btn {
    font-size: 18px;
    padding: 14px 35px;
  }
}
/* ================================
    VIDEO SECTION STYLES
    ================================ */

.video-section {
  background: #281c31;
  padding: 100px 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  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: 2px 2px 4px 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 {
  color: #ff6e04;
  font-weight: 800;
}

.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: 4rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  -webkit-text-stroke: 2px #dc200d;
}

.ingredients-grid {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  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: flex;
  flex-direction: column;
  justify-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: #ff6e04;
  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.2rem;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 1px;
}

.ingredient-dose {
  font-size: 0.8rem;
  color: #ff6e04;
  font-weight: 700;
}

/* Center Capsule Display - FIXED WIDTH */
.ingredients-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 450px;
  min-width: 450px;
  max-width: 450px;
  flex-shrink: 0;
  padding: 0 20px;
}

.capsule-display {
  position: relative;
  width: 450px;
  height: 580px;
  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: 2px 2px 6px 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;
  }

  /* Disable desktop hover rule on touch devices */
  .ingredient-card:hover .ingredient-benefit-dropdown {
    display: none;
  }

  .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: 3.2rem;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: -30px 0 8px 0;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  -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: none;
}


.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: 8px 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: #ff6e04;
    letter-spacing: 3px;
    text-transform: uppercase;
  }

  .ingredients-dropdown-chevron {
    color: #ff6e04;
    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;
  }

  /* UMZU-style (+) expand icon */
  .ingredient-expand-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: rgba(255, 255, 255, 0.6);
    font-size: 16px;
    font-weight: 300;
    line-height: 1;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .ingredient-card.active .ingredient-expand-icon {
    border-color: #ff6e04;
    color: #ff6e04;
    transform: rotate(45deg);
  }

  /* 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: 1.6rem;
    -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: 2px 2px 4px 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: 2px 2px 4px 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: 2px 2px 4px 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: 2px 2px 4px 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: 2px 2px 4px 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: 2px 2px 4px 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: auto;
  display: block;
}

/* 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: 
    2px 2px 8px rgba(0, 0, 0, 0.6),
    0 0 25px rgba(255, 110, 4, 0.4);
}

.headline-text-v2 .text-red {
  color: #dc200d;
  text-shadow: 
    2px 2px 8px rgba(0, 0, 0, 0.6),
    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: 3px 3px 6px 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: 2px 2px 6px 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:
    4px 4px 0 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;
}


@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: 2px 2px 4px 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: 260px;
    height: 390px;
  }
}
/* ================================
   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: 900px;
  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;
}

.final-pricing-card {
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 30px 20px;
  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: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #ff6e04;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.final-pricing-badge--committed {
  background: #28a745;
}

.final-pricing-qty {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.final-pricing-retail {
  font-size: 16px;
  color: #888;
  margin-bottom: 4px;
}

.final-pricing-retail s {
  text-decoration: line-through;
}

.final-pricing-founder {
  font-family: 'DIN Condensed', 'Arial Narrow', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: #ff6e04;
}

.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: 16px 8px;
  }

  .final-pricing-badge {
    font-size: 8px;
    padding: 3px 8px;
    top: -8px;
  }

  .final-pricing-qty {
    font-size: 18px;
  }

  .final-pricing-retail {
    font-size: 12px;
  }

  .final-pricing-founder {
    font-size: 16px;
  }

  .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--glow {
  border-color: #ff6e04;
  box-shadow: 0 0 25px rgba(255, 110, 4, 0.4), 0 0 50px rgba(255, 110, 4, 0.15);
  animation: finalCardGlow 2s ease-in-out infinite alternate;
}

@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: 20px;
  font-weight: 700;
  color: #28a745;
  margin-top: 8px;
}

.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 rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 25px 0 0 25px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 15px;
  outline: none;
  transition: border-color 0.3s ease;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.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-y,
.slogan-bird {
  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: 3px 3px 6px 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 bottom / cover no-repeat;
  color: #ffffff;
  padding: 24px 0;
}

.footer-bottom .footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.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;
}

.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;
}

.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: #ff6e04;
  margin: 0 0 20px 0;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  -webkit-text-stroke: 1.5px #000000;
  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: 500;
}

.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: 0 auto;
  }

  .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: 220px;
    height: 320px;
  }

  .card--landscape {
    width: 220px !important;
    height: 320px !important;
  }

  .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 rgba(255, 255, 255, 0.2);
  border-right: none;
  border-radius: 30px 0 0 30px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
}

.bre-popup-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.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;
}

.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;
  }
}