/** Shopify CDN: Minification failed

Line 44:0 Unexpected "}"
Line 384:0 Unexpected "}"
Line 1439:0 Unexpected "<"
Line 1598:92 Unexpected ","
Line 1599:93 Unexpected ","

**/

/* ============================================
   THE HAZE CONNECT — Custom Theme Styles
   File: haze-custom.css
   Location: Assets/ folder in Shopify theme
   
   Brand Colors:
     Blue Dream:      #204B57  (primary dark)
     Green Kush:      #8FB479  (accent green)
     Acapulco Gold:   #FFA637  (CTA / urgency)
     White Widow:     #FFFFFF  (white)
     Golden Goat:     #9E5C1B  (warm accent)
   
   Primary Font: Pressio (fallback: Helvetica Neue, sans-serif)
   Accent Font:  Caveat (Google Fonts)
   
   SECTION RHYTHM:
     dark hero → white trust → light collections
     → dark best sellers → white brand story
     → dark how-it-works → white shop-by-effect
     → dark reviews → light education/blog
     → dark FAQ → dark newsletter → dark footer
   
   NOTE: This file is loaded via theme.liquid with:
     <link rel="stylesheet" href="{{ 'haze-custom.css' | asset_url }}" type="text/css" media="all">
   
   FONT NOTE: Replace the @font-face src values below
   with your actual Pressio .woff2 file paths once uploaded
   to the Assets/ folder. Upload your font files via:
     Assets → Add a new asset → Upload file
   Then update the src lines to:
     src: url('Pressio-Light.woff2') format('woff2');
============================================ */

}

:root {
  --blue-dream: #204B57;
  --blue-dream-dark: #162F38;
  --blue-dream-deeper: #0E1F26;
  --blue-dream-light: #2A6275;
  --green-kush: #8FB479;
  --green-kush-dark: #6E9A5A;
  --green-kush-light: #A8C896;
  --green-kush-dim: rgba(143, 180, 121, 0.15);
  --acapulco-gold: #FFA637;
  --acapulco-gold-light: #FFB85C;
  --white-widow: #FFFFFF;
  --golden-goat: #9E5C1B;
  --off-white: #F7F6F3;
  --warm-white: #FAFAF8;
  --light-sage: #F2F5EF;
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255,255,255,0.7);
  --text-dim: rgba(255,255,255,0.45);
  /* Dark-on-light text */
  --text-dark: #1A2E35;
  --text-dark-secondary: #3D5A63;
  --text-dark-dim: #7A9AA3;
  --border-light: rgba(32, 75, 87, 0.1);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box !important; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif !important;
  background: var(--blue-dream-deeper) !important;
  color: var(--text-primary) !important;
  overflow-x: hidden !important;
  display: block !important;
  grid-template-rows: none !important;
  grid-template-columns: none !important;
  min-height: auto !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* === UTILITIES === */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 15px 38px;
  font-family: inherit;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}
.btn-primary {
  background: var(--green-kush);
  color: var(--blue-dream-dark);
}
.btn-primary:hover {
  background: var(--green-kush-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(143, 180, 121, 0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white-widow);
  border: 2px solid var(--green-kush);
}
.btn-outline:hover {
  background: var(--green-kush);
  color: var(--blue-dream-dark);
}
.btn-outline-dark {
  background: transparent;
  color: var(--blue-dream);
  border: 2px solid var(--blue-dream);
}
.btn-outline-dark:hover {
  background: var(--blue-dream);
  color: var(--white-widow);
}
.btn-gold {
  background: var(--acapulco-gold);
  color: var(--blue-dream-dark);
}
.btn-gold:hover {
  background: var(--acapulco-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 166, 55, 0.25);
}
.btn-dark {
  background: var(--blue-dream);
  color: var(--white-widow);
}
.btn-dark:hover {
  background: var(--blue-dream-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(32, 75, 87, 0.3);
}

.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--green-kush);
  margin-bottom: 14px;
  display: block;
}
.section-label-dark {
  color: var(--green-kush-dark);
}
.section-title { font-size: clamp(36px, 8vw, 90px) !important; font-weight: 800 !important; }
.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

.caveat {
  font-family: 'Caveat', cursive;
}

/* === SUBTLE GRAIN OVERLAY === */
body::before {
  content: '';
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.35;
}

/* ========== ANNOUNCEMENT BAR ========== */
.announcement-bar {
  background: var(--green-kush);
  color: var(--blue-dream-dark);
  text-align: center;
  padding: 10px 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.announcement-bar a {
  color: var(--blue-dream-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ========== NAVIGATION ========== */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(14, 31, 38, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(143, 180, 121, 0.1);
  transition: all 0.3s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--white-widow);
}
.nav-logo-icon {
  width: 36px;
  height: 36px;
}
.nav-logo-text {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.5px;
}
.nav-logo-text span { display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}
.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-kush);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--white-widow); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-actions a {
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.3s;
}
.nav-actions a:hover { color: var(--white-widow); }
.cart-icon { position: relative; }
.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--acapulco-gold);
  color: var(--blue-dream-dark);
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white-widow);
  transition: all 0.3s;
}

/* ========== HERO (DARK) ========== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-dream-deeper) 0%, var(--blue-dream) 50%, var(--blue-dream-dark) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 180, 121, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
}
.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 166, 55, 0.05) 0%, transparent 70%);
  animation: pulse 10s ease-in-out infinite reverse;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: 0.7; }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(143, 180, 121, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(143, 180, 121, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 0;
  width: 100%;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: 26px;
  color: var(--acapulco-gold);
  margin-bottom: 16px;
  display: block;
}
.hero-title { font-size: clamp(48px, 10vw, 140px) !important; font-weight: 900 !important; }
}
.hero-title .highlight {
  color: var(--green-kush);
}
.hero-description {
  font-size: 18px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 480px;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero right — product showcase */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-card {
  background: rgba(32, 75, 87, 0.5);
  border: 1px solid rgba(143, 180, 121, 0.15);
  border-radius: 16px;
  padding: 48px;
  width: 100%;
  max-width: 480px;
  position: relative;
  overflow: hidden;
}
.hero-product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-kush), var(--acapulco-gold));
}
.hero-product-badge {
  display: inline-block;
  background: var(--acapulco-gold);
  color: var(--blue-dream-dark);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 20px;
}
.hero-product-image {
  width: 100%;
  height: 280px;
  background: linear-gradient(135deg, rgba(143, 180, 121, 0.12), rgba(255, 166, 55, 0.08));
  border-radius: 8px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-product-image svg { opacity: 0.25; }
.hero-product-name {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
.hero-product-strain {
  font-size: 13px;
  color: var(--green-kush);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.hero-product-price {
  font-size: 28px;
  font-weight: 700;
  color: var(--acapulco-gold);
}
.hero-product-price .original {
  font-size: 20px;
  color: var(--text-dim);
  text-decoration: line-through;
  margin-left: 8px;
  font-weight: 400;
}

/* Floating badges */
.hero-float {
  position: absolute;
  padding: 10px 18px;
  background: rgba(14, 31, 38, 0.85);
  border: 1px solid rgba(143, 180, 121, 0.2);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  backdrop-filter: blur(10px);
  animation: float 6s ease-in-out infinite;
}
.hero-float svg { vertical-align: middle; margin-right: 6px; }
.hero-float-1 { top: 10%; right: -5%; animation-delay: 0s; }
.hero-float-2 { bottom: 15%; right: 5%; animation-delay: 2s; }
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ========== TRUST BAR (WHITE) ========== */
.trust-bar {
  background: var(--white-widow);
  padding: 36px 0;
  border-bottom: 1px solid var(--border-light);
}
.trust-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-item svg {
  color: var(--green-kush-dark);
  margin-bottom: 4px;
}
.trust-item strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--text-dark);
}
.trust-item span {
  font-size: 12px;
  color: var(--text-dark-dim);
  font-weight: 300;
}

/* ========== FEATURED COLLECTIONS (LIGHT) ========== */
.collections {
  padding: 100px 0;
  background: var(--off-white);
}
.collections-header {
  text-align: center;
  margin-bottom: 60px;
}
.collections-header .section-title {
  color: var(--text-dark);
}
.collections-header .section-subtitle {
  color: var(--text-dark-secondary);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
  background: var(--blue-dream);
  border: 1px solid rgba(143, 180, 121, 0.1);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.collection-card:hover {
  transform: translateY(-6px);
  border-color: rgba(143, 180, 121, 0.3);
  box-shadow: 0 24px 64px rgba(32, 75, 87, 0.25);
}
.collection-card-bg {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  transition: opacity 0.4s;
}
.collection-card:nth-child(1) .collection-card-bg {
  background: linear-gradient(135deg, var(--green-kush), transparent);
}
.collection-card:nth-child(2) .collection-card-bg {
  background: linear-gradient(135deg, var(--acapulco-gold), transparent);
}
.collection-card:nth-child(3) .collection-card-bg {
  background: linear-gradient(135deg, var(--golden-goat), transparent);
}
.collection-card:hover .collection-card-bg { opacity: 0.25; }

.collection-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(14, 31, 38, 0.95), transparent);
  z-index: 2;
}
.collection-card-icon {
  width: 100%;
  height: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.collection-card-icon svg {
  opacity: 0.12;
  width: 80px;
  height: 80px;
}
.collection-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-kush);
  margin-bottom: 10px;
}
.collection-name {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.3px;
  color: var(--white-widow);
}
.collection-count {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
}
.collection-arrow {
  position: absolute;
  top: 32px;
  right: 32px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(143, 180, 121, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  z-index: 2;
  color: var(--white-widow);
}
.collection-card:hover .collection-arrow {
  background: var(--green-kush);
  border-color: var(--green-kush);
}
.collection-card:hover .collection-arrow svg { color: var(--blue-dream-dark); }

/* ========== BEST SELLERS (DARK) ========== */
.best-sellers {
  padding: 100px 0;
  background: var(--blue-dream-dark);
}
.best-sellers-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: rgba(32, 75, 87, 0.3);
  border: 1px solid rgba(143, 180, 121, 0.08);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
}
.product-card:hover {
  border-color: rgba(143, 180, 121, 0.25);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(143, 180, 121, 0.06), rgba(32, 75, 87, 0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.product-image svg { opacity: 0.1; }
.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
}
.badge-sale { background: var(--acapulco-gold); color: var(--blue-dream-dark); }
.badge-new { background: var(--green-kush); color: var(--blue-dream-dark); }
.badge-hot { background: #E85D4A; color: white; }
.product-info { padding: 20px; }
.product-category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--green-kush);
  margin-bottom: 6px;
}
.product-name {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: -0.2px;
}
.product-desc {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  margin-bottom: 12px;
  line-height: 1.5;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--acapulco-gold);
}
.product-price .was {
  font-size: 13px;
  color: var(--text-dim);
  text-decoration: line-through;
  font-weight: 300;
  margin-left: 6px;
}
.product-rating {
  display: flex;
  gap: 2px;
}
.product-rating svg { color: var(--acapulco-gold); }

.product-add {
  display: block;
  width: calc(100% - 40px);
  margin: 0 20px 20px;
  padding: 12px;
  background: transparent;
  border: 1px solid rgba(143, 180, 121, 0.2);
  color: var(--green-kush);
  font-family: inherit;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
  border-radius: 6px;
}
.product-add:hover {
  background: var(--green-kush);
  color: var(--blue-dream-dark);
  border-color: var(--green-kush);
}

/* ========== BRAND STORY (WHITE) ========== */
.brand-story {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: var(--white-widow);
}
.brand-story-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 180, 121, 0.08) 0%, transparent 70%);
  right: -200px;
  top: 50%;
  transform: translateY(-50%);
}
.brand-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.brand-story-visual { position: relative; }
.brand-story-box {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--blue-dream);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.brand-story-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(143, 180, 121, 0.1) 0%, transparent 50%, rgba(255, 166, 55, 0.05) 100%);
}
.brand-story-logo { opacity: 0.15; }
.brand-story-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 180px;
  height: 180px;
  border: 2px solid var(--green-kush);
  border-radius: 12px;
  z-index: -1;
  opacity: 0.2;
}
.brand-story-text .caveat-line {
  font-family: 'Caveat', cursive;
  font-size: 20px;
  color: var(--acapulco-gold);
  margin-bottom: 8px;
}
.brand-story-text h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
  color: var(--text-dark);
}
.brand-story-text h2 .green { color: var(--green-kush-dark); }
.brand-story-text p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}
.brand-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}
.brand-value {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.brand-value-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: var(--light-sage);
  display: flex;
  align-items: center;
  justify-content: center;
}
.brand-value-icon svg { color: var(--green-kush-dark); }
.brand-value-text strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 2px;
  color: var(--text-dark);
}
.brand-value-text span {
  font-size: 12px;
  color: var(--text-dark-dim);
  font-weight: 300;
  line-height: 1.5;
}

/* ========== HOW IT WORKS (DARK) ========== */
.how-it-works {
  padding: 100px 0;
  background: var(--blue-dream-dark);
}
.how-it-works-header {
  text-align: center;
  margin-bottom: 60px;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 15%;
  right: 15%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-kush), var(--acapulco-gold), var(--green-kush), transparent);
  opacity: 0.2;
}
.step-card {
  text-align: center;
  position: relative;
  z-index: 2;
}
.step-number {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(143, 180, 121, 0.1);
  border: 2px solid var(--green-kush);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 28px;
  font-weight: 700;
  color: var(--green-kush);
}
.step-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: -0.3px;
}
.step-card p {
  font-size: 20px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ========== SHOP BY EFFECT (WHITE) ========== */
.shop-by-effect {
  padding: 100px 0;
  background: var(--white-widow);
}
.shop-by-effect-header {
  text-align: center;
  margin-bottom: 60px;
}
.shop-by-effect-header .section-title { color: var(--text-dark); }
.shop-by-effect-header .section-subtitle { color: var(--text-dark-secondary); margin: 0 auto; }
.effects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.effect-card {
  padding: 32px 24px;
  border-radius: 12px;
  border: 1px solid rgba(32, 75, 87, 0.08);
  text-align: center;
  cursor: pointer;
  transition: all 0.35s;
  text-decoration: none;
  background: var(--off-white);
}
.effect-card:hover {
  border-color: var(--green-kush);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(32, 75, 87, 0.1);
}
.effect-icon {
  font-size: 36px;
  margin-bottom: 16px;
  display: block;
}
.effect-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}
.effect-card p {
  font-size: 13px;
  color: var(--text-dark-dim);
  font-weight: 300;
  line-height: 1.5;
}
.effect-card .effect-cta {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-kush-dark);
  text-decoration: none;
}

/* ========== REVIEWS / SOCIAL PROOF (DARK) ========== */
.reviews {
  padding: 100px 0;
  background: var(--blue-dream-deeper);
  position: relative;
  overflow: hidden;
}
.reviews::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 800px; height: 800px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143, 180, 121, 0.04) 0%, transparent 70%);
}
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}
.reviews-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 48px;
  position: relative;
  z-index: 2;
}
.review-stat {
  text-align: center;
}
.review-stat .stat-number {
  font-size: 42px;
  font-weight: 700;
  color: var(--acapulco-gold);
  line-height: 1;
}
.review-stat .stat-label {
  font-size: 13px;
  color: var(--text-dim);
  font-weight: 300;
  margin-top: 6px;
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}
.review-card {
  background: rgba(32, 75, 87, 0.3);
  border: 1px solid rgba(143, 180, 121, 0.08);
  border-radius: 12px;
  padding: 32px;
}
.review-stars {
  color: var(--acapulco-gold);
  font-size: 20px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-kush);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: var(--blue-dream-dark);
}
.review-author-info strong {
  display: block;
  font-size: 20px;
  font-weight: 700;
}
.review-author-info span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ========== BLOG / EDUCATION (OFF-WHITE) ========== */
.education {
  padding: 100px 0;
  background: var(--off-white);
}
.education-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
}
.education-header .section-title { color: var(--text-dark); }
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white-widow);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  transition: all 0.35s;
  border: 1px solid rgba(32, 75, 87, 0.06);
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(32, 75, 87, 0.1);
}
.blog-card-image {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--blue-dream);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.blog-card-image svg { opacity: 0.15; }
.blog-card-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 4px;
  background: var(--green-kush);
  color: var(--blue-dream-dark);
}
.blog-card-content {
  padding: 24px;
}
.blog-card-date {
  font-size: 12px;
  color: var(--text-dark-dim);
  font-weight: 300;
  margin-bottom: 8px;
}
.blog-card-content h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.3;
  letter-spacing: -0.2px;
}
.blog-card-content p {
  font-size: 20px;
  color: var(--text-dark-secondary);
  font-weight: 300;
  line-height: 1.6;
}
.blog-card-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green-kush-dark);
}

/* ========== FAQ (DARK) ========== */
.faq {
  padding: 100px 0;
  background: var(--blue-dream-dark);
}
.faq-header {
  text-align: center;
  margin-bottom: 60px;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid rgba(143, 180, 121, 0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: inherit;
  font-size: 17px;
  font-weight: 600;
  color: var(--white-widow);
  text-align: left;
  transition: color 0.3s;
}
.faq-question:hover { color: var(--green-kush); }
.faq-question svg {
  min-width: 20px;
  transition: transform 0.3s;
  color: var(--green-kush);
}
.faq-item.open .faq-question svg {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-answer p {
  font-size: 20px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ========== NEWSLETTER (DARK) ========== */
.newsletter {
  padding: 80px 0;
  background: var(--blue-dream);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    linear-gradient(135deg, rgba(143, 180, 121, 0.08) 0%, transparent 50%),
    linear-gradient(315deg, rgba(255, 166, 55, 0.05) 0%, transparent 50%);
}
.newsletter-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.newsletter-inner .section-title { font-size: clamp(36px, 8vw, 90px) !important; font-weight: 800 !important; }
.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}
.newsletter-input {
  flex: 1;
  padding: 16px 20px;
  background: rgba(14, 31, 38, 0.5);
  border: 1px solid rgba(143, 180, 121, 0.2);
  border-radius: 0;
  color: var(--white-widow);
  font-family: inherit;
  font-size: 20px;
  font-weight: 300;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: var(--text-dim); }
.newsletter-input:focus { border-color: var(--green-kush); }
.newsletter-disclaimer {
  font-size: 12px;
  color: var(--text-dim);
  margin-top: 16px;
  font-weight: 300;
}

/* ========== FOOTER (DARK) ========== */
.footer {
  padding: 80px 0 40px;
  background: var(--blue-dream-deeper);
  border-top: 1px solid rgba(143, 180, 121, 0.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 16px;
  color: var(--text-dim);
  font-weight: 300;
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(143, 180, 121, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 20px;
}
.footer-socials a:hover {
  background: var(--green-kush);
  color: var(--blue-dream-dark);
  border-color: var(--green-kush);
}
.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green-kush);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 20px;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-col a:hover { color: var(--white-widow); }

.footer-bottom {
  border-top: 1px solid rgba(143, 180, 121, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}
.footer-legal {
  display: flex;
  gap: 24px;
}
.footer-legal a {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s;
}
.footer-legal a:hover { color: var(--white-widow); }

/* ========== AGE GATE OVERLAY ========== */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 38, 0.97);
  backdrop-filter: blur(20px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s, visibility 0.5s;
}
.age-gate.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.age-gate-box {
  text-align: center;
  max-width: 440px;
  padding: 48px;
  background: var(--white-widow);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}
.age-gate-box h2 {
  font-size: 28px;
  font-weight: 700;
  margin: 20px 0 8px;
  color: var(--text-dark);
}
.age-gate-box p {
  font-size: 20px;
  color: var(--text-dark-secondary);
  font-weight: 300;
  margin-bottom: 28px;
  line-height: 1.6;
}
.age-gate-buttons {
  display: flex;
  gap: 12px;
  justify-content: center;
}
.age-gate-buttons .btn { flex: 1; text-align: center; }
.age-deny {
  background: var(--off-white);
  color: var(--text-dark-dim);
}
.age-deny:hover {
  background: #E8E6E1;
}

/* ========== SCROLL 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;
  transform: translateY(0);
}
<script>
(function() {
  var nav = document.querySelector('.nav');
  if (!nav) return;
  var header = nav.closest('.shopify-section') || nav.parentElement;
  var lastScroll = 0;
  header.style.position = 'sticky';
  header.style.top = '0';
  header.style.zIndex = '1000';
  header.style.transition = 'transform 0.3s ease';
  window.addEventListener('scroll', function() {
    var currentScroll = window.pageYOffset;
    if (currentScroll < 50) {
      header.style.transform = 'translateY(0)';
    } else if (currentScroll > lastScroll) {
      header.style.transform = 'translateY(-100%)';
    } else {
      header.style.transform = 'translateY(0)';
    }
    lastScroll = currentScroll;
  });
})();
</script>

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-visual { display: none; }
  .hero { min-height: 70vh; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-story-inner { grid-template-columns: 1fr; gap: 48px; }
  .brand-story-visual { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 768px) {
  .announcement-bar { font-size: 11px; padding: 8px 16px; }

  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(14, 31, 38, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 0;
    border-bottom: 1px solid rgba(143, 180, 121, 0.1);
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(143, 180, 121, 0.06);
  }
  .nav-links.open a {
    display: block;
    padding: 16px 0;
    font-size: 20px;
  }

  .hero { min-height: auto; padding-top: 20px; }
  .hero-content { padding: 40px 0 60px; }
  .hero-title { font-size: clamp(38px, 8vw, 56px) !important; font-weight: 900 !important; }
  .hero-description { font-size: 20px; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { text-align: center; }

  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .collections { padding: 60px 0; }
  .collections-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .collection-card { aspect-ratio: 16/9; }

  .best-sellers { padding: 60px 0; }
  .best-sellers-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-info { padding: 14px; }
  .product-name { font-size: 20px; }
  .product-desc { display: none; }
  .product-add {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 10px;
    font-size: 11px;
  }

  .brand-story { padding: 60px 0; }
  .brand-values { grid-template-columns: 1fr; }
  .brand-story-accent { display: none; }

  .steps-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps-grid::before { display: none; }

  .effects-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .effect-card { padding: 24px 16px; }

  .reviews-stats { gap: 24px; }
  .review-stat .stat-number { font-size: 32px; }
  .reviews-grid { grid-template-columns: 1fr; }

  .education { padding: 60px 0; }
  .education-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .blog-grid { grid-template-columns: 1fr; }

  .faq { padding: 60px 0; }
  .faq-question { font-size: 20px; }

  .newsletter { padding: 60px 0; }
  .newsletter-form { flex-direction: column; }

  .footer { padding: 48px 0 24px; }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
  .footer-legal { justify-content: center; }
}

@media (max-width: 420px) {
  .hero-title { font-size: clamp(48px, 10vw, 140px) !important; font-weight: 900 !important; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
}

/* ========== DAWN OVERRIDE FIXES ========== */
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: inherit !important;
  line-height: inherit !important;
}
/* === FINAL FONT SIZE OVERRIDES — MUST BE LAST === */
.hero-title { font-size: clamp(48px, 10vw, 140px) !important; font-weight: 900 !important; },
.section-title { font-size: clamp(36px, 8vw, 90px) !important; font-weight: 800 !important; },
.article-cta-title,
.article-related-title {
  font-size: clamp(48px, 8vw, 90px) !important;
  font-weight: 800 !important;
}
.page-title,
.collection-page-title,
.article-page-title,
.blog-page-title {
  font-size: clamp(28px, 5vw, 42px) !important;
  font-weight: 900 !important;
  letter-spacing: -2px !important;
}
.hero-description {
  font-size: 26px !important;
}
.section-subtitle,
.page-subtitle,
.blog-page-desc {
  font-size: 24px !important;
}
.product-name {
  font-size: 24px !important;
}
.product-price {
  font-size: 26px !important;
}
.faq-question {
  font-size: 26px !important;
}
.step-card h3 {
  font-size: 30px !important;
}