/** Shopify CDN: Minification failed

Line 81:19 Unexpected "*"
Line 1473:1 Expected "}" to go with "{"

**/
/* ============================================
   THE HAZE CONNECT — Dawn Override Fixes
   File: haze-dawn-overrides.css
   Location: Assets/ folder in Shopify theme
   
   PURPOSE: Override Dawn's base.css to enforce
   Haze Connect brand styles.
   
   FONTS:
   - Headings: Big Shoulders Display (condensed, bold)
   - Body: DM Sans (clean, readable)
   - Accent: Caveat (handwritten taglines)
   
   LOAD ORDER: After haze-custom.css
     {{ 'haze-dawn-overrides.css' | asset_url | stylesheet_tag }}
============================================ */
/* === CRITICAL MOBILE LAYOUT FIX === */
html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
}
body {
  display: block !important;
  min-height: 100vh !important;
}
*, *::before, *::after {
  max-width: 100vw;
}
/* === RESET DAWN'S CSS VARIABLES === */
:root {
  --color-foreground: 255, 255, 255 !important;
  --color-background: 14, 31, 38 !important;
  --font-heading-family: 'Big Shoulders Display', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  --font-body-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  --font-body-weight: 400 !important;
  --font-heading-weight: 700 !important;
  --page-width: 1280px !important;
}

/* === BODY RESET === */
body {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background: #0E1F26 !important;
  color: #FFFFFF !important;
  display: block !important;
  grid-template-rows: none !important;
  grid-template-columns: none !important;
  min-height: auto !important;
  font-size: 16px !important;
  letter-spacing: 0 !important;
  line-height: 1.7 !important;
}

/* === GLOBAL HEADING OVERRIDES === */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5 {
  font-family: 'Big Shoulders Display', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  color: inherit !important;
  letter-spacing: -0.5px !important;
  line-height: 1.05 !important;
  font-style: normal !important;
}

/* === GLOBAL BODY TEXT OVERRIDES === */
p, span, a, li, div, button, input, textarea, select {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
}

/* === DAWN SECTION WRAPPER RESET === */
.shopify-section {
  margin: 0 !important;
  padding: 0 !important;
}
.section-template--* {
  margin: 0 !important;
  padding: 0 !important;
}

/* === SECTION LABELS === */
.section-label {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 4px !important;
  text-transform: uppercase !important;
  display: block !important;
  margin-bottom: 14px !important;
}
.section-title {
  font-family: 'Big Shoulders Display', 'Helvetica Neue', sans-serif !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  margin-bottom: 20px !important;
}
.section-subtitle {
  font-family: 'DM Sans', 'Helvetica Neue', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
}

/* === AGE GATE === */
.age-gate-box {
  background: #FFFFFF !important;
}
.age-gate-box h2 {
  color: #1A2E35 !important;
}
.age-gate-box p {
  color: #3D5A63 !important;
}

/* === FADE ANIMATIONS === */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fade-up.visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

/* === ANNOUNCEMENT BAR === */
.announcement-bar {
  font-family: 'Big Shoulders Display', sans-serif !important;
  background: #8FB479 !important;
  color: #162F38 !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  padding: 10px 24px !important;
}
.announcement-bar a {
  color: #162F38 !important;
}

/* === NAVIGATION === */
.nav {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  background: rgba(14, 31, 38, 0.92) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
}
.nav-inner {
  display: flex !important;
  height: 72px !important;
}
.nav-logo-text {
  color: #FFFFFF !important;
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}
.nav-links a {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: rgba(255,255,255,0.7) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
}
.nav-links a:hover {
  color: #FFFFFF !important;
}
/* === NAV DROPDOWN (Shop hover menu) === */
.nav-links li {
  position: relative !important;
  list-style: none !important;
}
.nav-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  background: rgba(14, 31, 38, 0.97) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border: 1px solid rgba(143, 180, 121, 0.12) !important;
  border-radius: 10px !important;
  padding: 12px 0 !important;
  min-width: 200px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: all 0.25s ease !important;
  z-index: 100 !important;
  margin-top: 8px !important;
}
.nav-links li:hover > .nav-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: all !important;
}
.nav-dropdown a {
  display: block !important;
  padding: 10px 24px !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
  transition: all 0.2s !important;
}
.nav-dropdown a:hover {
  color: #FFFFFF !important;
  background: rgba(143, 180, 121, 0.1) !important;
  padding-left: 28px !important;
}
.nav-dropdown a::after {
  display: none !important;
}
.nav-actions a {
  color: rgba(255,255,255,0.7) !important;
}
.nav-actions a:hover {
  color: #FFFFFF !important;
}
/* Change the margin-top from 8px to 0 */
.nav-dropdown {
  margin-top: 0 !important;
  padding-top: 8px !important;
}

/* Add a hover bridge using ::before on the dropdown */
.nav-dropdown::before {
  content: '' !important;
  position: absolute !important;
  top: -12px !important;
  left: 0 !important;
  right: 0 !important;
  height: 12px !important;
  background: transparent !important;
}

/* === HERO SECTION === */
.hero {
  position: relative !important;
  min-height: 90vh !important;
  display: flex !important;
  align-items: center !important;
  overflow: hidden !important;
  background: transparent !important;
}
/* === HERO BACKGROUND IMAGE === */
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  z-index: 0 !important;
  overflow: hidden !important;
}
.hero {
  position: relative !important;
}
.hero-bg img {
  opacity: 0.45 !important;
}
.hero-content {
  position: relative !important;
  z-index: 2 !important;
}
.hero-grid {
  position: relative !important;
  z-index: 1 !important;
}
.hero-bg {
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(135deg, #0E1F26 0%, #204B57 50%, #162F38 100%) !important;
}
.hero-content {
  position: relative !important;
  z-index: 2 !important;
}
.hero-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 60px !important;
  align-items: center !important;
}
.hero-tagline {
  font-family: 'Caveat', cursive !important;
  font-size: 26px !important;
  color: #FFA637 !important;
}
.hero-title {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: clamp(38px, 7vw, 96px) !important;
  font-weight: 800 !important;
  line-height: 0.95 !important;
  letter-spacing: -1px !important;
  color: #FFFFFF !important;
  margin-bottom: 28px !important;
}
.hero-title .highlight {
  color: #8FB479 !important;
  font-family: inherit !important;
  font-weight: inherit !important;
  font-style: normal !important;
  letter-spacing: inherit !important;
}
.hero-description {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.7) !important;
  line-height: 1.7 !important;
  margin-bottom: 40px !important;
}
.hero-ctas {
  display: flex !important;
  gap: 16px !important;
}
.hero-product-card {
  background: rgba(32, 75, 87, 0.5) !important;
  border: 1px solid rgba(143, 180, 121, 0.15) !important;
  border-radius: 16px !important;
  padding: 48px !important;
}
.hero-product-badge {
  background: #FFA637 !important;
  color: #162F38 !important;
}
.hero-product-name {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: #FFFFFF !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.hero-product-strain {
  color: #8FB479 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
}
.hero-product-price {
  color: #FFA637 !important;
  font-size: 32px !important;
  font-weight: 700 !important;
}
.hero-float {
  color: rgba(255,255,255,0.7) !important;
  background: rgba(14, 31, 38, 0.85) !important;
}

/* === TRUST BAR === */
.trust-bar {
  background: #FFFFFF !important;
  padding: 36px 0 !important;
  border-bottom: 1px solid rgba(0,0,0,0.06) !important;
}
.trust-bar-inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  text-align: center !important;
}
.trust-item {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}
.trust-item svg {
  color: #6E9A5A !important;
}
.trust-item strong {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #1A2E35 !important;
}
.trust-item span {
  font-size: 15px !important;
  color: #7A9AA3 !important;
  font-weight: 400 !important;
}

/* === FEATURED COLLECTIONS === */
.collections {
  padding: 80px 0 100px !important;
  background: #F7F6F3 !important;
}
.collections-header .section-label {
  color: #6E9A5A !important;
}
.collections-header .section-title {
  color: #1A2E35 !important;
}
.collections-header .section-subtitle {
  color: #3D5A63 !important;
}
.collections-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.collection-card {
  position: relative !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  aspect-ratio: 3/4 !important;
  background: #204B57 !important;
  min-height: 320px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  padding: 24px !important;
}
.collection-card img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  z-index: 0 !important;
}
.collection-card::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background: linear-gradient(to top, rgba(14,31,38,0.85) 0%, rgba(14,31,38,0.3) 50%, transparent 100%) !important;
  z-index: 1 !important;
  pointer-events: none !important;
}
.collection-card .collection-tag,
.collection-card .collection-name,
.collection-card .collection-count,
.collection-card .collection-arrow {
  position: relative !important;
  z-index: 2 !important;
}
.collection-name {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: #FFFFFF !important;
  font-size: 30px !important;
  font-weight: 700 !important;
}
.collection-tag {
  color: #8FB479 !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
}
.collection-count {
  color: rgba(255,255,255,0.45) !important;
}
.collection-arrow {
  color: #FFFFFF !important;
}

/* === BEST SELLERS === */
.best-sellers {
  padding: 100px 0 !important;
  background: #162F38 !important;
}
.best-sellers-header .section-label {
  color: #8FB479 !important;
}
.best-sellers-header .section-title {
  color: #FFFFFF !important;
}
.products-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
}
.product-card {
  background: rgba(32, 75, 87, 0.3) !important;
  border: 1px solid rgba(143, 180, 121, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}
.product-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(143,180,121,0.25) !important;
}
.product-image {
  width: 100% !important;
  aspect-ratio: 1 !important;
  background: linear-gradient(135deg, rgba(143, 180, 121, 0.06), rgba(32, 75, 87, 0.3)) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  position: relative !important;
}
.product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
.product-category {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  color: #8FB479 !important;
}
.product-name {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}
.product-desc {
  font-size: 14px !important;
  color: rgba(255,255,255,0.45) !important;
  font-weight: 300 !important;
}
.product-price {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #FFA637 !important;
}
.product-price .was {
  font-size: 14px !important;
  color: rgba(255,255,255,0.45) !important;
  text-decoration: line-through !important;
}
.product-add {
  display: block !important;
  width: calc(100% - 40px) !important;
  margin: 0 20px 20px !important;
  padding: 14px !important;
  background: transparent !important;
  border: 1px solid rgba(143, 180, 121, 0.2) !important;
  color: #8FB479 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  text-align: center !important;
  border-radius: 6px !important;
  cursor: pointer !important;
}
.product-add:hover {
  background: #8FB479 !important;
  color: #162F38 !important;
}

/* === BRAND STORY === */
.brand-story {
  padding: 120px 0 !important;
  background: #FFFFFF !important;
}
.brand-story-inner {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 80px !important;
  align-items: center !important;
}
.brand-story-box {
  background: #204B57 !important;
  border-radius: 12px !important;
  aspect-ratio: 4/3 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.brand-story-text .caveat-line {
  font-family: 'Caveat', cursive !important;
  color: #FFA637 !important;
  font-size: 24px !important;
}
.brand-story-text h2 {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: #1A2E35 !important;
  font-size: clamp(36px, 5vw, 60px) !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
}
.brand-story-text h2 .green {
  color: #6E9A5A !important;
}
.brand-story-text p {
  font-family: 'DM Sans', sans-serif !important;
  color: #3D5A63 !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
}
.brand-values {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}
.brand-value {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
}
.brand-value-icon {
  background: #F2F5EF !important;
  border-radius: 10px !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.brand-value-icon svg {
  color: #6E9A5A !important;
}
.brand-value-text strong {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: #1A2E35 !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  display: block !important;
}
.brand-value-text span {
  color: #7A9AA3 !important;
  font-size: 14px !important;
  font-weight: 300 !important;
}

/* === HOW IT WORKS === */
.how-it-works {
  padding: 100px 0 !important;
  background: #162F38 !important;
}
.how-it-works-header .section-label {
  color: #8FB479 !important;
}
.how-it-works-header .section-title {
  color: #FFFFFF !important;
}
.how-it-works-header .section-subtitle {
  color: rgba(255,255,255,0.7) !important;
}
.steps-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 40px !important;
}
.step-number {
  width: 80px !important;
  height: 80px !important;
  border-radius: 50% !important;
  background: rgba(143, 180, 121, 0.1) !important;
  border: 2px solid #8FB479 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 auto 24px !important;
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  color: #8FB479 !important;
}
.step-card {
  text-align: center !important;
}
.step-card h3 {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 26px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 10px !important;
}
.step-card p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 18px !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
}

/* === SHOP BY EFFECT === */
.shop-by-effect {
  padding: 100px 0 !important;
  background: #FFFFFF !important;
}
.shop-by-effect-header .section-label {
  color: #6E9A5A !important;
}
.shop-by-effect-header .section-title {
  color: #1A2E35 !important;
}
.shop-by-effect-header .section-subtitle {
  color: #3D5A63 !important;
}
.effects-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
}
.effect-card {
  background: #F7F6F3 !important;
  border: 1px solid rgba(32, 75, 87, 0.08) !important;
  border-radius: 12px !important;
  padding: 28px 20px !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: all 0.3s !important;
}
.effect-card:hover {
  transform: translateY(-4px) !important;
  border-color: #8FB479 !important;
}
.effect-card h3 {
  font-family: 'Big Shoulders Display', sans-serif !important;
  color: #1A2E35 !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.effect-card p {
  font-family: 'DM Sans', sans-serif !important;
  color: #7A9AA3 !important;
  font-size: 15px !important;
}

/* === REVIEWS === */
.reviews {
  padding: 100px 0 !important;
  background: #162F38 !important;
}
.reviews-header .section-label {
  color: #8FB479 !important;
}
.reviews-header .section-title {
  color: #FFFFFF !important;
}
.reviews-stats { gap: 40px !important; }
.review-stat .stat-number {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  color: #FFA637 !important;
}
.review-stat .stat-label {
  font-size: 14px !important;
  color: rgba(255,255,255,0.45) !important;
}
.reviews-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.review-card {
  background: rgba(32, 75, 87, 0.3) !important;
  border: 1px solid rgba(143, 180, 121, 0.08) !important;
  border-radius: 12px !important;
  padding: 28px !important;
}
.review-text {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.7) !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
}
.review-author {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}

/* === BLOG / EDUCATION === */
.education {
  padding: 100px 0 !important;
  background: #F7F6F3 !important;
}
.education-header .section-label {
  color: #6E9A5A !important;
}
.education-header .section-title {
  color: #1A2E35 !important;
}
.blog-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.blog-card-content h3 {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 22px !important;
  font-weight: 700 !important;
}
.blog-card-content p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
}

/* === FAQ === */
.faq {
  padding: 100px 0 !important;
  background: #162F38 !important;
}
.faq-header .section-label {
  color: #8FB479 !important;
}
.faq-header .section-title {
  color: #FFFFFF !important;
}
.faq-question {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}
.faq-answer p {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
  font-weight: 300 !important;
  line-height: 1.8 !important;
}

/* === NEWSLETTER === */
.newsletter {
  padding: 100px 0 !important;
  background: #204B57 !important;
}
.newsletter-inner .section-title {
  color: #FFFFFF !important;
}
.newsletter-input {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 16px !important;
}

/* === FOOTER === */
.footer-col h4 {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
}
.footer-col a {
  font-family: 'DM Sans', sans-serif !important;
  font-size: 15px !important;
}

/* === BUTTONS === */
.btn {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  padding: 15px 44px !important;
}
/* === PRODUCT PAGE LAYOUT === */
.haze-product {
  background: #0E1F26 !important;
  padding-bottom: 40px !important;
}
.product-page-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
  padding: 40px 0 !important;
}
.product-gallery {
  position: sticky !important;
  top: 100px !important;
}
.product-main-image {
  width: 100% !important;
  aspect-ratio: 1 !important;
  background: rgba(32, 75, 87, 0.2) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.product-main-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
.product-info {
  padding: 0 !important;
}
.product-category-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  color: #8FB479 !important;
  margin-bottom: 8px !important;
}
.product-title {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: clamp(28px, 4vw, 42px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  line-height: 1.1 !important;
  margin-bottom: 8px !important;
}
.product-price-display {
  font-size: 28px !important;
  font-weight: 700 !important;
  color: #FFA637 !important;
  margin-bottom: 16px !important;
}

/* === PRODUCT PAGE RELATED PRODUCTS === */
.product-related-section {
  max-width: 100% !important;
}
.related-product-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}
/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr !important;
  }
  .hero-visual { display: none !important; }
  .hero { min-height: 70vh !important; }
  .collections-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .brand-story-inner { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; }
}

@media (max-width: 768px) {
  .nav-links { display: none !important; }
  .nav-toggle { display: flex !important; }
  .nav-links.open { display: flex !important; }
  
  .hero { min-height: auto !important; }
  .hero-title {
    font-size: clamp(48px, 10vw, 100px) !important;
  }
  .hero-description {
    font-size: 18px !important;
  }
  
  .trust-bar-inner { grid-template-columns: repeat(2, 1fr) !important; }
  .collections-grid { grid-template-columns: 1fr !important; }
  .products-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .steps-grid { grid-template-columns: 1fr !important; }
  .effects-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .blog-grid { grid-template-columns: 1fr !important; }
  .footer-grid { grid-template-columns: 1fr !important; }
  
  .newsletter-form { flex-direction: column !important; }
  .best-sellers-header { flex-direction: column !important; align-items: flex-start !important; }
  .education-header { flex-direction: column !important; align-items: flex-start !important; }

  .brand-story { padding: 60px 0 !important; }
  .brand-story-text p { font-size: 17px !important; }
  .brand-values { grid-template-columns: 1fr !important; }
  .brand-story-accent { display: none !important; }

  .product-name { font-size: 18px !important; }
  .product-price { font-size: 22px !important; }
  .product-desc { display: none !important; }
  .product-add {
    width: calc(100% - 28px) !important;
    margin: 0 14px 14px !important;
    padding: 10px !important;
    font-size: 12px !important;
  }
  .product-page-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }
  .product-gallery {
    position: static !important;
  }
  /* === RELATED PRODUCTS FIX === */
.product-related-section {
  padding: 32px 0 40px !important;
  border-top: 1px solid rgba(255,255,255,0.04) !important;
  max-width: 100% !important;
  overflow: hidden !important;
}
.related-products-scroll {
  display: flex !important;
  gap: 12px !important;
  overflow-x: auto !important;
  padding-bottom: 8px !important;
}
.related-product-card {
  flex: 0 0 160px !important;
  max-width: 160px !important;
  background: rgba(32,75,87,0.3) !important;
  border: 1px solid rgba(143,180,121,0.08) !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  text-decoration: none !important;
}
.related-product-card img {
  width: 160px !important;
  height: 160px !important;
  object-fit: cover !important;
  display: block !important;
}
.related-product-info {
  padding: 10px 12px !important;
}
.related-product-name {
  font-size: 12px !important;
  font-weight: 600 !important;
  color: #FFFFFF !important;
  display: block !important;
}
.related-product-price {
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #FFA637 !important;
}

  .faq-question { font-size: 20px !important; }
  .step-card h3 { font-size: 22px !important; }
  .step-card p { font-size: 16px !important; }
  .review-stat .stat-number { font-size: 36px !important; }
}

@media (max-width: 420px) {
  .hero-title {
    font-size: clamp(40px, 10vw, 80px) !important;
  }
  .products-grid { grid-template-columns: 1fr !important; }
  .trust-bar-inner { grid-template-columns: 1fr !important; }
}
/* === CART DRAWER POSITION FIX === */
.cart-drawer,
#cart-drawer {
  position: fixed !important;
  top: 0 !important;
  right: 0 !important;
  height: 100vh !important;
  height: 100dvh !important;
  z-index: 9999 !important;
  transform: translateX(100%) !important;
}
.cart-drawer.open,
#cart-drawer.open {
  transform: translateX(0) !important;
}
.cart-drawer-overlay,
#cart-drawer-overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 9998 !important;
}
/* === QTY TIERS — STACKED LIST === */
div.qty-tiers,
.product-info .qty-tiers,
.haze-product .qty-tiers {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  margin-top: 24px !important;
  margin-bottom: 20px !important;
  width: 100% !important;
}
div.qty-tiers .qty-tiers-label,
.qty-tiers p.qty-tiers-label {
  font-size: 11px !important;
  font-weight: 700 !important;
  color: rgba(255,255,255,0.45) !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  margin-bottom: 10px !important;
}
button.qty-tier,
.qty-tiers .qty-tier {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 14px 18px !important;
  margin-bottom: 8px !important;
  border: 1px solid rgba(143,180,121,0.15) !important;
  background: transparent !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  transition: all 0.2s ease !important;
  font-family: 'DM Sans', sans-serif !important;
  text-align: left !important;
  min-height: auto !important;
  gap: 0 !important;
  flex: none !important;
}
button.qty-tier:hover,
.qty-tiers .qty-tier:hover {
  border-color: rgba(143,180,121,0.4) !important;
  background: rgba(143,180,121,0.05) !important;
}
button.qty-tier.qty-tier-active,
.qty-tiers .qty-tier-active {
  border-color: #8FB479 !important;
  background: rgba(143,180,121,0.1) !important;
}
.qty-tier .qty-tier-top {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}
.qty-tier .qty-tier-amount {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
}
.qty-tier .qty-tier-badge {
  font-size: 10px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 4px !important;
  background: #FFA637 !important;
  color: #162F38 !important;
}
.qty-tier .qty-tier-badge-default {
  background: rgba(255,255,255,0.1) !important;
  color: rgba(255,255,255,0.5) !important;
}
.qty-tier .qty-tier-label {
  font-size: 13px !important;
  color: rgba(255,255,255,0.5) !important;
  font-weight: 400 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
}

/* === VARIANT GRID ACTIVE FIX === */
.variant-grid-btn-active {
  border-color: #8FB479 !important;
  background: rgba(143,180,121,0.12) !important;
  color: #FFFFFF !important;
  font-weight: 700 !important;
  box-shadow: 0 0 0 1px #8FB479 !important;
}
.variant-grid-btn-active .variant-grid-price {
  color: #8FB479 !important;
  opacity: 1 !important;
}

/* === QTY TIER LAYOUT FIX === */
.qty-tier {
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  padding: 14px 8px !important;
  min-height: 70px !important;
}
.qty-tier .qty-tier-qty,
.qty-tier .qty-tier-badge {
  display: inline !important;
}
.qty-tier .qty-tier-label {
  display: block !important;
  width: 100% !important;
  margin-top: 4px !important;
}
/* === COLLECTION SEO COLLAPSIBLE === */
.collection-seo-wrapper {
  margin-top: 16px !important;
}
.collection-seo-content {
  position: relative !important;
  max-height: 180px !important;
  overflow: hidden !important;
  transition: max-height 0.5s ease !important;
}
.collection-seo-content.expanded {
  max-height: 5000px !important;
}
.collection-seo-fade {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  height: 100px !important;
  background: linear-gradient(to bottom, transparent, #0E1F26) !important;
  pointer-events: none !important;
  transition: opacity 0.3s ease !important;
}
.collection-seo-content.expanded .collection-seo-fade {
  opacity: 0 !important;
}
.seo-toggle-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  background: none !important;
  border: 1px solid rgba(143,180,121,0.2) !important;
  color: #8FB479 !important;
  font-family: 'DM Sans', sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 8px 16px !important;
  border-radius: 6px !important;
  cursor: pointer !important;
  margin-top: 12px !important;
  transition: all 0.2s !important;
}
.seo-toggle-btn:hover {
  background: rgba(143,180,121,0.1) !important;
  border-color: rgba(143,180,121,0.4) !important;
}
.seo-toggle-btn svg {
  transition: transform 0.3s ease !important;
}
.collection-seo-content.expanded + .seo-toggle-btn svg {
  transform: rotate(180deg) !important;
}
/* === MOBILE HERO FIX === */
@media (max-width: 768px) {
  .hero, .hero-bg, .hero-content, .haze-hero-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
  }
  .hero-inner {
    flex-direction: column !important;
    padding: 0 20px !important;
  }
  .hero-product-card {
    display: none !important;
  }
  .hero-float {
    display: none !important;
  }
}

/* === MOBILE AGE GATE FIX === */
@media (max-width: 768px) {
  .age-gate-overlay {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 20px !important;
  }
  .age-gate-modal, .age-gate-box {
    position: relative !important;
    width: 90% !important;
    max-width: 360px !important;
    margin: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    top: auto !important;
    transform: none !important;
  }
}
/* === COLLECTION CARD IMAGES === */
.collection-card-bg {
  opacity: 0.6 !important;
}
.collection-card:hover .collection-card-bg {
  opacity: 0.8 !important;
  transition: opacity 0.3s ease !important;
}
/* === BLOG ARTICLES GRID === */
.blog-articles-section {
  background: #162F38 !important;
  padding: 60px 0 80px !important;
}
.blog-articles-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
.blog-article-card {
  background: rgba(32,75,87,0.3) !important;
  border: 1px solid rgba(143,180,121,0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  text-decoration: none !important;
  color: inherit !important;
  display: block !important;
  transition: transform 0.3s ease, border-color 0.3s ease !important;
}
.blog-article-card:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(143,180,121,0.25) !important;
}
.blog-article-image {
  aspect-ratio: 16/10 !important;
  background: rgba(32,75,87,0.5) !important;
  overflow: hidden !important;
  position: relative !important;
}
.blog-article-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s ease !important;
}
.blog-article-card:hover .blog-article-image img {
  transform: scale(1.03) !important;
}
.blog-article-image-placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(32,75,87,0.5) !important;
}
.blog-article-tag {
  position: absolute !important;
  top: 12px !important;
  left: 12px !important;
  background: #8FB479 !important;
  color: #162F38 !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  letter-spacing: 1.5px !important;
  text-transform: uppercase !important;
  padding: 5px 10px !important;
  border-radius: 4px !important;
}
.blog-article-content {
  padding: 24px !important;
}
.blog-article-date {
  font-size: 12px !important;
  color: rgba(255,255,255,0.4) !important;
  margin-bottom: 8px !important;
}
.blog-article-title {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #FFFFFF !important;
  margin-bottom: 8px !important;
  line-height: 1.3 !important;
}
.blog-article-excerpt {
  font-size: 14px !important;
  color: rgba(255,255,255,0.55) !important;
  font-weight: 300 !important;
  line-height: 1.6 !important;
  margin-bottom: 12px !important;
}
.blog-article-link {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1px !important;
  text-transform: uppercase !important;
  color: #8FB479 !important;
}

/* === BLOG HEADER === */
.blog-header-section {
  background: linear-gradient(135deg, #0E1F26 0%, #204B57 50%, #162F38 100%) !important;
  padding: 60px 0 !important;
  text-align: center !important;
}
.blog-page-title {
  font-family: 'Big Shoulders Display', sans-serif !important;
  font-size: clamp(36px, 5vw, 56px) !important;
  font-weight: 800 !important;
  color: #FFFFFF !important;
  margin-bottom: 12px !important;
}
.blog-page-desc {
  font-size: 17px !important;
  color: rgba(255,255,255,0.6) !important;
  font-weight: 300 !important;
  max-width: 560px !important;
  margin: 0 auto !important;
}

/* === BLOG PAGINATION === */
.blog-pagination {
  padding: 40px 0 !important;
  text-a
 
/* === ARTICLE TITLE SIZE (broad targeting) === */
.haze-article .article-header-section .article-header-inner h1.article-page-title {
  font-size: clamp(28px, 5vw, 42px) !important;
  font-weight: 800 !important;
}
/* === LINK COLORS === */
a {
  color: #8FB479 !important;
}
a:visited {
  color: #8FB479 !important;
}
a:hover {
  color: #A8C896 !important;
}

/* Keep nav, buttons, and cards from being affected */
.btn, .btn-primary, .btn-outline,
nav a, .nav-link, .nav-dropdown a,
.product-card, .blog-card, .blog-article-card,
.collection-card, .store-card-directions,
.footer-col a, .footer-bottom a,
.breadcrumbs a, .pagination-btn, .pagination-num {
  color: inherit !important;
}
/* === ARTICLE CONTENT LINKS === */
.article-content-section a,
.article-content-inner a,
.article-content-inner p a,
.article-content-section p a[href] {
  color: #8FB479 !important;
  text-decoration: underline !important;
  -webkit-text-fill-color: #8FB479 !important;
}
/* === ARTICLE/PAGE BODY LINK COLORS === */
.rte a,
.article-content-section a,
.article-body a,
.page-content a,
.haze-article a,
.haze-page a,
main a {
  color: #8FB479 !important;
  text-decoration: underline !important;
}
.rte a:visited,
.article-content-section a:visited,
main a:visited {
  color: #8FB479 !important;
}
.rte a:hover,
.article-content-section a:hover,
main a:hover {
  color: #A8C896 !important;
}
/* === FORCE ALL LINK COLORS === */
:root {
  --color-foreground: 255, 255, 255;
}
a[href] {
  color: #8FB479 !important;
}
a[href]:visited {
  color: #8FB479 !important;
}
a[href]:hover {
  color: #A8C896 !important;
}
/* === GLOBAL LINK COLORS === */
.article-content-section a,
.article-content-inner a,
.article-content-inner p a,
.rte a,
main a[href],
a[href] {
  color: #8FB479 !important;
  -webkit-text-fill-color: #8FB479 !important;
}
a[href]:hover {
  color: #A8C896 !important;
  -webkit-text-fill-color: #A8C896 !important;
}