/* =========================================================
   Green Labs — style.css (FULL REPLACEMENT) v200
   Goals:
   - Brand-first hero (no carousel)
   - Controlled deals (tiles + dropdown)
   - Category grid, education, loyalty
   - Premium look: emerald/black/white + gold accents
   - Subtle reveal animations + reduced motion safe
========================================================= */

[hidden]{ display:none !important; }

:root{
  --bg:#0b0d0c;
  --bg2:#070907;

  --panel: rgba(255,255,255,.03);
  --panel2: rgba(255,255,255,.02);

  --ink:#e9eceb;
  --muted: rgba(233,236,235,.72);

  --line: rgba(255,255,255,.10);
  --line2: rgba(255,255,255,.08);

  --brand:#0B7D5A;
  --brand2:#2ef8bb;
  --gold:#D6A34A;

  --radius: 18px;
  --radius2: 22px;

  --container: 1180px;

  --stickyH: 70px;
  --stripH: 34px;

  --shadow2: 0 16px 46px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 50%, var(--bg) 100%);
  color: var(--ink);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:100%;
  max-width: var(--container);
  margin:0 auto;
  padding-left: max(18px, env(safe-area-inset-left));
  padding-right: max(18px, env(safe-area-inset-right));
}

/* =========================================================
   Topbar (NOT sticky)
========================================================= */
.topbar{
  position: relative;
  z-index: 1;
  background:
    radial-gradient(1200px 320px at 30% 0%,
      rgba(11,125,90,.35) 0%,
      rgba(0,0,0,.92) 55%,
      rgba(0,0,0,.96) 100%);
  border-bottom: 1px solid var(--line2);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:12px 0;
}
.brandmark{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:0;
}
.sprig{
  color: var(--brand2);
  opacity:.95;
  font-weight:900;
}
.brandmark__stack{ min-width:0; }
.brandmark__name{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  font-size:22px;
  line-height:1.05;
  background: linear-gradient(90deg, #00a56f 0%, #2ef8bb 50%, #00a56f 100%);
  background-size: 300% 100%;
  -webkit-background-clip:text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 7s linear infinite;
}
.brandmark__sub {
    color: rgba(233,236,235,.82);
    font-size: clamp(8px, 2.8vw, 16px); /* Drops lower limit to 8px so it can shrink tiny if needed */
    font-weight: 700;
    margin-top: 2px;
    white-space: nowrap; /* Forces everything to stay on one single line */
    line-height: 1.3;
}
@keyframes shimmer{
  0%{ background-position:0% 50%; }
  100%{ background-position:100% 50%; }
}

/* ===== Hard stop for mobile horizontal overflow ===== */
*, *::before, *::after { box-sizing: border-box; }

html, body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;   /* better than hidden on iOS */
}

/* common overflow culprits */
img, svg, video, canvas {
  max-width: 100%;
  height: auto;
}

/* if any section uses 100vw, it can cause iOS “push right” */
header, nav, section, .container, .wrap, .row {
  max-width: 100%;
}
/* =========================================================
   Sticky header
========================================================= */
.sticky{
  position: sticky;
  top:0;
  z-index:110;
  background: rgba(9,11,10,.88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line2);
}
.sticky__inner{
  height: var(--stickyH);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
}
.sticky__logo{
  display:flex;
  align-items:center;
  flex: 0 0 auto;
}
.sticky__logo img{
  height: 50px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 6px 20px rgba(0,0,0,.35));
}

.tabs{
  display:none;
  align-items:center;
  gap:20px;
  margin-left: 0;
}
.actions{
  display:flex;
  align-items:center;
  gap:10px;
  margin-left: 0;
}

@media (min-width: 760px){
  .tabs{ display:flex; }
  .actions{ display:none; }
}

/* Mobile sizing */
@media (max-width: 768px){
  .sticky__logo img{
    height: 54px;
    max-height: none;
  }
}

/* =========================================================
   Buttons / Icons
========================================================= */
.btn{
  height: 42px;
  display:inline-flex;
  align-items:center;
  justify-content:center;

  border: 1px solid var(--line2);
  background: rgba(255,255,255,.04);
  color: var(--ink);
  border-radius: 999px;

  padding: 0 14px;
  font-weight:900;
  letter-spacing:.02em;
  cursor:pointer;

  transition: transform .12s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease;
  user-select:none;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.btn:active{ transform: translateY(0px) scale(.99); }
.btn:focus{ outline:none; }
.btn:focus-visible{
  box-shadow: 0 0 0 2px rgba(46,248,187,.22), 0 12px 30px rgba(0,0,0,.30);
}
.btn--ghost{
  background: rgba(255,255,255,.02);
  border-color: rgba(255,255,255,.10);
  color: rgba(233,236,235,.92);
}
.btn--primary{
  background: linear-gradient(135deg, rgba(46,248,187,0.18), rgba(11,125,90,0.75));
  border-color: rgba(46,248,187,.28);
  box-shadow: 0 10px 28px rgba(0,0,0,.30), 0 0 0 1px rgba(46,248,187,.06) inset;
}
.btn--primary:hover{
  border-color: rgba(46,248,187,.55);
  box-shadow: 0 0 25px rgba(46,248,187,.22), 0 12px 30px rgba(0,0,0,.28);
}

.btn--gold{
  background: linear-gradient(180deg, rgba(214,163,74,.95), rgba(185,135,47,.95));
  border-color: rgba(214,163,74,.35);
  color:#121413;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.btn--gold:hover{ box-shadow: 0 16px 42px rgba(0,0,0,.32); }

.icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  border: 1px solid var(--line2);
  background: rgba(255,255,255,.03);
  color:#fff;
  cursor:pointer;
  transition: transform .12s ease, box-shadow .18s ease, border-color .18s ease;
  font-size:22px;
  line-height:1;
}
.icon:hover{
  transform: scale(1.05);
  border-color: rgba(46,248,187,.22);
  box-shadow: 0 0 22px rgba(46,248,187,.10);
}
.icon--close{ font-size:24px; background:transparent; border:none; }

/* Desktop tabs style */
.tab{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  font-size:18px;
  text-transform:uppercase;
  opacity:.86;
  padding:10px 12px;
  border-radius:10px;
  transition: opacity .15s ease, transform .15s ease, background .15s ease;
}
.tab:hover{
  opacity:1;
  transform: translateY(-1px);
  background: rgba(255,255,255,.03);
}
.tab--cta{
  padding:10px 14px;
  border-radius:999px;
  border: 1px solid rgba(46,248,187,.18);
  background: rgba(46,248,187,.10);
  opacity:1;
}

/* Shimmer behavior (text stays white; underline accent) */
.shimmer-text, .kidLabel, .glowLabel{
  position:relative;
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
}
.shimmer-text::after,
.kidLabel::after,
.glowLabel::after,
.tab:not(.tab--cta)::after{
  content:'';
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:2px;
  transform: scaleX(0);
  transform-origin:right;
  transition: transform .25s ease;
  background: var(--brand2);
}
.tab[href="#dtg"]::after,
.kidLabel::after{ background: var(--gold); }
.btn:hover .glowLabel::after,
.btn:hover .kidLabel::after,
.tab:hover::after{
  transform: scaleX(1);
  transform-origin:left;
}

/* Mobile pill behavior */
.btn--shop{
  background: rgba(46,248,187,0.12);
  border: 1px solid rgba(46,248,187,0.45);
}
@media (max-width: 760px){
  .btn--deals, .btn--kid{
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 6px !important;
    height: 36px !important;
  }
  .btn--shop{
    height: 36px !important;
    padding: 0 12px !important;
  }
  .btn--deals .glowLabel,
  .btn--kid .kidLabel{ font-size: 14px; }
}

/* =========================================================
   Status strip
========================================================= */
.status-strip{
  height: var(--stripH);
  background: rgba(0,0,0,.10);
  border-top: 1px solid rgba(255,255,255,.06);
}
.status-strip__inner{
  height: var(--stripH);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  color: rgba(233,236,235,.92);
}
.dot{
  width:10px; height:10px;
  border-radius:999px;
  background:#16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
}
.status-sep{ opacity:.45; }
.status-addr{
  opacity:.90;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

/* =========================================================
   Overlay / Drawer (animated)
========================================================= */
.overlay{
  position: fixed;
  inset:0;
  background: rgba(0,0,0,.55);
  z-index:200;
  opacity:0;
  pointer-events:none;
  transition: opacity .35s ease;
}
.overlay.is-active{ opacity:1; pointer-events:auto; }

.drawer{
  position: fixed;
  top:0; right:0;
  height:100vh;
  width: min(360px, 92vw);
  background: rgba(15,18,17,.98);
  border-left: 1px solid rgba(255,255,255,.10);
  z-index:220;
 
  display:flex;
  flex-direction:column;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.drawer.is-active {
    transform: translateX(0);
    box-shadow: -30px 0 80px rgba(0,0,0,.55);
}
.drawer__head{
  position: relative;
  display:flex;
  justify-content:center;
  align-items:center;
  height: 72px;
  padding: 0 10px;
}
.drawer__logo{
  height: 50px;
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.25));
}
.drawer__head .icon--close{
  position:absolute;
  right: 10px;
  width:44px;
  height:44px;
  color:#fff;
  cursor:pointer;
}

.drawer__nav{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding: 20px 10px;
}
.drawer__link{
  width: 100%;
  text-align: right;
  background: transparent !important;
  border: none !important;
  padding: 0;
  color:#fff;
  font-family:"Cinzel", serif;
  font-size: 30px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0;
  transform: translateX(22px);
  transition: opacity 0.4s ease, transform 0.4s ease, color 0.2s ease;
}
.drawer__link:hover{ color: var(--brand2); }
.drawer__link.revealed{ opacity:1; transform: translateX(0); }

.drawer__footer{
  margin-top:auto;
  padding: 20px 14px 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  flex-direction:column;
  gap:16px;
}
.drawer__meta{ opacity:.92; font-weight:800; line-height:1.6; }
.drawer__addr{ margin-top:4px; opacity:.8; font-size:14px; }

.drawer__social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.soc{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:42px;
  width:42px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color:#fff;
  opacity:.9;
  transition: all .2s ease;
}
.soc:hover, .soc2:hover { 
  opacity: 1; 
  transform: translateY(-2px); 
}
.soc[aria-label="Instagram"]:hover, .soc2[aria-label="Instagram"]:hover { color: #E4405F; border-color: #E4405F; }
.soc[aria-label="Facebook"]:hover, .soc2[aria-label="Facebook"]:hover { color: #1877F2; border-color: #1877F2; }
.soc[aria-label="X"]:hover, .soc2[aria-label="X"]:hover { color: #ffffff; border-color: #ffffff; background: #000; }
.soc[aria-label="TikTok"]:hover, .soc2[aria-label="TikTok"]:hover { color: #EE1D52; border-color: #69C9D0; }
}

.link{
  color:#bff7e7;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.sep{ opacity:.45; }

/* Desktop drawer padding */
@media (min-width: 760px){
  .drawer__head{ padding: 0 40px; }
  .drawer__head .icon--close{ right: 40px; width:36px; height:36px; }
  .drawer__nav{ padding: 30px 40px; }
}

/* =========================================================
   Sections (global)
========================================================= */
.section{ padding:56px 0; }
.section__head{ margin-bottom:18px; }
.section__title{
  font-family:"Cinzel", serif;
  letter-spacing:.08em;
  font-weight:900;
  margin:0 0 8px;
  font-size:34px;
}
.section__sub{
  margin:0;
  color: rgba(20,22,21,.70);
  font-weight:700;
}
.section__title--invert{ color: var(--ink); }
.section__sub--invert{ color: var(--muted); }

.section--light{ background:#f4f2ee; color:#141615; }
.section--dark{
  background:
    radial-gradient(1200px 520px at 20% 0%,
      rgba(11,125,90,.18),
      rgba(0,0,0,0) 55%),
    #0b0d0c;
  color: var(--ink);
}
.section--hero{
  background:
    radial-gradient(1200px 560px at 18% 0%, rgba(46,248,187,.18), rgba(0,0,0,0) 55%),
    radial-gradient(1200px 520px at 70% 10%, rgba(214,163,74,.10), rgba(0,0,0,0) 55%),
    #070907;
  border-bottom: 1px solid rgba(255,255,255,.06);
     padding-top: 22px;
     padding-bottom: 44px;
}

/* =========================================================
   Reveal animation (subtle, premium)
========================================================= */
.reveal{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .55s ease, transform .55s ease;
}
.reveal.is-in {
  opacity: 1;
  transform: none; /* Removes the trap */
  will-change: auto; /* Fully releases the fixed button to float! */
}

/* =========================================================
   HERO
========================================================= */
.hero__grid {
  display: grid; 
  gap: 18px; 
  grid-template-columns: 1fr; 
  align-items: center; 
}

/* Hero Typography */
.hero__title {
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: clamp(40px, 5.5vw, 72px); 
  line-height: 1.05;
  letter-spacing: 0.02em;
  margin: 16px 0;
  color: #ffffff;
}

/* Elegant typographic rhythm for connector words */
.title-small {
  font-size: 0.55em; /* Keeps them perfectly scaled relative to the big text */
  font-weight: 700; /* Slightly less heavy */
  color: rgba(255, 255, 255, 0.75); /* Softens them so the main words pop */
}

.hero__sub {
  /* Scales slightly from 16px to 20px */
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.5;
  color: rgba(233, 236, 235, 0.85);
  margin-bottom: 28px;
  max-width: 90%;
}

/* Container for the badge */

/* The text inside with the single-line fix and glisten effect */
.hero__badge-text {
  font-weight: 900;
  letter-spacing: .08em;
  font-family: "Cinzel", serif;
  
  /* Force single line and smart scaling for mobile */
  white-space: nowrap;
  font-size: clamp(9px, 2.5vw, 12px);

  /* The text-only gold glisten */
  background: linear-gradient(
    120deg,
    rgba(228, 184, 105, 0.95) 0%,
    rgba(228, 184, 105, 0.95) 45%,
    #ffffff 50%,
    rgba(228, 184, 105, 0.95) 55%,
    rgba(228, 184, 105, 0.95) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textGlisten 6s linear infinite;
}

/* The animation timing */
@keyframes textGlisten {
  0% { background-position: 100% 50%; }
  15% { background-position: 0% 50%; } /* Smooth glisten across */
  100% { background-position: 0% 50%; } /* Long pause before next glisten */
}

/* Update the existing hero__media class to act as a block link */
.hero__media {
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  overflow: hidden;
  box-shadow: var(--shadow2);
  position: relative;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  /* NEW: Hardware acceleration fixes to prevent blur */
  backface-visibility: hidden;
  transform: translateZ(0);
}

/* Add hover effects for the new link wrapper */
.hero__media--link {
  cursor: pointer;
}
.hero__media--link:hover {
  transform: translateY(-4px) translateZ(0); /* added translateZ */
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
  border-color: rgba(46,248,187,.30);
}

.hero__img {
    width: 100%;
    height: clamp(280px, 45vh, 480px);
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    transition: transform 0.5s ease;
    backface-visibility: hidden;
    transform: scale(1.01) translateZ(0); /* The 1.01 scale eliminates the border gap! */
    will-change: transform;
}

/* Make sure the hover scales up smoothly from the 1.01 base */
.hero__media--link:hover .hero__img {
    transform: scale(1.05) translateZ(0);
}

/* Trigger the zoom when the wrapper is hovered */
.hero__media--link:hover .hero__img {
  transform: scale(1.03) translateZ(0); /* added translateZ */
}
.hero__mediaNote{
  position:absolute;
  bottom:10px;
  right:10px;
  font-size: 12px;
  font-weight: 800;
  color: rgba(233,236,235,.78);
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.10);
  padding: 6px 10px;
  border-radius: 999px;
}
.hero__mediaNote span{ color: var(--brand2); }

.trust{
  margin-top:14px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.trust__chip{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding: 8px 12px;
  border-radius:999px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: rgba(233,236,235,.92);
  font-weight: 800;
  font-size: 13px;
}
.trust__dot{
  width:10px; height:10px;
  border-radius:999px;
  background:#16a34a;
  box-shadow: 0 0 0 3px rgba(22,163,74,.18);
}
.trust__ico{ opacity:.9; }

/* =========================================================
   Difference row
========================================================= */
.diff{
  margin-top:22px;
  display:grid;
  gap:12px;
  grid-template-columns: 1fr;
}
.diff__card{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding: 14px 14px;
  box-shadow: 0 14px 40px rgba(0,0,0,.25);
}
.diff__ico{ font-size: 20px; margin-bottom: 6px; }
.diff__t{
  font-family:"Cinzel", serif;
  font-weight: 900;
  letter-spacing: .06em;
  margin-bottom: 4px;
}
.diff__s{ color: rgba(233,236,235,.74); font-weight: 700; }

.dealsSection, #todays-highlights{overflow-x: clip; }

.dealsSection *, #deals *, #todays-highlights *{
  box-sizing: border-box;
}

/* =========================================================
   Deals dropdown — Peek State & Pop
========================================================= */

/* Darker border and lifted shadow to make it pop */
.drDrop {
    border: 2px solid rgba(11, 125, 90, 0.4); 
    border-radius: 24px;
    background: #ffffff;
    box-shadow: 0 20px 50px rgba(0,0,0,0.12), 0 10px 25px rgba(11, 125, 90, 0.2); 
    overflow: hidden;
    /* FIX: Removed "all" to stop the mobile shake */
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}

/* Centered header */
.drDrop__summary {
    position: relative;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(11, 125, 90, 0.08);
    background: #ffffff;
    cursor: pointer;
    z-index: 10;
}

.drDrop__summary::-webkit-details-marker { display: none; }

.drDrop__title {
    font-family: "Cinzel", serif;
    font-weight: 900;
    letter-spacing: .08em;
    font-size: 34px;
    color: #0B7D5A;
}

/* Chevron controlled by the NEW .is-fully-open class */
.drDrop__chev {
    position: absolute;
    right: 24px;
    font-size: 28px;
    color: #0B7D5A;
    opacity: 0.8;
    transition: transform 0.3s ease;
}
.drDrop.is-fully-open .drDrop__chev {
    transform: rotate(180deg);
}

/* The Body with smooth max-height animation */
.drDrop__body {
  position: relative;
  padding: 20px 20px 24px;
  background: #ffffff;
  max-height: 8000px; /* Reduced from 15000px to completely eliminate the closing lag! */
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: max-height;
}

/* THE PEEK STATE: Shows search, categories, and top of first deal */
.drDrop:not(.is-fully-open) .drDrop__body {
    max-height: 350px; 
}

/* Hide the 'Back to Top' button while peeking */
.drDrop:not(.is-fully-open) .drBackTop {
    opacity: 0;
    pointer-events: none;
}

/* The Frosted Glass Blur Element */
.drDrop__body::after {
    content: "";
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120px;
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.95) 60%, #ffffff 100%);
    pointer-events: none;
    z-index: 5;
    opacity: 0;
    transition: opacity 0.4s ease;
}

/* Make the blur visible ONLY when in the peek state */
.drDrop:not(.is-fully-open) .drDrop__body::after {
    opacity: 1;
}

/* 1. Make the closed dropdown feel completely clickable */
.drDrop:not(.is-fully-open) .drDrop__body {
  cursor: pointer;
}
.drDrop:not(.is-fully-open) .drSearch {
  cursor: pointer;
}

/* =========================================
   BACK TO TOP BUTTON (Static & Reliable)
   ========================================= */
.drBackTop {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.90);
  color: #141615;
  font-size: 14px;
  font-weight: 900;
  cursor: pointer;
  width: fit-content;
  margin: 24px auto 0; /* Centers it perfectly below the banner */
  box-shadow: 0 10px 30px rgba(0,0,0,.10);
  transition: all .2s ease;
}

.drBackTop:hover {
  border-color: rgba(11,125,90,.30);
  background: #ffffff;
  color: #0B7D5A;
  box-shadow: 0 14px 34px rgba(11,125,90,.15);
  transform: translateY(-2px);
}

/* Top utility area (Updated to match white box) */
.drTools{
  position: sticky;
  top: 0;
  z-index: 4;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 85%, rgba(255,255,255,0) 100%);
  padding-bottom: 10px;
  margin-bottom: 6px;
}

.drSearchWrap{
  margin-bottom: 10px;
}

.drSearch {
  width: 100%;
  height: 52px;
  border-radius: 999px;
  border: none;
  background: #f4f9f7;
  color: #141615;
  padding: 0 24px;
  font-size: 16px;
  font-weight: 700;
  outline: none;
  box-shadow: inset 0 2px 6px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.drSearch::placeholder {
  color: rgba(20,22,21,.48);
  font-weight: 700;
}

.drSearch:focus {
  background: #ffffff;
  box-shadow: 0 0 0 2px rgba(11, 125, 90, 0.2), 0 8px 20px rgba(11, 125, 90, 0.08);
  outline: none;
}

/* Deals Category Scroller Wrapper */
.drJumpWrap {
  display: flex;
  gap: 8px;
  overflow: auto;
  padding-bottom: 12px;
  margin-bottom: -8px;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.drJumpWrap::-webkit-scrollbar { display: none; }

.drJumpChip {
  flex: 0 0 auto;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 10px 18px;
  border-radius: 999px;
  border: none;
  background: #f4f9f7;
  color: #4a5d56;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.drJumpChip:hover {
  transform: translateY(-2px);
  background: rgba(11, 125, 90, 0.1);
  color: #0B7D5A;
}
.drJumpChip.is-active {
  background: #0B7D5A;
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(11, 125, 90, 0.25);
}

/* Container to hold the track and arrows */
.drJumpContainer {
  position: relative;
}

/* The Arrow Buttons */
.drArrowBtn {
  display: none; /* Hides arrows on mobile */
  position: absolute;
  top: calc(50% - 6px);
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(11, 125, 90, 0.15);
  color: #0B7D5A;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 5;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  transition: all 0.2s ease;
}
.drArrowBtn:hover {
  background: #f4f9f7;
  box-shadow: 0 6px 14px rgba(11, 125, 90, 0.2);
}

/* Move arrows to the very edge of the container */
.drArrowBtn--left { left: 0; }
.drArrowBtn--right { right: 0; }

/* Desktop: Create a hard physical boundary so chips never go under arrows */
@media (min-width: 769px) {
  .drArrowBtn {
    display: flex;
  }
  .drJumpContainer {
    padding: 0 40px; /* This locks the chips 40px away from the edges! */
  }
  .drJumpWrap {
    /* Soft fade on the edges inside the safe zone */
    mask-image: linear-gradient(to right, transparent, black 16px, black calc(100% - 16px), transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 16px, black calc(100% - 16px), transparent);
  }
}

/* Search result meta */
.drSearchMeta{
  margin: 0 0 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(11,125,90,.08);
  border: 1px solid rgba(11,125,90,.12);
  color:#0B7D5A;
  font-size: 13px;
  font-weight: 900;
}

/* Deals list */
.drDeals{
  display:grid;
  gap:14px;
}

.drCat{
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.42);
  padding: 14px 14px 12px;
  box-shadow: 0 8px 22px rgba(0,0,0,.05);
  scroll-margin-top: 112px;
}

.drCat.is-hidden{
  display:none;
}

.drCat__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0,0,0,.10);
}

.drCat__titleWrap{
  display:flex;
  align-items:center;
  gap:10px;
  min-width:0;
}

.drCat__icon{
  font-size: 20px;
  line-height:1;
}

.drCat__title{
  margin:0;
  font-size: 18px;
  line-height:1.1;
  font-weight: 900;
  color:#141615;
}

.drCat__count{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.05);
  color: rgba(20,22,21,.72);
  font-size: 12px;
  font-weight: 900;
  white-space: nowrap;
}

/* subgroup */
.drGroup{
  margin: 0 0 12px;
}

.drGroup:last-child{
  margin-bottom: 0;
}

.drGroup__title{
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(20,22,21,.62);
}

.drLines{
  display:grid;
  gap:8px;
}

.drLine{
  display:grid;
  grid-template-columns: auto 1fr;
  gap:10px;
  align-items:flex-start;
  padding: 10px 10px;
  border-radius: 12px;
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(0,0,0,.06);
}

.drLine.is-hidden{
  display:none;
}

.drLine__dot{
  font-size: 16px;
  line-height: 1.2;
  color:#141615;
  opacity:.72;
}

.drLine__text{
  font-size: 15px;
  line-height: 1.45;
  font-weight: 800;
  color:#141615;
}

.drLine mark{
  background: rgba(11,125,90,.16);
  color: inherit;
  padding: 0 .08em;
  border-radius: 3px;
}

.drEmpty{
  padding: 18px 14px;
  border-radius: 14px;
  background: rgba(255,255,255,.52);
  border: 1px dashed rgba(0,0,0,.12);
  font-size: 15px;
  font-weight: 800;
  color: rgba(20,22,21,.66);
  text-align:center;
}

.drShopBtn{
  margin-top:18px;
  width:100%;
  border-radius:18px;
  padding:18px 14px;
  border: 3px solid rgba(0,0,0,.85);
  background:#fff;
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  font-size:22px;
  cursor:pointer;
  box-shadow: 0 18px 50px rgba(0,0,0,.12);
}

.drShopBtn:hover{
  box-shadow: 0 22px 60px rgba(0,0,0,.16);
}

@media (max-width: 640px){
  .drDrop__summary{
    padding: 16px 14px;
  }
  .drDrop__title{
    font-size: 26px;
  }
  .drDrop__body{
    padding: 12px 12px 110px;
  }
  .drSearch{
    height: 44px;
    font-size: 15px;
  }
  .drJumpChip{
    min-height: 34px;
    padding: 7px 11px;
    font-size: 12px;
  }
  .drCat{
    padding: 12px 12px 10px;
    border-radius: 16px;
  }
  .drCat__title{
    font-size: 17px;
  }
  .drLine__text{
    font-size: 14px;
  }
  .drShopBtn{
    font-size:20px;
    padding:16px 12px;
  }
}

/* =========================================================
   GREEN LABS — BEFORE YOU BUY / BUY GUIDE
========================================================= */

.buyGuide{
  position: relative;
  padding: clamp(64px, 7vw, 96px) 18px clamp(72px, 8vw, 110px);
  background:
    radial-gradient(circle at top center, rgba(11,125,90,.10), transparent 34%),
    linear-gradient(180deg, #f3f0ea 0%, #ece8e1 100%);
  color: #111;
  overflow: clip;
}

.buyGuide::before{
  content:"";
  position:absolute;
  inset:auto -10% 0 auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(11,125,90,.08), transparent 68%);
  pointer-events:none;
}

.buyGuide__inner{
  width:min(1180px, 100%);
  margin:0 auto;
  padding-bottom: 60px;
}

.buyGuide__intro{
  max-width: 820px;
  margin: 0 0 28px;
}

.buyGuide__eyebrow{
  margin:0 0 12px;
  font-family:"Cinzel", serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#0B7D5A;
}

.buyGuide__title{
  margin:0 0 14px;
  font-family:"Cinzel", serif;
  font-size: clamp(38px, 6vw, 72px);
  line-height: .95;
  letter-spacing: .01em;
  color:#111;
  text-wrap: balance;
}

.buyGuide__sub{
  margin:0;
  font-size: clamp(18px, 2.2vw, 22px);
  line-height:1.55;
  color: rgba(17,17,17,.72);
  font-weight:700;
}

.buyGuide__cards{
  display:grid;
  gap:24px;
  margin-top:34px;
}

.guideCard{
  position:relative;
}

.guideCard__shell{
  background: rgba(255,255,255,.72);
  border:1px solid rgba(17,17,17,.08);
  border-radius: 30px;
  box-shadow:
    0 24px 70px rgba(0,0,0,.08),
    inset 0 1px 0 rgba(255,255,255,.7);
  overflow:hidden;
  backdrop-filter: blur(10px);
}

.guideCard__main{
  display:grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: stretch;
  gap: 0;
}

.guideCard__copy{
  padding: clamp(24px, 3vw, 38px);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height: 320px;
}

.guideCard__eyebrow{
  margin:0 0 12px;
  font-family:"Cinzel", serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:#0B7D5A;
}

.guideCard__title{
  margin:0 0 16px;
  font-family:"Cinzel", serif;
  font-size: clamp(34px, 4.4vw, 58px);
  line-height: .95;
  letter-spacing: .01em;
  color:#111;
  text-wrap: balance;
}

.guideCard__lead{
  margin:0;
  max-width: 620px;
  font-size: clamp(18px, 2vw, 21px);
  line-height:1.7;
  color: rgba(17,17,17,.76);
  font-weight:700;
}

.guideCard__toggle{
  margin-top: 26px;
  appearance:none;
  border:0;
  background:transparent;
  padding:0;
  display:inline-flex;
  align-items:center;
  gap:14px;
  cursor:pointer;
  align-self:flex-start;
  color:#111;
  font-size:14px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.guideCard__toggleText{
  position:relative;
}

.guideCard__toggleText::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  width:100%;
  height:1px;
  background: rgba(17,17,17,.24);
  transform-origin:left center;
  transition: transform .25s ease, background .25s ease;
}

.guideCard__toggle:hover .guideCard__toggleText::after,
.guideCard__toggle:focus-visible .guideCard__toggleText::after{
  transform: scaleX(1.08);
  background: rgba(11,125,90,.55);
}

.guideCard__toggleIcon{
  width:38px;
  height:38px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background: rgba(11,125,90,.10);
  border:1px solid rgba(11,125,90,.18);
  color:#0B7D5A;
  font-size:26px;
  line-height:1;
  transition: transform .28s ease, background .28s ease;
}

.guideCard.is-open .guideCard__toggleIcon{
  transform: rotate(45deg);
  background: rgba(11,125,90,.16);
}

.guideCard__media {
  position: relative;
  padding: 18px 18px 18px 0;
  display: flex;
  align-items: flex-start; /* THIS PREVENTS THE BOX FROM STRETCHING AND CROPPING! */
}

.guideCard__imageWrap {
  position: relative;
  width: 100%;
  height: auto; 
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(11,125,90,.14), rgba(11,125,90,.03)), #ddd7cf;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.35), 0 12px 30px rgba(0,0,0,.10);
}

.guideCard__image {
  width: 100%;
  height: auto; 
  display: block;
}

.guideCard__expand{
  display:grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .4s ease;
}

.guideCard.is-open .guideCard__expand{
  grid-template-rows: 1fr;
}

.guideCard__expandInner{
  overflow:hidden;
  padding: 0 clamp(24px, 3vw, 38px);
}

.guideCard.is-open .guideCard__expandInner{
  padding-bottom: clamp(24px, 3vw, 34px);
}

.guideCard__expandInner > p{
  margin: 0 0 16px;
  max-width: 860px;
  font-size: 17px;
  line-height:1.75;
  color: rgba(17,17,17,.76);
  font-weight:600;
}

.guidePull{
  font-family:"Cinzel", serif;
  font-size: clamp(24px, 3vw, 34px) !important;
  line-height:1.15 !important;
  color:#111 !important;
  margin: 18px 0 20px !important;
  font-weight:900 !important;
}

.guideChips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top: 18px;
}

.guideChip{
  display:inline-flex;
  align-items:center;
  min-height: 40px;
  padding: 9px 14px;
  border-radius:999px;
  background: rgba(11,125,90,.08);
  border:1px solid rgba(11,125,90,.15);
  color:#0f5c44;
  font-size:13px;
  font-weight:900;
  letter-spacing:.02em;
}

.guideInfoGrid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.guideInfo{
  padding: 16px 16px 15px;
  border-radius: 20px;
  background: rgba(17,17,17,.03);
  border:1px solid rgba(17,17,17,.06);
}

.guideInfo__label{
  margin:0 0 7px;
  font-family:"Cinzel", serif;
  font-size:15px;
  font-weight:900;
  letter-spacing:.05em;
  color:#111;
}

.guideInfo__text{
  margin:0;
  font-size:15px;
  line-height:1.65;
  color: rgba(17,17,17,.70);
  font-weight:600;
}

.brandCallout{
  margin-top: 20px;
  padding: 22px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(11,125,90,.96), rgba(5,34,25,.96));
  color:#fff;
  box-shadow: 0 18px 40px rgba(0,0,0,.14);
}

.brandCallout__eyebrow{
  margin:0 0 10px;
  font-family:"Cinzel", serif;
  font-size:12px;
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  color: rgba(255,255,255,.78);
}

.brandCallout__title{
  margin:0 0 12px;
  font-family:"Cinzel", serif;
  font-size: clamp(22px, 3vw, 30px);
  line-height:1.1;
  color:#fff;
}

.brandCallout__list{
  margin:0;
  padding-left: 18px;
}

.brandCallout__list li{
  margin: 0 0 8px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  line-height:1.55;
  font-weight:700;
}

/* =========================================
   RESPONSIVE — KEEP MOBILE LIKE DESKTOP
========================================= */
@media (max-width: 900px){

  .guideCard__main{
    grid-template-columns: 1fr 120px;
    gap: 14px;
  }

  .guideCard__copy{
    padding:18px 16px;
    min-height:auto;
  }

  .guideCard__title{
    font-size: clamp(22px, 5vw, 32px);
    line-height:1.05;
  }

  .guideCard__lead{
    font-size:15px;
    line-height:1.5;
  }

  .guideCard__media{
    padding:14px;
  }

  .guideCard__imageWrap{
    min-height:180px;
  }

}

  .guideInfoGrid{
    grid-template-columns: 1fr;
  }

@media (max-width: 640px){
  .buyGuide { padding-left: 14px; padding-right: 14px; }
  .guideCard__shell { border-radius: 24px; }

  /* NEW MOBILE ACCORDION TRICK FOR THE IMAGE */
  .guideCard__main {
    display: flex;
    flex-direction: column;
  }
  
  .guideCard__copy {
    order: 2; /* Text sits on the bottom */
    padding: 24px 20px 20px;
    min-height: auto;
  }
  
  .guideCard__media {
    order: 1; /* Puts the image at the very top */
    padding: 0 20px; 
    max-height: 0; /* Hidden by default */
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  }
  
  /* What happens when the card opens */
  .guideCard.is-open .guideCard__media {
    max-height: 1200px; /* Increased from 500px to un-crop the image! */
    opacity: 1;
    padding: 24px 24px 0; 
  }
  
  .guideCard__imageWrap {
    min-height: 220px; 
    border-radius: 18px; 
    width: 100%; 
  }
  
  .guideCard__expandInner { padding-left: 20px; padding-right: 20px; }
  .guideCard.is-open .guideCard__expandInner { padding-bottom: 20px; }

  /* Keep your existing typography rules */
  .guideCard__eyebrow { margin-bottom: 8px; font-size: 10px; letter-spacing: .14em; }
  .guideCard__title { margin: 0 0 10px; font-size: clamp(24px, 7vw, 36px); line-height: .96; }
  .guideCard__lead { font-size: 14px; line-height: 1.5; -webkit-line-clamp: unset; }
  .guideCard__toggle { margin-top: 14px; gap: 10px; font-size: 11px; letter-spacing: .10em; }
  .guideCard__toggleIcon { width: 30px; height: 30px; font-size: 20px; }
  .vibeFinder { border-radius: 24px; padding: 22px 18px; }
}

@media (max-width: 420px){
  .guideCard__main { grid-template-columns: 1fr; }
  .guideCard__copy { min-height: auto; padding: 20px 16px 10px; }
  .guideCard__title { font-size: clamp(22px, 7.5vw, 32px); }
  .guideCard__lead { font-size: 14px; line-height: 1.5; -webkit-line-clamp: unset; }
  
  /* Tiny phone adjustments for the new animation */
  .guideCard__media { padding: 0 16px; }
  .guideCard.is-open .guideCard__media { padding: 20px 16px 0; }
  .guideCard__imageWrap { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce){
  .guideCard__expand,
  .guideCard__toggleIcon,
  .guideCard__toggleText::after{
    transition:none;
  }
}

/* RESPONSIVE */
@media (max-width: 980px){
  /* 1. Fix the layout to single column */
  .guideInfoGrid {
    grid-template-columns: 1fr;
  }

  /* 2. THE ACCORDION TRICK (Now triggers on iPads and narrow desktops) */
  .guideCard__main {
    display: flex;
    flex-direction: column;
  }
  .guideCard__copy {
    order: 2; /* Text sits on the bottom */
    padding: 30px 24px 24px;
    min-height: auto;
  }
  .guideCard__media {
    order: 1; /* Puts the image at the very top */
    padding: 0 24px; 
    max-height: 0; /* Hidden by default */
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, opacity 0.5s ease, padding 0.5s ease;
  }
  
/* What happens when the card opens */
  .guideCard.is-open .guideCard__media {
    max-height: 1200px; /* Increased from 400px to un-crop the image! */
    opacity: 1;
    padding: 24px 20px 0;
  }
  
  .guideCard__imageWrap {
    min-height: 260px; 
    border-radius: 20px; 
    width: 100%; 
  }
  .guideCard__expandInner { padding-left: 24px; padding-right: 24px; }
  .guideCard.is-open .guideCard__expandInner { padding-bottom: 24px; }
}

@media (max-width: 640px){
  .buyGuide{ padding-left: 14px; padding-right: 14px; }
  .guideCard__shell{ border-radius: 24px; }
  
  /* Scale down padding for mobile screens */
  .guideCard__copy { padding: 24px 20px 20px; }
  .guideCard__media { padding: 0 20px; }
  .guideCard.is-open .guideCard__media { padding: 24px 20px 0; }
  .guideCard__imageWrap { min-height: 220px; border-radius: 18px; }
  .guideCard__expandInner { padding-left: 20px; padding-right: 20px; }
  .guideCard.is-open .guideCard__expandInner { padding-bottom: 20px; }
  .vibeFinder { border-radius: 24px; padding: 22px 18px; }
  
  /* Scale down typography for mobile */
  .guideCard__eyebrow { margin-bottom: 8px; font-size: 10px; letter-spacing: .14em; }
  .guideCard__title { margin: 0 0 10px; font-size: clamp(24px, 7vw, 36px); line-height: .96; }
  .guideCard__lead { font-size: 14px; line-height: 1.5; -webkit-line-clamp: unset; }
  .guideCard__toggle { margin-top: 14px; gap: 10px; font-size: 11px; letter-spacing: .10em; }
  .guideCard__toggleIcon { width: 30px; height: 30px; font-size: 20px; }
}

@media (max-width: 420px){
  .guideCard__copy { padding: 20px 16px 10px; }
  .guideCard__title { font-size: clamp(22px, 7.5vw, 32px); }
  
  /* Tiny phone adjustments */
  .guideCard__media { padding: 0 16px; }
  .guideCard.is-open .guideCard__media { padding: 20px 16px 0; }
  .guideCard__imageWrap { min-height: 200px; }
}

@media (prefers-reduced-motion: reduce){
  .guideCard__expand,
  .guideCard__toggleIcon,
  .guideCard__toggleText::after,
  .vibeBtn{
    transition:none;
  }
}

/* =========================================================
   Shop section
========================================================= */
.shophead{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  gap:14px;
  margin-bottom:14px;
}
.menuwrap{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  padding:16px;
  box-shadow: var(--shadow2);
}
.menuwrap__top{ display:flex; flex-direction:column; gap:6px; margin-bottom:14px; }
.menuwrap__tag{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.08em;
  font-family:"Cinzel", serif;
  color: rgba(233,236,235,.92);
}
.pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(46,248,187,.18);
  background: rgba(46,248,187,.08);
  font-weight: 900;
  letter-spacing: .04em;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", sans-serif;
  font-size: 12px;
}
.pill strong{ color: var(--brand2); }
.menuwrap__sub{ color: rgba(233,236,235,.72); font-weight:700; }

.menuplaceholder{
  border-radius: var(--radius2);
  border: 1px dashed rgba(46,248,187,.25);
  background:
    radial-gradient(900px 420px at 25% 0%,
      rgba(11,125,90,.14),
      rgba(255,255,255,.02) 55%),
    rgba(255,255,255,.02);
  padding:22px;
  text-align:center;
}
.menuplaceholder__logo{ font-size:26px; opacity:.9; color: var(--brand2); margin-bottom:6px; }
.menuplaceholder__t{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:4px;
}
.menuplaceholder__s{ color: rgba(233,236,235,.75); font-weight:700; margin-bottom:14px; }
.menuplaceholder__cta{ display:flex; gap:10px; justify-content:center; flex-wrap:wrap; }
.menuwrap__hint{ margin-top:12px; color: rgba(233,236,235,.65); font-weight:800; text-align:center; }

/* =========================================================
   Loyalty
========================================================= */
.loyalty{
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.88);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  padding: 18px;
  display:grid;
  gap:14px;
  color:#141615;
}
.loyalty__k{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  opacity:.8;
  margin-bottom: 6px;
}
.loyalty__t{
  font-family:"Cinzel", serif;
  font-weight: 900;
  letter-spacing: .06em;
  margin: 0 0 8px;
  font-size: 30px;
}
.loyalty__s{ margin:0; font-weight:800; opacity:.78; max-width: 66ch; }
.loyalty__cta{ margin-top: 12px; display:flex; gap:10px; flex-wrap:wrap; }

.loyalty__panel{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:10px;
}
.lp{
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.80);
  padding: 12px;
}
.lp__t{
  font-weight: 900;
  font-family:"Cinzel", serif;
  letter-spacing:.06em;
}
.lp__s{ margin-top: 4px; opacity:.75; font-weight: 800; }

/* =========================================================
   DTG / Strain / Visit / Footer (kept style)
========================================================= */
.section--dtg {
  background: radial-gradient(1000px 520px at 10% 0%, rgba(214,163,74,.12), rgba(0,0,0,0) 55%), radial-gradient(1200px 520px at 70% 0%, rgba(11,125,90,.16), rgba(0,0,0,0) 60%), #070907;
  color: var(--ink);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding-top: 16px; /* Shrinks the giant empty gap at the top */
  overflow-x: hidden;
}

.dtghead{ display:flex; flex-direction:column; gap:10px; margin-bottom:16px; }
.dtgbadge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:7px 12px;
  border-radius:999px;
  border: 1px solid rgba(214,163,74,.22);
  background: rgba(214,163,74,.10);
  font-weight:900;
  letter-spacing:.08em;
  font-family:"Cinzel", serif;
  color: rgba(255,255,255,.92);
  width: fit-content;
}
.dtgtitle{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  margin:0;
  font-size:34px;
}
.dtgsub{ margin:0; color: rgba(233,236,235,.78); font-weight:700; max-width:68ch; }
.dtgcta{ display:flex; gap:10px; flex-wrap:wrap; margin-top:6px; }
.inv{ color: rgba(233,236,235,.92); }

.rail{ margin-top:16px; display:grid; gap:12px; grid-template-columns:1fr; }
.railcard{
  border-radius: var(--radius2);
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  overflow:hidden;
  box-shadow: var(--shadow2);
}
.railcard__img{
  height:170px;
  display:grid;
  place-items:center;
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  color: rgba(233,236,235,.80);
  background:
    radial-gradient(800px 260px at 30% 0%, rgba(214,163,74,.10), rgba(255,255,255,.02) 55%),
    rgba(255,255,255,.02);
}
.railcard__meta{
  padding:12px 14px;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.railcard__name{ font-weight:900; }
.railcard__price{ font-weight:900; color: rgba(214,163,74,.95); }


.tag{
  margin-top:6px;
  width: fit-content;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(214,163,74,.92);
  color:#121413;
  font-weight:900;
  font-size:12px;
  letter-spacing:.06em;
}

/* Visit / Footer */
.visitgrid{ display:grid; gap:14px; }
.mapcard{
  border-radius: var(--radius2);
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.70);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
}
.infocol{ display:grid; gap:14px; }
.infobox{
  border-radius: var(--radius2);
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.80);
  box-shadow: 0 18px 50px rgba(0,0,0,.10);
  padding:14px 16px;
  color:#141615;
}
.infobox__t{
  font-family:"Cinzel", serif;
  font-weight:900;
  letter-spacing:.08em;
  margin-bottom:10px;
  font-size:18px;
}
.socialrow{ display:flex; flex-wrap:wrap; gap:10px; margin-top:8px; }
.soc2{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border: 1px solid rgba(0,0,0,.12);
  background: rgba(255,255,255,.85);
  font-weight:900;
}
.muted{ opacity:.75; font-weight: 700; }

/* =========================================================
   VISIT SECTION - LIGHT MODE FIXES
========================================================= */
.infobox .link {
  color: #0B7D5A; /* Dark green for readability */
  font-weight: 800;
}
.infobox .link:hover {
  color: #141615;
}
.infobox .btn--primary {
  background: #0B7D5A; /* Solid green to remove the glare */
  color: #fff;
  border: none;
  box-shadow: 0 8px 20px rgba(11, 125, 90, 0.25);
}
.infobox .btn--primary:hover {
  background: #086045;
  box-shadow: 0 12px 25px rgba(11, 125, 90, 0.35);
}

/* =========================================================
   FOOTER (Multi-Column + Compliance)
========================================================= */
.footer { 
  padding: 50px 0 20px; 
  background: #070907; 
  border-top: 1px solid rgba(255,255,255,.08); 
  color: rgba(233,236,235,.78); 
}
.footer__grid { 
  display: grid; 
  gap: 34px; 
  grid-template-columns: 1fr; 
  margin-bottom: 40px; 
}
@media(min-width: 768px) {
  .footer__grid {
    /* Gives the brand column a bit more space, tightening the 3 link columns */
    grid-template-columns: 2.5fr 1fr 1fr 1fr;
    gap: 40px; 
  }
}

@media(min-width: 992px) {
  /* Anchors the final column to the far right edge of the screen */
  .footer__col:last-child {
    align-items: flex-end;
    text-align: right;
  }
}
.footer__col { 
  display: flex; 
  flex-direction: column; 
  gap: 12px; 
}
.footer__logo { 
  height: 44px; 
  width: auto; 
  object-fit: contain; 
  margin-bottom: 4px; 
  filter: grayscale(1) brightness(2); /* Makes logo white/silver */
  opacity: .9; 
}
.footer__warning { 
  font-size: 11px; 
  line-height: 1.6; 
  opacity: .55; 
  max-width: 380px; 
  margin: 0;
}
.footer__h { 
  color: #fff; 
  font-family: "Cinzel", serif; 
  font-size: 16px; 
  font-weight: 900; 
  letter-spacing: .06em; 
  margin: 0 0 4px; 
}
.footer__link { 
  color: inherit; 
  font-size: 14px; 
  font-weight: 600; 
  transition: color .2s ease, transform .2s ease; 
  width: fit-content; 
}
.footer__link:hover { 
  color: #2ef8bb; 
  transform: translateX(4px);
}
.footer__link--highlight { 
  color: #D6A34A; /* DTG Gold */
}
.footer__link--highlight:hover {
  color: #fff;
}
.footer__bottom { 
  padding-top: 20px; 
  border-top: 1px solid rgba(255,255,255,.08); 
  display: flex; 
  justify-content: center;
  text-align: center;
  font-size: 13px; 
  font-weight: 700;
  opacity: .7;
}

@media (max-width: 420px){
  .section__title{ font-size:30px; }
}

/* =========================================================
   Responsive grids
========================================================= */
@media (min-width: 760px){
  .hero__grid{ grid-template-columns: 1.1fr .9fr; gap:22px; }

  .diff{ grid-template-columns: repeat(3, 1fr); }
  .dealtileGrid{ grid-template-columns: repeat(3, 1fr); }
  .eduGrid{ grid-template-columns: repeat(3, 1fr); }
  .loyalty{ grid-template-columns: 1.1fr .9fr; align-items: start; }
  .visitgrid{ grid-template-columns: 1.2fr .8fr; align-items:start; }
  .rail{ grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px){
  .rail{ grid-template-columns: repeat(4, 1fr); }
  .straingrid{ grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   DELI section (UPDATED: 3D Cards + Filters)
========================================================= */

/* --- 1. SECTION, HEADER & FOOTER (KEPT FROM OLD CODE) --- */
.section--deli {
  background-color: #111;
  background-image: radial-gradient(circle at top right, #2a2a2a 0%, #111 60%);
  color: #fff;
  padding: 2.5rem 0; /* Reduced from 4rem to shrink top/bottom empty space */
  border-top: 1px solid #333;
  scroll-margin-top: 15px;
  overflow-x: hidden;
}
.deli-head { 
  text-align: center; 
  margin-bottom: 1.5rem; /* Reduced from 3rem to pull the buttons closer to the text */ 
}
.deli-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #d4af37;
  border: 1px solid #d4af37;
  padding: 0.25rem 0.75rem;
  border-radius: 4px;
  margin-bottom: 0.5rem; /* Reduced from 1rem to pull the title up slightly */
}
.deli-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  margin: 0 0 0.25rem 0; /* Reduced from 0.5rem */
  color: #fff;
}
.deli-sub { 
  color: #aaa; 
  font-size: 1.1rem; 
  margin: 0; 
}
.deli-footer { text-align: center; }
.deli-note { margin-top: 1rem; font-size: 0.85rem; color: #666; font-style: italic; }


/* --- 2. NEW DUTCH DELI INTERACTIVE CARDS --- */

/* Quick Filters (Now Edge-to-Edge) */
.deli-filters { 
  display: flex; 
  gap: 10px; 
  overflow-x: auto; 
  padding-bottom: 18px; /* Increased from 12px to give shadow room to fade */
  margin-bottom: 14px;  /* Reduced to keep overall spacing exactly the same */
  scroll-snap-type: x mandatory; 
  scrollbar-width: none; 
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 5vw; 
  padding-right: 5vw;
}
.deli-filters::-webkit-scrollbar { display: none; }

/* --- Keep Button Styles --- */
.deli-filter { 
  flex: 0 0 auto; 
  scroll-snap-align: start; 
  background: rgba(255,255,255,0.05); 
  border: 1px solid rgba(255,255,255,0.15); 
  color: #fff; 
  padding: 10px 18px; 
  border-radius: 999px; 
  font-weight: 800; 
  font-size: 14px; 
  cursor: pointer; 
  transition: all 0.3s ease; 
}

/* CHANGED: Premium DTG Gold Active State */
.deli-filter.is-active { 
  background: linear-gradient(180deg, rgba(214,163,74,.95), rgba(185,135,47,.95)); 
  border-color: rgba(214,163,74,.35); 
  color: #121413; /* Dark text makes the gold pop and look like a real physical badge */
  box-shadow: 0 4px 15px rgba(214, 163, 74, 0.25); 
}

/* --- ARTWORK MICRO TOGGLE --- */
.art-toggle-wrapper {
  display: inline-flex;
  align-items: center;
  margin-left: 12px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.art-toggle-track {
  width: 36px;
  height: 20px;
  background-color: rgba(255, 255, 255, 0.15); /* Subtle dark theme track */
  border-radius: 20px;
  position: relative;
  transition: background-color 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.art-toggle-thumb {
  width: 14px;
  height: 14px;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: transform 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
}

/* Active State (Turns Gold) */
.art-toggle-wrapper.active .art-toggle-track {
  background-color: #d6a34a; /* Matches your brand gold */
  border-color: #d6a34a;
}
.art-toggle-wrapper.active .art-toggle-thumb {
  transform: translateX(16px);
}

/* Carousel Wrapper for Arrows */
.deli-carousel-wrap {
  position: relative;
}

/* CHANGED: Premium Gold Arrow Buttons */
.deli-arrow {
  position: absolute;
  top: calc(50% - 15px); 
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid rgba(214, 163, 74, 0.3); /* Gold border */
  color: #D6A34A; /* Gold arrow */
  box-shadow: 0 4px 15px rgba(0,0,0,0.3);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.2s ease;
}

.deli-arrow:hover {
  background: #fffdf9; /* Ultra-faint warm tint on hover */
  box-shadow: 0 6px 20px rgba(214, 163, 74, 0.3); /* Gold glowing shadow */
  transform: translateY(-50%) scale(1.05); 
}

/* Position slightly outside the container for a clean frame */
.deli-arrow--left { left: -20px; }
.deli-arrow--right { right: -20px; }

/* Hide arrows on mobile */
@media (max-width: 768px) {
  .deli-arrow { display: none; }
}

/* Snap Carousel (Now Edge-to-Edge) */
.deli-carousel { 
  display: flex; 
  gap: 20px; 
  overflow-x: auto; 
  padding: 10px 0 40px; 
  scroll-snap-type: x mandatory; 
  scrollbar-width: none; 
  scroll-behavior: smooth; 
  
  /* Break out of container to fill screen */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding-left: 5vw; 
  padding-right: 5vw;
}
.deli-carousel::-webkit-scrollbar { display: none; }

.deli-card-wrapper { 
  flex: 0 0 65%; /* Dropped from 75% for a smaller footprint */
  max-width: 250px; /* Shrunk down from 320px */
  scroll-snap-align: center; 
  display: flex; 
  flex-direction: column; 
  gap: 16px; 
  transition: opacity 0.4s ease, transform 0.4s ease; 
}
.deli-card-wrapper.is-hidden { display: none; }

/* 3D Tap-to-Flip Card */
.deli-card { 
  position: relative; 
  width: 100%; 
  aspect-ratio: 2 / 3; 
  perspective: 1000px; 
  cursor: pointer; 
}
.deli-card__front, .deli-card__back { 
  position: absolute; 
  inset: 0; 
  border-radius: 20px; 
  background-size: cover; 
  background-position: center; 
  background-color: #111; /* Fills in any sub-pixel gaps */
  backface-visibility: hidden; 
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1); 
  box-shadow: 0 16px 40px rgba(0,0,0,0.4); 
  border: none; /* Removed the white border */
  overflow: hidden; /* Tightens the box */
}
.deli-card__back { transform: rotateY(180deg); }
.deli-card.is-flipped .deli-card__front { transform: rotateY(180deg); }
.deli-card.is-flipped .deli-card__back { transform: rotateY(360deg); }

/* Hint & Badges */
.deli-card__hint { 
  position: absolute; 
  bottom: 12px; 
  right: 12px; 
  background: rgba(0,0,0,0.6); 
  backdrop-filter: blur(4px); 
  color: #fff; 
  font-size: 11px; 
  font-weight: 800; 
  padding: 6px 10px; 
  border-radius: 999px; 
  border: 1px solid rgba(255,255,255,0.2); 
  pointer-events: none; 
}
.deli-badge-corner { 
  position: absolute; 
  top: -10px; 
  left: -10px; 
  z-index: 10; 
  font-family: "Cinzel", serif; 
  font-weight: 900; 
  font-size: 12px; 
  padding: 8px 14px; 
  border-radius: 12px; 
  box-shadow: 0 8px 20px rgba(0,0,0,0.3); 
}
.badge--mega { background: linear-gradient(135deg, #FFD700, #FFA500); color: #000; border: 1px solid #FFF; }
.badge--fresh {
    background: #121413; /* Deep premium black/charcoal */
    color: #D6A34A; /* DTG Gold text */
    border: 1px solid rgba(214, 163, 74, 0.3); /* Subtle gold border */
}
.badge--low { background: linear-gradient(135deg, #e63946, #800000); color: #FFF; border: 1px solid #FFF; }

/* Card Labels (Below Image) */
.deli-card__label { 
  display: flex; 
  justify-content: space-between; 
  align-items: flex-start; 
  gap: 10px; 
  padding: 0 4px; 
}
.deli-card__label h3 { 
  font-family: "Cinzel", serif; 
  font-size: 20px; 
  margin: 0 0 4px; 
  color: #fff; 
}
.deli-card__genetics { 
  font-size: 13px; 
  color: #aaa; 
  margin: 0; 
  font-weight: 600; 
}
.deli-card__price { 
  font-size: 18px; 
  font-weight: 900; 
  color: #d4af37; 
  background: rgba(212, 175, 55, 0.1); 
  padding: 6px 12px; 
  border-radius: 8px; 
  border: 1px solid rgba(212, 175, 55, 0.3); 
}

@media (min-width: 768px) { 
  .deli-card-wrapper { flex: 0 0 240px; } /* Shrunk down from 300px */
}

/* =========================================================
   Today’s Highlights (NEW SECTION — scoped)
   Paste ABOVE the Reduced motion block
========================================================= */
#todays-highlights.thSection{
  background: radial-gradient(900px 360px at 18% 0%, rgba(11,125,90,.10) 0%, rgba(248,249,246,0) 55%), linear-gradient(180deg, #F7F8F6 0%, #F4F5F2 100%);
  padding: 56px 0 16px; /* Shrinks the massive gap at the bottom */
  border-top: 1px solid rgba(0,0,0,.06);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

#todays-highlights .thHeader{
  position: relative;
  padding-left: 14px;
}

#todays-highlights .thHeader::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  bottom:6px;
  width:4px;
  border-radius:99px;
  background: rgba(11,125,90,.85);
  box-shadow: 0 0 0 3px rgba(11,125,90,.10);
}
#todays-highlights .thWrap{
  width:min(1100px, calc(100% - 32px));
  margin:0 auto;
}

#todays-highlights .thHeader{ margin-bottom:18px; }
#todays-highlights .thTitle{
  margin:0;
  font-size:28px;
  line-height:1.1;
  letter-spacing:-0.02em;
  color:#121614;
}
#todays-highlights .thSub{
  margin:8px 0 0;
  color:rgba(18,22,20,.72);
  font-size:14px;
  line-height:1.4;
}

@media (max-width:520px){
  #todays-highlights .thHero{
    height: 360px;
  }
}

/* cards */
#todays-highlights .thCard{
  position:relative;
  display:block;
  border-radius:24px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background:#fff;

  /* NEW: cleaner edge + softer shadow */
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 26px rgba(0,0,0,.06);
  transform:translateY(0);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* hover lift & image zoom (desktop only) */
@media (hover:hover) and (pointer:fine){
  #todays-highlights .thCard:hover {
    transform: translateY(-6px);
    border-color: rgba(11,125,90,.16);
    box-shadow: 0 18px 40px rgba(0,0,0,.09);
  }
  
  /* NEW: This specifically lifts/zooms the image inside the card */
  #todays-highlights .thCard:hover .thMedia {
    transform: scale(1.04);
  }
}

#todays-highlights .thMedia {
  position: absolute; 
  inset: 0;
  background-size: cover; 
  background-position: right center;
  /* Smooth transition added for the zoom effect */
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

/* Cinematic overlay: readable bottom, no white wash */
#todays-highlights .thOverlay {
    position: absolute;
    inset: 0;
    /* Increase the first and last rgba values to make the dark gradient stronger */
    background: linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.2) 62%, rgba(0,0,0,0.7) 100%);
}

#todays-highlights .thContent{
  position:relative;
  z-index:2;
  padding:18px 18px 16px;
}

#todays-highlights .thHero{ height:460px; }
#todays-highlights .thMid{ height:230px; border-radius:20px; }
#todays-highlights .thMini{
  height: 215px; /* Dropped down slightly to fix the edge bleed */
  width: 280px;  /* Pulled wider for a cleaner aspect ratio */
  border-radius: 18px;
  flex: 0 0 auto;
}

#todays-highlights .thPill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  letter-spacing:.08em;
  font-weight:800;
  padding:8px 10px;
  border-radius:999px;
  background:rgba(11,125,90,.10);
  color:#0B7D5A;
  margin-bottom:10px;
}

/* category variants */
#todays-highlights .thPill--flower{ background:rgba(11,125,90,.10); color:#0B7D5A; }
#todays-highlights .thPill--vapes{ background:rgba(11,125,90,.10); color:#0B7D5A; }
#todays-highlights .thPill--edibles{ background:rgba(230,122,0,.12); color:#B25A00; }
#todays-highlights .thPill--prerolls{ background:rgba(11,125,90,.10); color:#0B7D5A; }
#todays-highlights .thPill--dtg{ background:rgba(214,163,74,.16); color:#8A5B10; }
#todays-highlights .thPill--concentrates{ background: rgba(230,162,60,.12); color: #B87400; }

#todays-highlights .thH3{
  margin:0 0 6px;
  font-size:26px;
  line-height:1.08;
  letter-spacing:-0.02em;
  color: #ffffff; /* Changed from #0f1412 to white */
  text-shadow: 0 2px 10px rgba(0,0,0,0.5); /* Added for readability */
}

#todays-highlights .thPrice{
  font-weight:900;
  font-size:34px;
  line-height:1;
  color:#0B7D5A;
  margin:0 0 6px;
}

#todays-highlights .thDetails {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9); /* Changed from dark rgba to light */
    text-shadow: 0 1px 5px rgba(0,0,0,0.5);
}

#todays-highlights .thCta{
  margin-top:12px;
  font-size:15px;
  font-weight:900;
  color:#0B7D5A;
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:underline;
  text-underline-offset:4px;
}

/* mid grid */
#todays-highlights .thGrid2{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
  margin-top:14px;
}

@media (min-width: 900px){
  #todays-highlights .thGrid2{
    grid-template-columns:1fr 1fr;
    gap:16px;
  }
  #todays-highlights .thHero{ height:440px; }
}

/* row */
#todays-highlights .thRowWrap{
  margin-top:18px;
}

#todays-highlights .thRowTitle{
  font-weight:900;
  color:#121614;
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.02em;
}

#todays-highlights .thRow{
  display:flex;
  gap:12px;
  overflow:auto;
  padding-bottom:10px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}

#todays-highlights .thRow > .thCard{
  scroll-snap-align:start;
}

#todays-highlights .thContent--mini{
  padding:14px;
}

#todays-highlights .thMiniTitle{
  font-size:18px;
  font-weight:900;
  line-height:1.1;
  color:#121614;
}


/* Center and zoom the small scrolling tiles to cut out empty Canva space */
#todays-highlights .thMini .thMedia {
    background-position: center; 
    background-size: cover; 
    background-repeat: no-repeat;
}

/* HERO: turn content into a vertical layout that can "push" items down */
#todays-highlights .thHero .thContent{
  position:absolute;
  inset: 0;
  display:flex;
  flex-direction: column;
  align-items:center;
  text-align:center;
  padding: 24px;
  z-index: 2;
}

/* Keep the top stack tighter */
#todays-highlights .thHero .thPill{ margin-top: 10px; }

/* Headline spacing */
#todays-highlights .thHero .thH3{
  margin: 10px 0 0;
  font-size: clamp(34px, 6vw, 56px);
  line-height: 1.06;
  color:#fff;
  text-shadow: 0 10px 32px rgba(0,0,0,.55);
   max-width: 900px;
}

/* Price: new Green Labs pop green + faint glow */
#todays-highlights .thHero .thPrice{
  margin: 12px 0 0;
  font-size: clamp(54px, 10vw, 90px);
  font-weight: 950;
  color: #19d6a3; /* lighter GL green */
  text-shadow:
    0 10px 30px rgba(0,0,0,.55),
    0 0 18px rgba(46,248,187,.28); /* faint glow */
}

/* This is the magic: push details + CTA down */
#todays-highlights .thHero .thDetails{
  margin-top: auto;          /* pushes it toward bottom */
  padding-top: 18px;
  font-size: 16px;
  font-weight: 800;
  color: rgba(255,255,255,.88);
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
}

#todays-highlights .thHero .thCta{
  margin-top: 10px;
  font-size: 18px;
  font-weight: 950;
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-shadow: 0 8px 24px rgba(0,0,0,.55);
}

/* tighten on small screens */
@media (max-width:420px){
  #todays-highlights .thHero .thContent{
    margin: 0;
    padding: 18px 18px 20px;
  }
}

/* reveal animation base */
#todays-highlights .thReveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease, transform .55s ease;
}

#todays-highlights .thReveal.is-in{
  opacity:1;
  transform:translateY(0);
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  *{ animation:none !important; transition:none !important; scroll-behavior:auto !important; }
}
/* =========================================================
   PILLAR CARDS — CLICKABLE NAV (MOBILE-FIRST + DESKTOP)
   Paste at END of style.css
========================================================= */

.pillars{
  display:grid;
  gap:12px;            /* tight stack on mobile */
  margin-top:18px;
}

/* Card: compact by default (mobile-first) */
.pillar{
  position:relative;
  display:grid;
  grid-template-columns: 44px 1fr 18px; /* icon | text | arrow */
  gap:12px;
  padding:14px 14px;
  border-radius:16px;
  align-items:center;

  text-decoration:none;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.07);
  backdrop-filter: blur(6px);

  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

/* Icon becomes a clean chip */
.pillar__icon{
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  border-radius:12px;
  font-size:20px;

  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
}

/* Text block */
.pillar__content{ min-width:0; }
.pillar__content h3{
  margin:0;
  font-family:"Cinzel", serif;
  font-size:16px;
  letter-spacing:.04em;
  line-height:1.15;
}
.pillar__content p{
  margin:6px 0 0;
  font-size:13px;
  opacity:.75;
  line-height:1.35;

  /* prevents tall cards on mobile */
  display:-webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow:hidden;
}

/* Arrow always visible */
.pillar__arrow{
  position: static;
  justify-self:end;
  align-self:center;
  opacity:.7;
  font-size:18px;
}

/* Tap feedback (mobile) */
.pillar:active{
  transform: scale(.99);
  border-color: rgba(46,248,187,.45);
  box-shadow: 0 14px 28px rgba(0,0,0,.35);
}

/* Accent energy per card (subtle) */
.pillar--edu{
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(46,248,187,.14), transparent 60%),
    rgba(255,255,255,.02);
}
.pillar--deli{
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(214,163,74,.14), transparent 60%),
    rgba(255,255,255,.02);
}
.pillar--dtg{
  background:
    radial-gradient(600px 220px at 0% 0%, rgba(255,255,255,.06), transparent 60%),
    rgba(255,255,255,.02);
}

/* ===== EXTRA PREMIUM: right-edge accent line ===== */
.pillar::after{
  content:"";
  position:absolute;
  top:10px;
  bottom:10px;
  right:10px;
  width:3px;
  border-radius:99px;
  opacity:.25;
  background: rgba(46,248,187,.9);
}
.pillar--deli::after{ background: rgba(214,163,74,.9); }
.pillar--dtg::after{ background: rgba(255,255,255,.55); }
.pillar:active::after{ opacity:.6; }

/* Desktop: expand into 3-column premium tiles */
@media (min-width: 860px){
  .pillars{
    grid-template-columns: repeat(3, 1fr);
    gap:18px;
    margin-top:34px;
  }
  .pillar{
    grid-template-columns: 52px 1fr;
    padding:22px;
    align-items:start;
    border-radius:18px;
  }
  .pillar__icon{
    width:52px;
    height:52px;
    font-size:22px;
  }
  .pillar__content h3{ font-size:18px; }
  .pillar__content p{ -webkit-line-clamp: 3; }

  /* Desktop hover polish */
  .pillar:hover{
    transform: translateY(-6px);
    border-color: rgba(46,248,187,.60);
    box-shadow: 0 20px 40px rgba(0,0,0,.35);
  }
  .pillar__arrow{
    position:absolute;
    right:18px;
    bottom:16px;
    opacity:.6;
    transition: transform .25s ease, opacity .25s ease;
  }
  .pillar:hover .pillar__arrow{
    transform: translateX(4px);
    opacity:.85;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce){
  .pillar{ transition:none !important; }
}

.dealTilesWrap{display:grid;gap:12px;margin:14px 0 18px;}
.dealFeature{position:relative;border-radius:22px;padding:18px 16px;background:radial-gradient(1000px 420px at 15% 0%,rgba(11,125,90,.22) 0%,rgba(214,163,74,.10) 35%,rgba(255,255,255,0) 60%),#fff;border:1px solid rgba(0,0,0,.10);box-shadow:0 26px 70px rgba(0,0,0,.14),0 1px 0 rgba(255,255,255,.75) inset;overflow:hidden;color:#141615;text-decoration:none;}
.dealFeature::after{content:"";position:absolute;inset:-2px;background:linear-gradient(120deg,rgba(46,248,187,0) 0%,rgba(46,248,187,.10) 25%,rgba(214,163,74,.10) 55%,rgba(46,248,187,0) 85%);opacity:0;transform:translateX(-10%);transition:opacity .25s ease,transform .40s ease;pointer-events:none;}
.dealFeature__row{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.dealFeature__k{display:flex;align-items:center;gap:10px;min-width:0;}
.dealFeature__icon{width:44px;height:44px;border-radius:16px;display:grid;place-items:center;font-size:20px;background:radial-gradient(140px 70px at 30% 20%,rgba(214,163,74,.22),rgba(11,125,90,.12) 55%),rgba(255,255,255,.95);border:1px solid rgba(0,0,0,.10);box-shadow:0 12px 24px rgba(0,0,0,.12);}
.dealFeature__label{font-family:"Cinzel",serif;font-weight:900;letter-spacing:.08em;text-transform:uppercase;font-size:14px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}
.dealPill{font-family:"Cinzel",serif;font-weight:900;letter-spacing:.08em;font-size:12px;padding:7px 10px;border-radius:999px;border:1px solid rgba(11,125,90,.22);background:linear-gradient(180deg,rgba(11,125,90,.10),rgba(11,125,90,.06));color:#0b5f47;white-space:nowrap;}
.dealFeature__hook{margin:10px 0 0;font-weight:950;font-size:18px;line-height:1.15;}
.dealFeature__sub{margin:8px 0 0;display:flex;gap:10px;flex-wrap:wrap;align-items:center;font-weight:850;opacity:.78;font-size:13px;}
.dealFeature__cta{margin-left:auto;display:inline-flex;align-items:center;gap:8px;font-weight:950;color:#0b5f47;}
.dealQuickGrid{display:grid;grid-template-columns:1fr;gap:12px;}
.dealQuick{position:relative;display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 14px;border-radius:18px;background:#fff;border:1px solid rgba(0,0,0,.10);box-shadow:0 16px 40px rgba(0,0,0,.10);color:#141615;text-decoration:none;}
.dealQuick__left{display:flex;flex-direction:column;gap:6px;min-width:0;}
.dealQuick__price{font-family:"Cinzel",serif;font-weight:900;letter-spacing:.06em;font-size:18px;}
.dealQuick__text{font-weight:900;opacity:.78;font-size:13px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis;max-width:62vw;}
.dealQuick__arrow{width:34px;height:34px;border-radius:12px;display:none;place-items:center;border:1px solid rgba(0,0,0,.10);background:rgba(11,125,90,.06);color:#0b5f47;font-size:18px;}
@media (min-width:860px){
  .dealTilesWrap{grid-template-columns:1.2fr .8fr;align-items:stretch;}
  .dealQuickGrid{grid-template-columns:1fr 1fr;}
  .dealQuick__text{max-width:260px;}
  .dealFeature:hover{transform:translateY(-4px);box-shadow:0 34px 90px rgba(0,0,0,.16);}
  .dealFeature:hover::after{opacity:1;transform:translateX(10%);}
  .dealQuick:hover{transform:translateY(-3px);box-shadow:0 24px 65px rgba(0,0,0,.14);}
}

@media (max-width: 768px) {
  /* 1. Tighten the edges of the phone screen slightly */
  header .container { 
    padding-left: 10px !important;  
    padding-right: 10px !important; 
  }

  /* 3. Push the logo to the far left and the buttons to the far right */
  .sticky__inner {
    justify-content: space-between !important;
  }

  /* 4. Squeeze the buttons closer together to make room for bigger text */
  .actions {
    flex: 0 1 auto;
    justify-content: flex-end !important;
    gap: 4px !important; /* Squeezed down from 8px to buy more space */
    margin-left: auto !important; /* Ensures the maximum gap is between the Logo and SHOP */
  }

  /* 5. Undo the old hamburger "spring" rule */
  .actions > :last-child {
    margin-left: 0 !important;
  }

  /* 6. Increase the text size! */
  .btn--deals .glowLabel, 
  .btn--kid .kidLabel,
  .btn--shop {
    font-size: 13px !important; /* Bumped up from 11px for better readability */
    padding: 0 4px !important; /* Shrunk the invisible box around the words so they still fit */
  }
}

/* =========================================================
   DYNAMIC DTG STRAIN LIBRARY (Injected via JS) - CAROUSEL
========================================================= */
.strain-grid {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 10px 5vw 40px; 
  margin-left: calc(50% - 50vw);
  width: 100vw;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: rgba(214, 163, 74, 0.6) rgba(255, 255, 255, 0.02); 
}

.strain-grid::-webkit-scrollbar {
  height: 8px; 
  display: block; 
}

.strain-grid::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02); 
  border-radius: 10px;
  margin: 0 5vw; 
}

.strain-grid::-webkit-scrollbar-thumb {
  background: rgba(214, 163, 74, 0.5); 
  border-radius: 10px;
}

.strain-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(214, 163, 74, 0.9); 
}

/* --- GREEN SCROLLBAR FOR LIFESTYLE & APPAREL --- */
#apparel-grid {
  /* Firefox support */
  scrollbar-color: rgba(46, 248, 187, 0.4) rgba(255, 255, 255, 0.02); 
}

#apparel-grid::-webkit-scrollbar-thumb {
  /* Chrome/Safari support */
  background: rgba(46, 248, 187, 0.4); 
}

#apparel-grid::-webkit-scrollbar-thumb:hover {
  background: rgba(46, 248, 187, 0.8);
}

/* Shrink the overall card size but keep it premium */
.strain-card, .strain-card * {
  cursor: pointer; 
}

/* Keep your existing card styling below it */
.strain-card {
  flex: 0 0 260px; 
  scroll-snap-align: center;
  background: #0b0d0c; 
  border-radius: var(--radius2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
  .strain-card {
    flex: 0 0 280px; 
    scroll-snap-align: start;
  }
}

.strain-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  border-color: rgba(214, 163, 74, 0.4); /* Premium DTG Gold Glow */
}

.strain-card-inner {
  padding: 1.2rem;
}

/* RESTORED: Image styling */
.strain-image {
  height: 200px;
  border-radius: 14px;
  margin-bottom: 1rem;
  background-color: #070907;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.strain-image.fallback-logo {
  background-size: 40%;
  background-color: #0b0b0b;
}

/* RESTORED: Typography styling */
.strain-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 4px;
}

.strain-name {
  color: #fff;
  font-family: "Cinzel", serif;
  font-size: 1.3rem;
  margin: 0;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.1;
}

.strain-badge {
  background: linear-gradient(180deg, rgba(214,163,74,.95), rgba(185,135,47,.95));
  color: #121413;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  white-space: nowrap;
}

.strain-meta {
  color: rgba(233, 236, 235, 0.72);
  font-size: 0.9rem;
  margin: 0.4rem 0;
  font-weight: 600;
}

/* Constrain the text area and add the fade-out blur */
.strain-content {
  position: relative;
  max-height: 130px; 
  overflow: hidden;
}

.strain-content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50px; 
  background: linear-gradient(to bottom, rgba(11, 13, 12, 0), rgba(11, 13, 12, 1));
  pointer-events: none; 
}

/* Neatly truncate the text */
.strain-notes {
  color: rgba(233, 236, 235, 0.55);
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0 0 20px 0; 
  display: -webkit-box;
  -webkit-line-clamp: 3; 
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   DTG STRAIN MODAL (Green Labs Version)
========================================================= */
.strain-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.strain-modal.open {
  opacity: 1;
  visibility: visible;
}

.strain-modal-dialog {
  background: #0b0d0c;
  border: 1px solid rgba(214, 163, 74, 0.3); /* Subtle gold border */
  border-radius: 24px;
  width: 100%;
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.8);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.strain-modal.open .strain-modal-dialog {
  transform: translateY(0);
}

.strain-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: all 0.2s ease;
  z-index: 10;
}

.strain-modal-close:hover {
  background: rgba(214, 163, 74, 0.9);
  border-color: rgba(214, 163, 74, 1);
  color: #000;
  transform: scale(1.05);
}

.strain-modal-layout {
  display: flex;
  flex-direction: row;
}

.strain-modal-media {
  width: 45%;
  background: #070907;
  position: relative;
  min-height: 300px; /* Moved this up to the container */
}

.strain-modal-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block; /* Removed the 300px minimum from the image itself */
}

.strain-modal-image.fallback-logo {
  object-fit: contain;
  padding: 3rem;
}

.strain-modal-body {
  width: 55%;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.strain-modal-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  color: #d4af37;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.strain-modal-title {
  font-family: "Cinzel", serif;
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 20px;
  line-height: 1.05;
  color: #fff;
}

.strain-modal-info {
  display: grid;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.strain-modal-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
}

.strain-modal-info span {
  color: #d4af37;
  font-weight: 900;
  display: inline-block;
  width: 85px;
}

.strain-modal-desc {
  font-size: 15px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  font-weight: 600;
}

.strain-modal-cta {
  margin-top: auto;
}

@media (max-width: 768px) {
  .strain-modal-layout {
    flex-direction: column;
  }
  .strain-modal-media {
    width: 100%;
    height: 240px;
    min-height: auto; /* Allows it to shrink perfectly on phones */
  }
  .strain-modal-body {
    width: 100%;
    padding: 24px;
  }
}

/* THE TROPHY ROOM VIBE */
.gl-strains-section {
  position: relative;
  /* Adds a subtle floor glow beneath the cards to make them look like they are on a stage */
  background: radial-gradient(circle at bottom center, rgba(214, 163, 74, 0.05) 0%, transparent 70%);
}

.fancy-title {
  /* This ensures the title remains the centerpiece and doesn't get squashed */
  text-transform: uppercase;
  font-size: clamp(42px, 6vw, 68px) !important;
  margin-bottom: 5px;
}

/* =========================================================
   MOBILE FOOTER ALIGNMENT
========================================================= */
@media (max-width: 767px) {
  .footer__grid {
    text-align: center;
    gap: 40px; /* Gives the sections room to breathe */
  }
  .footer__col {
    align-items: center; /* Centers the links and logo */
  }
  .footer__warning {
    margin: 0 auto;
  }
}

/* =========================================================
   OUR STORY (Video Section)
========================================================= */
.story-grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.story-content {
  display: flex;
  flex-direction: column;
}

.story-media {
  width: 100%;
}

/* Forces the iframe into a perfect, responsive 16:9 cinematic ratio */
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; 
  height: 0;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.1);
  background: #070907;
  transform: translateZ(0); /* Hardware acceleration */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 860px) {
  .story-grid {
    grid-template-columns: 1fr 1.2fr; /* Text gets slightly less room than the video */
  }
  .story-content {
    padding-right: 20px;
  }
}

/* =========================================================
   PRE-TAX PRICING STYLES
========================================================= */
.drTaxBanner {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(214, 163, 74, 0.12); /* Faint gold tint */
  border: 1px solid rgba(214, 163, 74, 0.25);
  color: #8A5B10;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 600;
}

.drTaxBanner strong {
  color: #523504;
  font-weight: 900;
}

.thTaxTag {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .06em;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  vertical-align: middle;
  margin-left: 8px;
  margin-bottom: 6px;
}

/* Make the tax tag match the green theme on the smaller white cards */
#todays-highlights .thCard:not(.thHero) .thTaxTag {
  background: rgba(11, 125, 90, 0.1);
  color: #0B7D5A;
}

/* =========================================
   SMART STICKY STATUS STRIP (All Devices)
   ========================================= */
.status-strip {
  display: block; 
  transition: all 0.3s ease-in-out;
  transform-origin: top;
  overflow: hidden;
  height: var(--stripH); 
}

body.is-scrolled .status-strip {
  height: 0 !important;
  min-height: 0 !important;
  padding: 0 !important;
  border-top-width: 0 !important;
  opacity: 0 !important;
  margin: 0 !important;
}

/* =========================================
   FADE-IN ON SCROLL (.reveal -> .is-in)
   ========================================= */
/* Elements start hidden and pushed down */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  will-change: opacity, transform;
}

/* Script.js adds this class when the element is scrolled into view */
.reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* Update Point 4: Fancy Header Styles (Add these near other strain styles) */
.fancy-title {
  font-family: 'Cinzel', serif !important;
  font-weight: 900 !important;
  letter-spacing: 0.04em !important;
}

/* Award Card Styles */
.award-card { 
  border: 1px solid rgba(214, 163, 74, 0.6) !important; 
  box-shadow: 0 0 25px rgba(214, 163, 74, 0.15); 
}
.award-badge-corner { 
  position: absolute; top: 12px; left: 12px; z-index: 5; 
  background: #D6A34A; color: #000; font-size: 10px; font-weight: 950; 
  padding: 4px 10px; border-radius: 4px; letter-spacing: 0.1em; 
}

/* =========================================
   LARGE MONITOR OPTIMIZATIONS (1440px+)
   ========================================= */
@media (min-width: 1440px) {
  /* 1. Expand the max-width of the whole site slightly */
  :root {
    --container: 1320px; /* Up from 1180px */
  }

  /* 2. Give the hero section more top/bottom breathing room */
  .section--hero {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  /* 3. Let the Hero Title scale up bigger (caps at 90px instead of 72px) */
  .hero__title {
    font-size: clamp(60px, 5vw, 76px);
  }

  /* 4. Bump the subtitle size and let it stretch slightly wider */
  .hero__sub {
    font-size: 22px; 
    max-width: 95%; /* Up from 90% */
  }

  /* 5. Increase the gap between the text and the hero image */
  .hero__grid {
    gap: 60px; /* Up from 22px */
  }
}

/* =========================================
   MEDICAL BUTTON (VIP Styling)
   ========================================= */
.btn--med {
  background: #0B7D5A; /* Deep Medical Green */
  color: #ffffff;      /* White text */
  border-color: rgba(255,255,255,0.5); /* Semi-transparent white border */
  box-shadow: 0 10px 28px rgba(0,0,0,.25);
}

.btn--med:hover {
  background: #ffffff; /* Flips to solid white */
  color: #0B7D5A;      /* Green text */
  border-color: #ffffff;
  box-shadow: 0 16px 35px rgba(255,255,255,.20);
}

/* =========================================
   AWARD WINNER BADGE (Cannabis Cup)
   ========================================= */
.badge--award {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(214,163,74,0.15), rgba(214,163,74,0.02));
  border: 1px solid rgba(214,163,74,0.4);
  color: #D6A34A; /* DTG Gold */
  padding: 6px 14px;
  border-radius: 999px;
  font-family: "Cinzel", serif;
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 4px 15px rgba(214,163,74,0.15);
  margin-bottom: 16px;
  width: fit-content;
}

.badge--award .award-icon {
  font-size: 16px;
  line-height: 1;
  filter: drop-shadow(0 2px 4px rgba(214,163,74,0.4));
}

/* =========================================
   AGE GATE MODAL
   ========================================= */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: rgba(0,0,0,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 1;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.age-gate[hidden] {
  opacity: 0;
  visibility: hidden;
  display: flex; 
  pointer-events: none;
}
.age-gate__box {
  background: radial-gradient(100% 100% at 50% 0%, rgba(11,125,90,0.15) 0%, rgba(11,13,12,1) 100%), #0b0d0c;
  border: 1px solid rgba(214,163,74,0.3);
  border-radius: 24px;
  padding: 40px 30px;
  max-width: 440px;
  width: 100%;
  text-align: center;
  box-shadow: 0 40px 80px rgba(0,0,0,0.6);
  transform: translateY(0);
  transition: transform 0.4s ease;
}
.age-gate[hidden] .age-gate__box {
  transform: translateY(20px);
}
.age-gate__logo {
  width: 60px;
  height: auto;
  margin: 0 auto 20px;
  opacity: 0.9;
}
.age-gate__title {
  font-family: "Cinzel", serif;
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  margin: 0 0 12px;
}
.age-gate__sub {
  color: rgba(255,255,255,0.8);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 30px;
}
.age-gate__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.age-gate__note {
  font-size: 12px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

/* =========================================
   WELCOME PROMO POPUP
   ========================================= */
.promo-modal {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9999;
  max-width: 360px;
  width: calc(100% - 60px);
  animation: slideUp 0.6s cubic-bezier(0.25, 1, 0.5, 1) forwards;
}

@keyframes slideUp { 
  from { opacity: 0; transform: translateY(40px); } 
  to { opacity: 1; transform: translateY(0); } 
}

.promo-modal__box {
  background: #ffffff;
  border-radius: 24px;
  padding: 30px;
  color: #141615;
  /* Premium deep shadow and a subtle green border */
  box-shadow: 0 30px 90px rgba(0,0,0,0.6);
  border: 1px solid rgba(11, 125, 90, 0.2);
  position: relative;
  text-align: center;
}

.promo-modal__close {
  position: absolute; top: 12px; right: 12px;
  background: none; border: none; font-size: 24px; cursor: pointer; color: #aaa;
}

.promo-modal__icon { font-size: 44px; margin-bottom: 12px; }

.promo-modal__title { 
  font-family: "Cinzel", serif; 
  font-size: 24px; 
  font-weight: 900; 
  margin-bottom: 10px; 
  color: #0B7D5A; /* Green Labs Green */
}

.promo-modal__text { 
  font-size: 15px; 
  line-height: 1.5; 
  margin-bottom: 20px; 
  font-weight: 600; 
  color: #4a5d56; 
}

/* --- PROMO MODAL BUTTON FIX --- */
.promo-modal__box .btn--primary {
  background: #0B7D5A; /* Solid deep green to prevent white glare */
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 20px rgba(11, 125, 90, 0.25);
}

.promo-modal__box .btn--primary:hover {
  background: #086045; /* Slightly darker on hover */
  box-shadow: 0 12px 25px rgba(11, 125, 90, 0.35);
}

/* Mobile Fix: Positions the popup at the bottom center on phones */
@media (max-width: 640px) {
  .promo-modal { bottom: 20px; left: 20px; right: 20px; width: auto; }
}

/* SOCIAL BRAND COLORS */
.soc[aria-label="Instagram"]:hover, .soc2[aria-label="Instagram"]:hover { color: #E4405F; border-color: #E4405F; }
.soc[aria-label="Facebook"]:hover, .soc2[aria-label="Facebook"]:hover { color: #1877F2; border-color: #1877F2; }
.soc[aria-label="X"]:hover, .soc2[aria-label="X"]:hover { color: #ffffff; border-color: #ffffff; background: #000; }
.soc[aria-label="TikTok"]:hover, .soc2[aria-label="TikTok"]:hover { color: #EE1D52; border-color: #69C9D0; }

/* DEALS SCROLL BAR FIX */
.drJumpWrap { padding: 0 45px 12px !important; }
.drArrowBtn--left { left: 4px; } 
.drArrowBtn--right { right: 4px; }

/* MORE DEALS OFFSET (MOBILE) */
.thRow { padding-right: 60px !important; }

/* FANCY GENETICS HEADER */
.fancy-header { text-align: center; margin-bottom: 2.5rem; padding: 0 20px; }
.fancy-title { font-family: "Cinzel", serif; font-size: clamp(34px, 5vw, 54px); color: #fff; letter-spacing: 0.04em; margin-top: 10px; }
@media (min-width: 640px) { .fancy-title { white-space: nowrap; } }

/* AWARD WINNER TILES */
.award-card { border: 1px solid rgba(214, 163, 74, 0.6) !important; box-shadow: 0 0 25px rgba(214, 163, 74, 0.15); }
.award-badge-corner { position: absolute; top: 12px; left: 12px; z-index: 5; background: #D6A34A; color: #000; font-size: 10px; font-weight: 950; padding: 4px 10px; border-radius: 4px; letter-spacing: 0.1em; box-shadow: 0 4px 10px rgba(0,0,0,0.3); }

/* 1. Fix the "Trophy Room" Background & Cut-off */
.gl-strains-section {
  background: #070907 !important; /* Force the section to be black to the edges */
  padding: 60px 0;
  overflow: hidden; /* Keeps the horizontal scroll contained to the grid only */
}

.strain-grid {
  /* This aligns the first card with your text container while allowing the rest to scroll */
  padding: 20px max(18px, calc((100vw - 1180px) / 2 + 18px)) 60px !important;
  margin-left: 0 !important;
  width: 100vw !important;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
}

/* 3. Mobile Adjustment: Ensure no beige shows on tiny screens */
@media (max-width: 1180px) {
  .strain-grid {
    padding-left: 20px !important; /* Standard phone gutter */
  }
}

/* Make all three sections share the same seamless black base */
.section--dtg, 
.gl-strains-section, 
#our-story {
  background-color: #0b0d0c !important; /* The Green Labs Signature Black */
  width: 100% !important;
  margin: 0 !important;
  padding: 80px 0;
  display: block;
}

/* Fix the Apparel Rail so it doesn't get cut off on the left */
.rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 20px 20px 40px !important;
  margin-left: 0 !important;
  -webkit-overflow-scrolling: touch;
}

/* Fix the Trophy Room Grid so it's perfectly aligned */
.strain-grid {
  padding: 20px max(18px, calc((100% - 1180px) / 2 + 18px)) 60px !important;
  display: flex;
  gap: 20px;
  overflow-x: auto;
  width: 100% !important;
}

/* Remove any potential "beige gaps" caused by the body background */
#dtg, .gl-strains-section, #our-story {
  border: none !important;
}

/* ========================================================= 
   FULL WIDTH SECTION REPAIR (No White Gap)
========================================================= */

/* 1. Force the parent main container to not restrict these sections */
main, .main-content {
    overflow-x: clip; 
    width: 100%;
}

/* 2. The New Cage Breaker: Uses 100% with a safety reset */
.gl-strains-section, #our-story {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    position: relative;
    left: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* 3. Ensure the inner grids still have their nice side-padding */
.strain-grid, #apparel-grid {
    padding-left: max(20px, 5vw) !important;
    padding-right: max(20px, 5vw) !important;
}

/* 4. Fix for the "Our Story" Gradient stretching */
#our-story {
    background: linear-gradient(to bottom, #0b0d0c 0%, #0B7D5A 100%) !important;
    display: block !important;
}

/* 4.5 Fix the Beige Gap Below It */
main + .section--light {
  padding-top: 20px !important; /* KILLS THE BEIGE GAP: Pulls the Visit section up */
}

.story-content p {
  color: #ffffff !important; 
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  font-size: 18px;
  line-height: 1.7;
}

/* 5. Video Sizing Fixes */
.story-media {
  flex: 1;
  min-width: 320px;
  width: 100%;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%; /* Perfect 16:9 aspect ratio */
  height: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

/* =========================================
   GRIDS & HERO IMAGES
   ========================================= */

/* --- THE DUTCH DELI HERO IMAGE --- */
.deli-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover; 
  object-position: center;
  border-radius: inherit;
}

/* --- FULL WIDTH SCROLL GRIDS (Green Labs Fix) --- */
.strain-grid, #apparel-grid {
    width: 100% !important;
    max-width: none !important;
    padding: 20px 4vw 60px !important;
    display: flex !important;
    gap: 20px;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory;
    scroll-padding-left: 4vw !important;
    -webkit-overflow-scrolling: touch; /* Smoothes out iOS thumb scroll */
    touch-action: pan-x; /* STOPS THE SHAKING: Only allows horizontal swiping */
}

/* Ensure cards don't shrink on mobile */
.strain-grid .strain-card, #apparel-grid .strain-card {
    flex: 0 0 85% !important; /* Forces 85% width so next card peeks in */
    scroll-snap-align: center !important;
}

@media (min-width: 992px) {
    .strain-grid .strain-card, #apparel-grid .strain-card {
        flex: 0 0 300px !important; /* Standard size for desktop */
    }
}

.strain-card {
  scroll-snap-align: start !important;
}

/* --- FANCY HEADER SYSTEM (TASK 2 FIX) --- */
.fancy-header {
  text-align: center; /* FIXED: Centered to match other sections */
  margin-bottom: 40px;
}

.fancy-header .dtgbadge {
  margin-left: auto;
  margin-right: auto;
}

.fancy-title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2rem, 5vw, 2.8rem); /* Scales beautifully on mobile */
  font-weight: 900;
  margin: 12px 0;
  text-transform: uppercase;
  letter-spacing: -1.5px;
  line-height: 1;
}

.dtgbadge {
  display: inline-block;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  border-radius: 50px;
  border: 1px solid;
  text-transform: uppercase;
  margin-bottom: 4px;
}

/* =========================================
   TASK 3: "MORE DEALS" TRACK & SCROLLBAR
   ========================================= */

/* 1. Remove the "Track" box completely & tighten the top gap */
#todays-highlights .thRowWrap {
    margin-top: 16px; /* Pulled up from 34px to close the gap */
    background: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    border: none;
}

/* 2. Kill the redundant "More Deals" text */
#todays-highlights .thRowTitle {
    display: none; 
}

/* 3. Break the scroller out edge-to-edge like the Deli/Strains */
#todays-highlights .thRow {
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(50% - 50vw) !important;
    padding-left: max(14px, 5vw) !important;
    padding-bottom: 24px !important;
    scroll-padding-left: max(14px, 5vw) !important;
}

/* Center the tiles on large desktop screens when they don't need to scroll */
@media (min-width: 1440px) {
    #todays-highlights .thRow {
        justify-content: center;
        padding-left: 0 !important; /* Removes the left bumper so it perfectly centers */
    }
}

/* Chrome/Safari Scrollbar Styling */
#todays-highlights .thRow::-webkit-scrollbar {
  height: 6px;
  display: block;
}

#todays-highlights .thRow::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.05);
  border-radius: 10px;
  margin: 0 24px;
}

#todays-highlights .thRow::-webkit-scrollbar-thumb {
  background: #0B7D5A;
  border-radius: 10px;
}

/* =========================================
   PREMIUM SLIDER SCROLLBARS (HOVER EFFECTS)
   ========================================= */

/* 1. Base Setup for All Sliders */
.strain-grid, 
#apparel-grid, 
#todays-highlights .thRow, 
#deliCarousel {
  overflow-x: auto !important;
  scrollbar-width: auto !important; /* Tells Firefox not to hide it */
  padding-bottom: 24px !important; /* Space inside for the scrollbar */
  margin-bottom: 40px !important; /* THE FIX: Pushes the Order button down! */
}

/* 2. Chrome/Safari Base Dimensions (Forcing Visibility) */
.strain-grid::-webkit-scrollbar, 
#apparel-grid::-webkit-scrollbar, 
#todays-highlights .thRow::-webkit-scrollbar,
#deliCarousel::-webkit-scrollbar {
  height: 8px; 
  display: block !important; /* THE FIX: Forbids the scrollbar from disappearing */
  -webkit-appearance: none !important; 
}

/* The invisible track background */
.strain-grid::-webkit-scrollbar-track, 
#apparel-grid::-webkit-scrollbar-track, 
#todays-highlights .thRow::-webkit-scrollbar-track,
#deliCarousel::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  margin: 0 4vw; /* Keeps the scrollbar aligned with your content padding */
}

/* -----------------------------------------
   COLOR & HOVER LOGIC
   ----------------------------------------- */

/* A. MORE DEALS: Emerald Green */
#todays-highlights .thRow::-webkit-scrollbar-thumb {
  background: rgba(11, 125, 90, 0.4); /* Subtle green until hovered */
  border-radius: 10px;
  transition: background 0.3s ease;
}
#todays-highlights .thRow:hover::-webkit-scrollbar-thumb {
  background: rgba(11, 125, 90, 1); /* BOOM! Solid Emerald on hover */
}

/* B. DUTCH DELI: Dutch Touch Gold */
#deliCarousel::-webkit-scrollbar-thumb {
  background: rgba(214, 163, 74, 0.4); /* Subtle gold until hovered */
  border-radius: 10px;
}
#deliCarousel:hover::-webkit-scrollbar-thumb {
  background: rgba(214, 163, 74, 1); /* BOOM! Solid Gold on hover */
}

/* C. KEEP IT DUTCH / TROPHY ROOM: Clean White */
.strain-grid::-webkit-scrollbar-thumb, 
#apparel-grid::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2); /* Subtle white until hovered */
  border-radius: 10px;
}
.strain-grid:hover::-webkit-scrollbar-thumb,
#apparel-grid:hover::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.8); /* Crisp White on hover */
}

/* =========================================
   ABOUT US: COMMUNITY BUTTON (GREEN VIBE)
   ========================================= */
.btn--green {
  background-color: #0B7D5A !important; /* Green Labs Emerald */
  border: 1px solid #0B7D5A !important;
  color: #ffffff !important;
}

.btn--green:hover {
  background-color: #096649 !important; /* Darker green on hover */
  border-color: #096649 !important;
  color: #ffffff !important;
}

/* =========================================
   GREEN LABS GUIDE: READABILITY & VIBE
   ========================================= */

/* The main section container */
.buyGuide {
  background-color: #f9f9f7; /* A very slight off-white/cream for less eye strain */
  padding: 100px 0;
}

/* Big Intro Header */
.buyGuide h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: clamp(32px, 5vw, 48px); /* Fluid sizing: big but not overwhelming */
  letter-spacing: -1.5px;
  color: #1a1a1a;
  line-height: 1.1;
  margin-bottom: 24px;
}

/* Intro Paragraph */
.buyGuide .intro-text {
  font-size: 20px; /* Larger for 40+ readability */
  line-height: 1.6;
  color: #4a4a4a;
  max-width: 700px; /* Keeps lines from being too wide/hard to track */
  margin-bottom: 40px;
}

/* Topic Labels (e.g., TERPENE BASICS) */
.guide-label {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 2px; /* This gives it that "Brand" vibe */
  color: #0B7D5A; /* Green Labs Emerald */
  margin-bottom: 12px;
  display: block;
}

/* Question Headers (e.g., WHAT ARE TERPENES?) */
.buyGuide h2 {
  font-family: 'Playfair Display', serif; /* Or your main site serif */
  font-weight: 700;
  font-size: 38px;
  color: #1a1a1a;
  margin-bottom: 20px;
}

/* Body Content */
.buyGuide p {
  font-size: 18px; /* The "sweet spot" for comfortable reading */
  line-height: 1.8; /* Extra breathing room between lines */
  color: #333;
  margin-bottom: 24px;
}
/* =========================================
   GREEN LABS GUIDE: TIGHT & PUNCHY
   ========================================= */

/* 1. Standardize the section padding */
.buyGuide {
    background-color: #f9f9f7;
    padding: 60px 0 80px; /* 60px top, 0 sides, 80px bottom to match other sections */
}

.buyGuide p {
  font-size: 16px; /* Back to a normal, standard size */
  line-height: 1.5; /* Tighter line spacing */
  color: #333;
  margin-bottom: 16px; /* Less dead space between paragraphs */
}

/* 2. Make the Questions POP */
.buyGuide h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 900; /* Maximum boldness */
  font-size: 32px; 
  color: #000000; /* Pure black for high contrast */
  margin-bottom: 10px; /* Snugs it closer to the answer */
  letter-spacing: -0.5px;
  line-height: 1.2;
}

/* Topic Labels (e.g., TERPENE BASICS) */
.guide-label {
  font-family: 'Inter', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #0B7D5A; /* Emerald Green */
  margin-bottom: 8px;
  display: block;
}

/* Big Intro Header */
.buyGuide h1 {
  font-family: 'Inter', sans-serif;
  font-weight: 900;
  font-size: 36px;
  color: #1a1a1a;
  margin-bottom: 16px;
}
.buyGuide .intro-text {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 700px;
  margin-bottom: 30px;
}

/* 3. FIX THE MASSIVE IMAGE / TILE */
.buyGuide img {
  width: 100%;
  height: auto;
  max-height: 380px; /* The Magic Fix: Forces the image to stop growing */
  object-fit: contain; /* Keeps it proportionate without stretching */
  border-radius: 12px; /* Keeps the edges looking clean */
  margin: 0 auto;
  display: block;
}
/* =========================================
   ROAD TO 420: ELEGANT TILE TEXT (FLUID UPGRADE)
   ========================================= */
.tile-elegant-text {
  position: absolute;
  bottom: 50px; /* ⬆️ Lifted it much higher off the bottom floor! */
  left: 20px;   /* ⬅️ Kept firmly planted on the left side */
  right: 20px;
  z-index: 2;
  text-align: left; 
  pointer-events: none;
}

.tile-elegant-title {
  font-family: 'Playfair Display', serif;
  font-weight: 400;
  color: #a4bba8;
  margin-bottom: 6px;
  line-height: 1.1;
  letter-spacing: 1px;
  
  /* 🌟 BUMPED UP SIZING 🌟 */
  /* MIN: 28px | SCALING: 4vw | MAX: 42px */
  font-size: clamp(28px, 4vw, 42px);
}

.tile-elegant-sub {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 4px;
  line-height: 1.3;
  
  /* 🌟 BUMPED UP SIZING 🌟 */
  /* MIN: 16px | SCALING: 1.8vw | MAX: 22px */
  font-size: clamp(16px, 1.8vw, 22px);
}

.tile-elegant-note {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  
  /* 🌟 BUMPED UP SIZING 🌟 */
  /* MIN: 14px | SCALING: 1.2vw | MAX: 16px */
  font-size: clamp(14px, 1.2vw, 16px);
}
/* =========================================
   THE HOVER GLOW EFFECT
   ========================================= */
/* When hovering over the tile, the title lights up */
.hero__media:hover .tile-elegant-title {
  color: #ffffff; /* Brightens the text itself to pure white */
  text-shadow: 
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(15, 191, 83, 0.8), /* Soft emerald green glow */
    0 0 30px rgba(15, 191, 83, 0.5);
}

/* Adds a very subtle matching green glow to the subtext */
.hero__media:hover .tile-elegant-sub {
  text-shadow: 0 0 10px rgba(15, 191, 83, 0.4);
}

main + .section--light {
  padding-top: 20px !important; /* Shrinks the beige dead space */
}

/* =========================================
   4. OUR STORY & VISIT GAP FIX (MASTER)
   ========================================= */
#our-story {
  background: linear-gradient(to bottom, #0b0d0c 0%, #0B7D5A 100%) !important;
  padding: 80px 0 80px !important; /* Perfect breathing room, no massive gaps */
}

main + .section--light {
  padding-top: 20px !important; /* Pulls the beige Visit section up tight */
}

/* =========================================
   LEAFLY EMBED STYLES
   ========================================= */
#leafly-embed-wrapper iframe {
  display: block;
  width: 100%;
  min-height: 1200px !important; /* Prevents jumping while loading */
  height: auto;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.08); /* Soft premium shadow */
  background: #ffffff;
}

/* =========================================
   MOBILE "PEEK & FADE" SCROLL REVEAL FIX
   ========================================= */
@media (max-width: 640px) {
    /* 1. Make the cards bigger now that the box is gone! */ 
#todays-highlights .thMini {
    width: 240px;
    height: 180px; 
}

    /* 2. The Fade: Create a fog gradient on the right edge */
    #todays-highlights .thRow {
        -webkit-mask-image: linear-gradient(to right, black 85%, transparent 100%);
        mask-image: linear-gradient(to right, black 85%, transparent 100%);
        padding-right: 50px !important; /* Ensures the last card can scroll past the fade */
    }
    
    /* 3. Pull the text padding tighter so it still looks perfect */
    #todays-highlights .thContent--mini {
        padding: 14px !important;
    }
    
    #todays-highlights .thMiniTitle {
        font-size: 15px !important; 
    }
}

/* =========================================
   SMART CENTERING FOR SCROLL GRIDS
   Centers tiles on wide screens if they fit, 
   but safely defaults to left-scroll if they overflow!
   ========================================= */
@media (min-width: 1024px) {
    .strain-grid > *:first-child,
    #apparel-grid > *:first-child {
        margin-left: auto !important;
    }
    
    .strain-grid > *:last-child,
    #apparel-grid > *:last-child {
        margin-right: auto !important;
    }
}

/* =========================================================
   EDUCATION SECTION: CLEANUP & GRID LAYOUT
========================================================= */

/* Clean up the guide card titles */
.guideCard h1, 
.guideCard h2, 
.guideCard h3 {
  font-size: 1.75rem; 
  line-height: 1.2;
  letter-spacing: -0.5px; 
}

/* ============================================================
   TROPHY ROOM MOBILE SCROLL FIX
============================================================ */
#current-strains {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 10px 5vw 40px;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    
    /* The "Native App" Feel for iOS */
    -webkit-overflow-scrolling: touch; 
    
    /* Prevents the vertical page shake while swiping horizontally */
    touch-action: pan-x; 
}

/* Ensure the cards inside the Trophy Room don't "squish" */
#current-strains .strain-card {
    flex: 0 0 85%; /* Sets the card width to 85% of the screen */
    scroll-snap-align: center;
    scroll-snap-stop: always;
    transition: transform 0.3s ease;
}

/* Hide the ugly scrollbar for a cleaner look */
#current-strains::-webkit-scrollbar {
    display: none;
}

footer.footer { margin-top: 0 !important; border-top: 1px solid rgba(255,255,255,0.1); }

/* =========================================================
   EMERGENCY GAP & LAYOUT REPAIR (UPDATED)
========================================================= */

/* 1. Fix the Right-Side Cut Off */
@media (min-width: 1024px) {
    .strain-grid > *:first-child,
    #apparel-grid > *:first-child { margin-left: 0 !important; }
    
    .strain-grid > *:last-child,
    #apparel-grid > *:last-child { margin-right: 0 !important; }
    
    .strain-grid { justify-content: flex-start !important; }
}

/* 2. Kill the massive gap below "Our Story" & "Trophy Room" */
#our-story { padding-bottom: 0 !important; }
.gl-strains-section { padding-top: 40px !important; }

/* 3. Pull the Loyalty and Visit sections together */
.section--light {
  padding-top: 40px !important; 
  padding-bottom: 40px !important;
}
.loyalty { margin-bottom: 0 !important; }
.visitgrid { margin-top: 20px !important; }

/* 4. Ensure the black background seamlessly connects */
.section--dtg, .gl-strains-section, #our-story {
  border-bottom: none !important;
  border-top: none !important;
  margin-bottom: 0 !important;
  margin-top: 0 !important;
}

/* =========================================================
   EDUCATION TILES (GREEN LABS GUIDE) FONT REPAIR
========================================================= */
.guideCard .guideCard__title {
    font-family: "Cinzel", serif !important;
    font-size: clamp(32px, 5vw, 52px) !important; /* Scales fluidly from mobile to desktop */
    font-weight: 900 !important;
    line-height: 1.05 !important;
    letter-spacing: 0.02em !important;
    color: #111 !important;
    margin-bottom: 16px !important;
}

/* =========================================================
   RESTORE VERTICAL MOBILE SCROLLING
========================================================= */
.strain-grid, 
#apparel-grid, 
#current-strains, 
.deli-carousel, 
#todays-highlights .thRow {
    touch-action: auto !important; /* Restores normal up/down page scrolling */
    overscroll-behavior-x: contain !important; /* Stops horizontal swipes from shaking the page */
}

.journey-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.journey-step {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.03);
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
}

.step-num {
    font-family: 'Cinzel', serif;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    color: rgba(255,255,255,0.6);
}

.journey-step h4 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #fff;
    line-height: 1;
}

.journey-step p {
    font-size: 13px;
    color: rgba(233,236,235,0.6);
    line-height: 1.5;
    font-weight: 600;
}

.perk-item {
    background: #0b0d0c;
    padding: 30px 20px;
    text-align: center;
}

.perk-item h5 { font-family: 'Cinzel', serif; color: #fff; margin: 10px 0 5px; font-size: 15px; }
.perk-item p { font-size: 12px; color: rgba(255,255,255,0.5); margin: 0; font-weight: 600; }

@media (max-width: 800px) {
    .journey-grid { grid-template-columns: 1fr; }
}

/* =========================================================
   LOYALTY HUB: MOBILE CONDENSE FIX
========================================================= */
.perks-hub-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* Forces 3 columns always */
    gap: 1px;
    background: rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 600px) {
    /* Tightens the tiles for small phone screens */
    .perks-hub-grid .perk-item {
        padding: 15px 5px !important;
    }
    .perks-hub-grid .perk-item h5 {
        font-size: 10px !important;
        white-space: nowrap;
    }
    .perks-hub-grid .perk-item span {
        font-size: 18px !important;
    }
}

/* Tighten the landing spot for the final sections */
#our-story, 
#visit {
    scroll-margin-top: 70px !important; /* This matches the exact height of your header */
}

/* =========================================================
   VISIT SECTION: ONE-LINE SUBTITLE FIX
========================================================= */
#visit .section__sub {
    white-space: nowrap;      /* FORCES text to stay on one line */
    font-size: clamp(10px, 3.8vw, 18px) !important; /* Dynamically shrinks font on small screens */
    overflow: hidden;
    text-overflow: ellipsis;  /* Safety fallback for tiny screens */
    width: 100%;
    display: block;
}

/* =========================================================
   TEMP LOYALTY HUB REPLACEMENT (PENDING APPROVAL)
========================================================= */
/* 1. Hides all the inner HTML (the tiers, perks, and headers) */
#loyalty-hub > * {
    display: none !important;
}

/* 2. Shrinks the massive container into a neat little box */
#loyalty-hub {
    max-width: 500px !important;
    padding: 40px 30px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #0b0d0c !important;
    border: 1px solid rgba(214, 163, 74, 0.3) !important;
}

/* 3. Injects your temporary message */
#loyalty-hub::after {
    content: "🌿 Ask your budtender about our loyalty program to save money on every purchase.";
    display: block;
    color: #D6A34A;
    font-family: 'Cinzel', serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
    letter-spacing: 0.5px;
}

/* =========================================================
   HIGHLIGHTS SCROLL FIX: PREVENT LEFT-SIDE CUTOFF
========================================================= */
.thRow {
    justify-content: flex-start !important; 
    padding-left: 20px !important; /* Gives a nice breathing gap on the left edge */
    padding-right: 20px !important;
}

/* On desktop, if they don't fill the screen, center them safely */
@media (min-width: 1000px) {
    .thRow {
        justify-content: center !important;
        padding-left: 0 !important;
    }
}

/* =========================================================
   HERO 3-TILE SPREAD FIX
========================================================= */
.diff {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; /* Forces exactly 3 equal columns */
    gap: 20px !important;
    grid-column: 1 / -1 !important; /* The Magic Bullet: Forces this container to span 100% of the screen width */
    margin-top: 30px; /* Gives it breathing room below the Hero image */
}

/* Make sure they stack cleanly on mobile instead of squishing */
@media (max-width: 800px) {
    .diff {
        grid-template-columns: 1fr !important; 
    }
}

/* =========================================================
   THE BULLETPROOF SCROLL FIX: ZERO LEFT-SIDE CUTOFF
========================================================= */
.thRow {
    display: flex !important;
    flex-wrap: nowrap !important; /* Forces a single horizontal line */
    justify-content: flex-start !important; /* Hard anchor to the left edge */
    overflow-x: auto !important; /* Enables the side-scrolling */
    width: 100% !important;
    max-width: 100vw !important; /* Stops the row from becoming wider than your monitor */
    padding-left: 20px !important;
    padding-right: 20px !important;
    margin-left: 0 !important; /* Kills any rogue centering margins */
    -webkit-overflow-scrolling: touch !important; /* Makes it buttery smooth on iPhones */
}

/* Tells the mini tiles: "Do not shrink, do not stretch!" */
#todays-highlights .thMini {
    flex: 0 0 auto !important; 
}

/* =========================================================
   UNIFY HERO & PILLAR CARDS (SEAMLESS LOOK)
========================================================= */
/* 1. Kill the gap and green border under the Hero image */
.section--hero {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
    border-bottom: none !important; /* Erases that green dividing line */
}

/* 2. Pull Pillars up flush, and add the missing space BELOW them */
.pillars {
    margin-top: 0 !important; /* Kills the empty space above the cards */
    padding-top: 20px !important; /* Just a tiny bit of breathing room from the image */
    padding-bottom: 80px !important; /* Pushes the 'Today's Highlights' section safely down */
    margin-bottom: 0 !important;
}
