/** Shopify CDN: Minification failed

Line 2818:20 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)
   
   Fonts:
     Headings:  Big Shoulders Display (Google Fonts)
     Body:      DM Sans (Google Fonts)
     Accent:    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:
     {{ 'haze-custom.css' | asset_url | stylesheet_tag }}
   
   GOOGLE FONTS LINK (in theme.liquid <head>):
     <link href="https://fonts.googleapis.com/css2?family=Big+Shoulders+Display:wght@300;400;500;600;700;800;900&family=Caveat:wght@400;700&family=DM+Sans:wght@300;400;500;700&display=swap" rel="stylesheet">
============================================ */

/* ========================================
   CSS CUSTOM PROPERTIES
======================================== */
: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);
}

/* ========================================
   BASE RESET & BODY
======================================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--blue-dream-deeper);
  color: var(--text-primary);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ========================================
   TYPOGRAPHY — Font Assignments
======================================== */

/* Headings → Big Shoulders Display */
h1, h2, h3, h4, h5, h6,
.hero-title,
.section-title,
.collection-name,
.product-name,
.blog-card-content h3,
.step-card h3,
.effect-card h3,
.brand-story-text h2,
.page-title,
.collection-page-title,
.blog-page-title,
.article-cta-title {
  font-family: 'Big Shoulders Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Body / UI elements → DM Sans */
p, span, li, label, input, select, textarea, button,
.section-subtitle,
.hero-description,
.trust-item span,
.product-desc,
.brand-story-text p,
.step-card p,
.effect-card p,
.review-text,
.blog-card-content p,
.faq-answer p,
.footer-brand p,
.footer-col a,
.nav-links a,
.btn {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Nav + Buttons: keep DM Sans but bold/tracked */
.nav-links a,
.btn {
  font-family: 'DM Sans', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

/* Accent / Taglines → Caveat */
.caveat,
.hero-tagline,
.brand-story-text .caveat-line {
  font-family: 'Caveat', cursive;
}

/* ========================================
   UTILITIES
======================================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  padding: 15px 38px;
  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(32px, 5vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}
.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 560px;
}

/* ========================================
   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;
}

/* ========================================
   MOBILE MENU — Left-aligned with arrows
======================================== */
.nav-links.open {
  text-align: left;
}
.nav-links.open li {
  text-align: left;
}

.haze-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 31, 38, 0.97);
  backdrop-filter: blur(30px);
  z-index: 150;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  overflow-y: auto;
  padding: 100px 28px 40px;
}
.haze-mobile-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-section {
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
  transition: all 0.35s ease;
}
.haze-mobile-menu.open .mobile-menu-section {
  opacity: 1;
  transform: translateY(0);
}
.haze-mobile-menu.open .mobile-menu-section:nth-child(1) { transition-delay: 0.08s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(2) { transition-delay: 0.14s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(3) { transition-delay: 0.20s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(4) { transition-delay: 0.26s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(5) { transition-delay: 0.32s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(6) { transition-delay: 0.38s; }
.haze-mobile-menu.open .mobile-menu-section:nth-child(7) { transition-delay: 0.44s; }

.mobile-menu-heading {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #8FB479;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(143,180,121,0.15);
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  padding: 13px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s ease;
}
.mobile-menu-link:hover,
.mobile-menu-link:active {
  color: #8FB479;
  padding-left: 8px;
}
.mobile-menu-link .menu-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  color: #8FB479;
}
.mobile-menu-link:hover .menu-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-standalone {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  padding: 14px 0;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all 0.2s;
}
.mobile-menu-standalone:hover {
  color: #8FB479;
  padding-left: 8px;
}
.mobile-menu-standalone .menu-arrow {
  font-size: 14px;
  opacity: 0;
  transform: translateX(-4px);
  transition: all 0.2s;
  color: #8FB479;
}
.mobile-menu-standalone:hover .menu-arrow {
  opacity: 1;
  transform: translateX(0);
}

.mobile-menu-social {
  display: flex;
  gap: 14px;
  padding-top: 20px;
  justify-content: center;
}
.mobile-menu-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(143,180,121,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: all 0.25s;
}
.mobile-menu-social a:hover {
  border-color: #8FB479;
  color: #8FB479;
  background: rgba(143,180,121,0.15);
}

/* ========================================
   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: 22px;
  color: var(--acapulco-gold);
  margin-bottom: 16px;
  display: block;
}
.hero-title {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -2px;
  margin-bottom: 28px;
}
.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: 16px;
  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 (soft green tint)
======================================== */
.trust-bar {
  background: #E4EDE6;
  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: 16px;
  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);
}

/* ========================================
   TRUST BADGES (product page)
======================================== */
.product-trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}
.product-trust-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.5);
  padding: 6px 12px;
  background: rgba(32,75,87,0.3);
  border: 1px solid rgba(143,180,121,0.08);
  border-radius: 6px;
}
.product-trust-badge svg {
  color: #8FB479;
  min-width: 14px;
}

/* ========================================
   FLAVOR PICKER
======================================== */
.flavor-picker {
  margin-bottom: 20px;
}
.flavor-picker-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 10px;
}
.flavor-swatches {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.flavor-swatch {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  border: 2px solid rgba(143,180,121,0.12);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.flavor-swatch:hover {
  border-color: rgba(143,180,121,0.4);
}
.flavor-swatch-active {
  border-color: #8FB479;
  box-shadow: 0 0 0 2px rgba(143,180,121,0.3);
}
.flavor-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   BRAND STORY (soft green tint)
======================================== */
.brand-story {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  background: #E4EDE6;
}
.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: 16px;
  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: 14px;
  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: 15px;
  color: var(--text-secondary);
  font-weight: 300;
  line-height: 1.6;
  max-width: 280px;
  margin: 0 auto;
}

/* ========================================
   SHOP BY EFFECT (soft green tint)
======================================== */
.shop-by-effect {
  padding: 100px 0;
  background: #E4EDE6;
}
.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: #F0F5EC;
}
.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;
}

/* Polish additions */
.effect-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.effect-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

/* ========================================
   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: 14px;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 15px;
  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;
  margin-top: 16px;
}
.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: 14px;
  color: var(--blue-dream-dark);
}
.review-author-info strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
}
.review-author-info span {
  font-size: 12px;
  color: var(--text-dim);
  font-weight: 300;
}

/* ========================================
   BLOG / EDUCATION (soft green tint)
======================================== */
.education {
  padding: 100px 0;
  background: #E4EDE6;
}
.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: #ffffff;
}
.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: 14px;
  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.3s ease, padding 0.3s ease;
  padding: 0;
}
.faq-item.open .faq-answer {
  max-height: 500px;
  padding: 0 0 24px 0;
}
.faq-answer p {
  font-size: 15px;
  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(28px, 4vw, 40px);
}
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 32px auto 0;
}
.newsletter-input {
  flex: 1;
  background: rgba(14, 31, 38, 0.5);
  border: 1px solid rgba(143, 180, 121, 0.2);
  border-right: none;
  color: var(--white-widow);
  font-family: inherit;
  font-size: 14px;
  font-weight: 300;
  padding: 16px 20px;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border-color 0.3s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--green-kush); }
.newsletter-form .btn-gold {
  border-radius: 0 4px 4px 0;
  white-space: nowrap;
  padding: 16px 24px;
}
.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: 14px;
  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: 14px;
}
.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: 14px;
  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: 15px;
  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;
}

/* ========================================
   PRODUCT PAGE — Strain Stats Bar
======================================== */
.strain-stats-bar {
  display: flex;
  gap: 20px;
  margin-bottom: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.strain-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.strain-stat-label {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.strain-stat-value {
  font-size: 15px;
  font-weight: 700;
  color: #FFFFFF;
}
.strain-stat-highlight {
  color: #FFA637;
}
.product-strain-type {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  font-weight: 500;
  margin-bottom: 8px;
}

/* ========================================
   PRODUCT PAGE — 2x2 Variant Grid
======================================== */
.variant-grid-2x2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 0;
}
.variant-grid-btn {
  padding: 14px 12px;
  background: transparent;
  border: 1.5px solid rgba(143,180,121,0.15);
  border-radius: 10px;
  color: rgba(255,255,255,0.7);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  position: relative;
}
.variant-grid-btn:hover {
  border-color: rgba(143,180,121,0.5);
  color: #FFFFFF;
}
.variant-grid-btn-active {
  border-color: #8FB479;
  background: #8FB479;
  color: #162F38;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(143,180,121,0.2);
}
.variant-grid-btn-active .variant-grid-price {
  color: #162F38;
  opacity: 0.8;
}
.variant-grid-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.variant-grid-title {
  font-size: 14px;
  font-weight: 600;
}
.variant-grid-price {
  font-size: 11px;
  font-weight: 500;
  opacity: 0.6;
}
.variant-grid-sold-out {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  position: absolute;
  bottom: 4px;
}

/* ========================================
   PRODUCT PAGE — Subscribe & Save
======================================== */
.subscribe-save-option {
  margin-bottom: 20px;
  padding: 16px;
  border: 1.5px solid rgba(255,166,55,0.2);
  border-radius: 10px;
  background: rgba(255,166,55,0.03);
  cursor: pointer;
  transition: all 0.2s;
}
.subscribe-save-option:hover {
  border-color: rgba(255,166,55,0.4);
  background: rgba(255,166,55,0.06);
}
.subscribe-save-active {
  border-color: #FFA637;
  background: rgba(255,166,55,0.08);
}
.subscribe-save-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}
.subscribe-save-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.subscribe-save-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid #FFA637;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.subscribe-save-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #FFA637;
  opacity: 0;
  transition: opacity 0.2s;
}
.subscribe-save-active .subscribe-save-dot {
  opacity: 1;
}
.subscribe-save-label {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
}
.subscribe-save-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
  background: #FFA637;
  color: #162F38;
}
.subscribe-save-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  padding-left: 26px;
  line-height: 1.5;
}
.subscribe-save-frequency {
  display: none;
  margin-top: 12px;
  padding-left: 26px;
}
.subscribe-save-active .subscribe-save-frequency {
  display: block;
}
.subscribe-save-frequency select {
  width: 100%;
  padding: 10px 12px;
  background: #1A3D49;
  border: 1px solid rgba(143,180,121,0.15);
  border-radius: 8px;
  color: #FFFFFF;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='rgba(255,255,255,0.5)' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
}
.subscribe-save-frequency select:focus {
  outline: none;
  border-color: #FFA637;
}

/* ========================================
   PRODUCT PAGE — Terpene Profile Tags
======================================== */
.terpene-profile {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.terpene-heading {
  font-size: 13px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}
.terpene-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.terpene-tag {
  padding: 4px 10px;
  background: rgba(143,180,121,0.15);
  border: 1px solid rgba(143,180,121,0.2);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: #8FB479;
}

/* ========================================
   PRODUCT PAGE — Image Thumbnails
======================================== */
.product-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  justify-content: center;
}
.product-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.2s;
  background: #1A3D49;
  flex-shrink: 0;
}
.product-thumb-active {
  border-color: #8FB479;
}
.product-thumb:hover {
  border-color: rgba(143,180,121,0.4);
}

/* ========================================
   PRODUCT PAGE — Tabs
======================================== */
.product-tabs-wrapper {
  padding: 0 0 32px;
  border-top: 1px solid rgba(255,255,255,0.04);
  margin-top: 24px;
}
.product-tab-nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-tab-btn {
  padding: 14px 20px;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,0.4);
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.product-tab-btn:hover {
  color: rgba(255,255,255,0.7);
}
.product-tab-active {
  color: #8FB479;
  border-bottom-color: #8FB479;
}
.product-tab-content {
  display: none;
}
.product-tab-visible {
  display: block;
}
.product-tab-content p {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
}
.tab-section-heading {
  font-size: 14px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 8px;
}
.tab-section-heading + .tab-section-heading,
p + .tab-section-heading {
  margin-top: 16px;
}
.coa-link {
  display: inline-block;
  margin-top: 12px;
  color: #8FB479;
  font-weight: 600;
  text-decoration: underline;
  font-size: 14px;
}
.coa-link:hover {
  color: #A8C896;
}

/* ========================================
   PRODUCT PAGE — Related Products Scroll
======================================== */
.product-related-section {
  padding: 32px 0 40px;
  border-top: 1px solid rgba(255,255,255,0.04);
}
.related-products-heading {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #8FB479;
  margin-bottom: 16px;
}
.related-products-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.related-products-scroll::-webkit-scrollbar {
  height: 3px;
}
.related-products-scroll::-webkit-scrollbar-thumb {
  background: rgba(143,180,121,0.15);
  border-radius: 2px;
}
.related-product-card {
  flex: 0 0 160px;
  background: rgba(32,75,87,0.3);
  border: 1px solid rgba(143,180,121,0.08);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s;
}
.related-product-card:hover {
  border-color: rgba(143,180,121,0.2);
  transform: translateY(-2px);
}
.related-product-image {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1A3D49, #204B57);
  display: flex;
  align-items: center;
  justify-content: center;
}
.related-product-info {
  padding: 10px 12px;
}
.related-product-name {
  font-size: 12px;
  font-weight: 600;
  color: #FFFFFF;
  display: block;
  margin-bottom: 4px;
}
.related-product-price {
  font-size: 14px;
  font-weight: 700;
  color: #FFA637;
}

/* ========================================
   QUANTITY DISCOUNT TIERS
======================================== */
.qty-tiers {
  margin-bottom: 20px;
}
.qty-tiers-label {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.qty-tier {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 18px;
  margin-bottom: 8px;
  border: 1px solid rgba(143,180,121,0.15);
  background: transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'DM Sans', sans-serif;
  text-align: left;
}
.qty-tier:hover {
  border-color: rgba(143,180,121,0.4);
  background: rgba(143,180,121,0.05);
}
.qty-tier-active {
  border-color: #8FB479;
  background: rgba(143,180,121,0.1);
}
.qty-tier-top {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-tier-amount {
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}
.qty-tier-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 8px;
  border-radius: 4px;
  background: #FFA637;
  color: #162F38;
}
.qty-tier-badge-default {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
}
.qty-tier-label {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 400;
}
.qty-tier-savings-msg {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #8FB479;
  margin-bottom: 16px;
}
.qty-tier-savings-msg svg {
  color: #8FB479;
  min-width: 14px;
}

/* ========================================
   CART DRAWER
======================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 90vw;
  height: 100vh;
  background: #0E1F26;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(143,180,121,0.1);
}
.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid rgba(143,180,121,0.1);
}
.cart-drawer-header h3 {
  font-size: 18px;
  font-weight: 700;
  color: #FFFFFF;
}
.cart-drawer-count {
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}
.cart-drawer-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  padding: 4px;
}
.cart-drawer-close:hover {
  color: #FFFFFF;
}

.cart-drawer-shipping {
  padding: 16px 24px;
  background: rgba(32,75,87,0.3);
}
.shipping-bar-text {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 8px;
}
.shipping-bar-text strong {
  color: #FFA637;
}
.shipping-bar-track {
  width: 100%;
  height: 4px;
  background: rgba(143,180,121,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.shipping-bar-fill {
  height: 100%;
  background: #8FB479;
  border-radius: 2px;
  transition: width 0.5s ease;
  max-width: 100%;
}

.cart-drawer-items {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}
.cart-drawer-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(143,180,121,0.08);
}
.cart-item-image {
  width: 72px;
  min-width: 72px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(32,75,87,0.3);
}
.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item-details {
  flex: 1;
}
.cart-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  margin-bottom: 2px;
}
.cart-item-variant {
  font-size: 12px;
  color: #8FB479;
  margin-bottom: 4px;
}
.cart-item-price {
  font-size: 14px;
  font-weight: 700;
  color: #FFA637;
  margin-bottom: 8px;
}
.cart-item-qty-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-item-qty {
  display: flex;
  align-items: center;
  border: 1px solid rgba(143,180,121,0.15);
  border-radius: 4px;
}
.cart-qty-btn {
  width: 28px;
  height: 28px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
}
.cart-qty-btn:hover {
  color: #FFFFFF;
}
.cart-qty-val {
  font-size: 13px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 0 8px;
}
.cart-item-remove {
  background: none;
  border: none;
  color: rgba(255,255,255,0.3);
  font-size: 11px;
  cursor: pointer;
  text-decoration: underline;
  font-family: 'DM Sans', sans-serif;
}
.cart-item-remove:hover {
  color: #FFA637;
}

.cart-drawer-empty {
  text-align: center;
  padding: 60px 20px;
}
.cart-drawer-empty p {
  color: rgba(255,255,255,0.45);
  font-size: 16px;
  margin-bottom: 20px;
}

.cart-drawer-upsells {
  padding: 16px 24px;
  border-top: 1px solid rgba(143,180,121,0.1);
}
.upsell-title {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.upsell-scroll {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 8px;
  -webkit-overflow-scrolling: touch;
}
.upsell-card {
  min-width: 100px;
  background: rgba(32,75,87,0.3);
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid rgba(143,180,121,0.08);
  transition: border-color 0.2s ease;
}
.upsell-card:hover {
  border-color: rgba(143,180,121,0.25);
}
.upsell-card img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}
.upsell-info {
  padding: 8px;
}
.upsell-name {
  font-size: 11px;
  color: #FFFFFF;
  display: block;
  line-height: 1.3;
}
.upsell-price {
  font-size: 12px;
  font-weight: 700;
  color: #FFA637;
}

.cart-drawer-footer {
  padding: 20px 24px;
  border-top: 1px solid rgba(143,180,121,0.15);
  background: rgba(14,31,38,0.95);
}
.cart-drawer-subtotal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.cart-drawer-subtotal span:first-child {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.cart-drawer-total {
  font-size: 22px;
  font-weight: 700;
  color: #FFFFFF;
}
.cart-drawer-tax-note {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 16px;
}
.cart-drawer-checkout-btn {
  display: block;
  width: 100%;
  padding: 16px;
  background: #8FB479;
  color: #162F38;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.cart-drawer-checkout-btn:hover {
  background: #7DA368;
}
.cart-drawer-viewcart {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
}
.cart-drawer-viewcart:hover {
  color: #FFFFFF;
}

/* ========================================
   COA PAGE STYLES
======================================== */
.coa-preview-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
  border-radius: 8px;
}
.coa-preview-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14, 31, 38, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
  font-size: 13px;
  font-weight: 600;
}
.coa-preview-card:hover .coa-preview-overlay {
  opacity: 1;
}
.coa-preview-overlay svg {
  color: #8FB479;
}

.coa-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}
.coa-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: none;
}
.coa-action-primary {
  background: #8FB479;
  color: #162F38;
}
.coa-action-primary:hover {
  background: #A8C896;
}
.coa-action-outline {
  background: transparent;
  color: #8FB479;
  border: 1.5px solid rgba(143,180,121,0.3);
}
.coa-action-outline:hover {
  border-color: #8FB479;
  background: rgba(143,180,121,0.08);
}

.coa-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(14, 31, 38, 0.85);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.coa-popup-overlay.coa-popup-visible {
  opacity: 1;
  pointer-events: all;
}
.coa-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  width: 90vw;
  max-width: 900px;
  height: 85vh;
  background: #162F38;
  border: 1px solid rgba(143,180,121,0.2);
  border-radius: 14px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.coa-popup.coa-popup-visible {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}
.coa-popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(143,180,121,0.1);
  flex-shrink: 0;
}

/* ========================================
   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);
}

/* ========================================
   RESPONSIVE — 1024px
======================================== */
@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; }
}

/* ========================================
   RESPONSIVE — 768px (mobile)
======================================== */
@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);
    text-align: left;
  }
  .nav-links.open li {
    border-bottom: 1px solid rgba(143, 180, 121, 0.06);
    text-align: left;
  }
  .nav-links.open a {
    display: block;
    padding: 16px 0;
    font-size: 15px;
  }

  .hero { min-height: auto; padding-top: 20px; }
  .hero-content { padding: 40px 0 60px; }
  .hero-title { font-size: 52px; }
  .hero-description { font-size: 16px; }
  .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: 14px; }
  .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: 15px; }

  .newsletter { padding: 60px 0; }
  .newsletter-form { flex-direction: column; gap: 0; }
  .newsletter-input { border-right: 1px solid rgba(143, 180, 121, 0.2); border-radius: 4px 4px 0 0; border-bottom: none; }
  .newsletter-form .btn-gold { border-radius: 0 0 4px 4px; }

  .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; }

  /* Product v2 mobile */
  .strain-stats-bar {
    gap: 16px;
    flex-wrap: wrap;
  }
  .variant-grid-2x2 {
    grid-template-columns: 1fr 1fr;
  }
  .product-thumbnails {
    gap: 6px;
  }
  .product-thumb {
    width: 48px;
    height: 48px;
  }

  /* Cart drawer mobile */
  .cart-drawer {
    width: 100vw;
    max-width: 100vw;
  }
}

/* ========================================
   RESPONSIVE — 420px (small mobile)
======================================== */
@media (max-width: 420px) {
  .hero-title { font-size: 42px; }
  .products-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { grid-template-columns: 1fr; }
  .strain-stats-bar { gap: 12px; }
  .strain-stat-value { font-size: 14px; }
}

/* ========================================
   FINAL FONT SIZE OVERRIDES — MUST BE LAST
   These ensure Big Shoulders Display sizes
   are correct and nothing overrides them.
======================================== */
.hero-title {
  font-size: clamp(64px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -2px;
  line-height: 0.95;
}
.section-title,
.article-cta-title, {
  font-size: clamp(48px, 8vw, 90px);
  font-weight: 800;
}
.page-title,
.collection-page-title,
.blog-page-title {
  font-size: clamp(56px, 10vw, 120px);
  font-weight: 900;
  letter-spacing: -2px;
}
.hero-description {
  font-size: 20px;
}
.section-subtitle,
.page-subtitle,
.blog-page-desc {
  font-size: 18px;
}
.product-name {
  font-size: 18px;
}
.product-price {
  font-size: 22px;
}
.faq-question {
  font-size: 18px;
}
.step-card h3 {
  font-size: 24px;
}

@media (max-width: 768px) {
  .hero-title { font-size: clamp(42px, 12vw, 72px); }
  .section-title,
  .article-cta-title,
  .page-title,
  .collection-page-title,
  .blog-page-title { font-size: clamp(38px, 10vw, 64px); }
}

@media (max-width: 420px) {
  .hero-title { font-size: 42px; }
}

/* ── Fulfillment Delay Notice ──────────────────────────── */
.cart-fulfillment-notice {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: #FFF8EC;
  border: 1px solid #FFA637;
  border-left: 4px solid #FFA637;
  border-radius: 6px;
  padding: 10px 12px;
  margin-bottom: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  line-height: 1.5;
  color: #9E5C1B;
}
.cart-fulfillment-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: #FFA637;
}

/* =============================================
   COA Direct Links & List Styles (2026-04-02)
   ============================================= */

/* --- Direct COA button (above tabs) --- */
.coa-direct-links {
  display: flex;
  gap: 10px;
  margin-bottom: 8px;
}

a.coa-direct-btn,
main a.coa-direct-btn,
a[href].coa-direct-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  background: #8FB479;
  color: #162F38;
  -webkit-text-fill-color: #162F38;
}

a.coa-direct-btn:hover,
main a.coa-direct-btn:hover,
a[href].coa-direct-btn:hover {
  background: #A8C896;
  color: #162F38;
  -webkit-text-fill-color: #162F38;
}

a.coa-direct-btn svg,
a[href].coa-direct-btn svg {
  flex-shrink: 0;
  color: #162F38;
  -webkit-text-fill-color: #162F38;
}

/* --- COA List in Lab Results tab --- */
.coa-list-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.coa-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: rgba(143, 180, 121, 0.06);
  border: 1px solid rgba(143, 180, 121, 0.15);
  border-radius: 10px;
  transition: border-color 0.2s ease;
}

.coa-list-item:hover {
  border-color: rgba(143, 180, 121, 0.35);
}

.coa-list-item-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.coa-list-item-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8FB479;
  flex-shrink: 0;
}

.coa-list-item-icon svg {
  color: #8FB479;
}

.coa-list-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.coa-list-item-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #D4E7C5;
}

.coa-list-item-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  color: rgba(212, 231, 197, 0.55);
}

.coa-list-item-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}

a.coa-list-view-btn,
main a.coa-list-view-btn,
a[href].coa-list-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 1.5px solid rgba(143, 180, 121, 0.3);
  background: transparent;
  color: #8FB479;
}

a.coa-list-view-btn:hover,
main a.coa-list-view-btn:hover,
a[href].coa-list-view-btn:hover {
  border-color: #8FB479;
  background: rgba(143, 180, 121, 0.08);
  color: #8FB479;
}

/* --- View All COAs link --- */
a.coa-view-all-link,
main a.coa-view-all-link,
a[href].coa-view-all-link {
  display: inline-block;
  margin-top: 14px;
  color: #8FB479;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.2s ease;
}

a.coa-view-all-link:hover,
main a.coa-view-all-link:hover {
  color: #A8C896;
}

/* --- No results state --- */
.coa-no-results {
  padding: 20px;
  text-align: center;
  color: rgba(212, 231, 197, 0.5);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

/* --- Responsive --- */
@media (max-width: 480px) {
  .coa-list-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .coa-list-item-actions {
    width: 100%;
  }
  a.coa-list-view-btn {
    width: 100%;
    justify-content: center;
  }
  .coa-direct-links {
    flex-direction: column;
  }
  a.coa-direct-btn {
    width: 100%;
    justify-content: center;
  }
}
