/* ============================================================
   FONTS — self-hosted (Latin subset pulled from the live site)
   ============================================================ */
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 300; font-display: swap; src: url('../assets/fonts/poppins-300.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/poppins-400.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: italic; font-weight: 400; font-display: swap; src: url('../assets/fonts/poppins-400italic.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 500; font-display: swap; src: url('../assets/fonts/poppins-500.woff2') format('woff2'); }
@font-face { font-family: 'Poppins'; font-style: normal; font-weight: 600; font-display: swap; src: url('../assets/fonts/poppins-600.woff2') format('woff2'); }
@font-face { font-family: 'Montserrat'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/montserrat-400.woff2') format('woff2'); }
@font-face { font-family: 'Roboto'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/roboto-400.woff2') format('woff2'); }
@font-face { font-family: 'Nanum Gothic'; font-style: normal; font-weight: 400; font-display: swap; src: url('../assets/fonts/nanumgothic-400.woff2') format('woff2'); }

/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  /* palette (sampled from shopcarolinabud.com) */
  --color-bg: #0F0B16;
  --color-surface: rgba(15, 11, 22, 0.78);
  --color-card: #17121F;
  --gold: #D3B574;
  --gold-hover: #c2a25f;
  --gold-muted: #C4AC64;
  --gold-glow: rgba(196, 172, 100, 0.41);
  --green-accent: #8CA66F;
  --text: #C4C4C4;
  --text-bright: #EEEEEE;
  --text-warm-white: #FEF8EE;
  --text-dim: #DADADA;
  --btn-text-dark: #161616;
  --border-light: #C4C4C4;
  --white: #FFFFFF;

  /* type */
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Poppins', sans-serif;
  --font-nav: 'Montserrat', sans-serif;
  --font-accent: 'Montserrat', sans-serif;
  --font-address: 'Roboto', sans-serif;
  --font-display: 'Nanum Gothic', 'Poppins', sans-serif;

  /* layout */
  --content-max: 1140px;
  --header-max: 1200px;
  --header-h: 136px;
  --radius-btn: 8px;
  --radius-pill: 60px;
  --radius-card: 10px;
}

/* ============================================================
   RESET / BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--color-bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font: inherit; color: inherit; background: none; border: none; cursor: pointer; }
ul { list-style: none; }
:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 600; line-height: 1.2; color: var(--text-bright); }

.container { width: 100%; max-width: var(--content-max); margin: 0 auto; padding: 0 20px; }

.section { padding: 64px 0; }
[id] { scroll-margin-top: calc(var(--header-h) + 12px); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 400;
  padding: 15px 30px;
  border-radius: var(--radius-btn);
  transition: background-color .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold { background: var(--gold); color: var(--btn-text-dark); }
.btn--gold:hover { background: var(--gold-hover); }
.btn--outline { background: transparent; color: var(--text); border: 3px solid var(--border-light); }
.btn--outline:hover { background: var(--text); color: var(--color-bg); }
.btn .arrow { font-size: 1.05em; line-height: 1; }

/* ============================================================
   HEADER / NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  min-height: var(--header-h);
  background: transparent;
  transition: background-color .3s ease, box-shadow .3s ease;
}
/* header stays transparent at all scroll positions, matching the live site */
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: var(--header-max);
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { width: auto; height: 124px; }

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-bright);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.primary-nav { display: none; }

.nav-list { display: flex; align-items: center; gap: 8px; }
.nav-item { position: relative; }
.nav-link {
  display: inline-block;
  font-family: var(--font-nav);
  font-size: 1rem;
  text-transform: capitalize;
  color: var(--text);
  padding: 10px 14px;
  transition: color .2s ease;
}
.nav-link:hover, .nav-link:focus-visible { color: var(--white); }
.nav-link[aria-current="page"] { color: var(--gold); }

.sub-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
}
.sub-toggle svg { width: 14px; height: 14px; fill: currentColor; transition: transform .25s ease; }

.sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: rgba(15, 11, 22, 0.97);
  border: 1px solid rgba(196, 172, 100, 0.25);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s;
}
.nav-item.has-sub:hover .sub-menu,
.nav-item.has-sub:focus-within .sub-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.sub-menu a {
  font-family: var(--font-nav);
  font-size: 0.95rem;
  color: var(--text);
  padding: 10px 14px;
  border-radius: 6px;
  transition: background-color .2s ease, color .2s ease;
}
.sub-menu a:hover, .sub-menu a:focus-visible { background: rgba(196, 172, 100, 0.14); color: var(--white); }

.header-cta { display: none; flex-shrink: 0; }

/* ---- Header actions (hamburger only) — visible below 1025px ---- */
.header-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }

/* hamburger animates into an X while the menu is open */
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ---- Mobile / tablet nav dropdown (< 1025px) — matches the live site ---- */
.mobile-nav {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-h);
  z-index: 1200;
  margin-top: 8px;
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(196, 196, 196, 0.29);
  border-radius: 25px;
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
  max-height: calc(100vh - var(--header-h) - 24px);
  overflow-y: auto;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity .22s ease, transform .22s ease;
}
.mobile-nav[hidden] { display: none; }
.mobile-nav.is-open { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav { transition: none; }
}
.mobile-nav__list, .mobile-nav__sub { list-style: none; margin: 0; padding: 0; }

.mobile-nav a,
.mobile-nav .mnav-caret {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-nav);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  text-transform: capitalize;
  color: var(--text);
  padding: 24px 10px;
  transition: color .2s ease;
}
.mobile-nav a:hover,
.mobile-nav a:focus-visible { color: var(--white); }
.mobile-nav a[aria-current="page"] { color: var(--gold); }

.mnav-row { display: flex; align-items: center; justify-content: center; }
.mnav-row a { padding-right: 4px; }
.mnav-caret {
  padding: 24px 6px 24px 0;
  color: var(--gold);
}
.mnav-caret svg { width: 16px; height: 16px; fill: currentColor; transition: transform .25s ease; }
.mnav-caret[aria-expanded="true"] svg { transform: rotate(180deg); }

.mobile-nav__sub {
  background: rgba(0, 0, 0, 0.85);
  border: 1px solid rgba(196, 196, 196, 0.29);
  border-radius: 25px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height .25s ease, opacity .2s ease;
}
.mobile-nav__sub[hidden] { display: none; }
.mobile-nav__sub.is-open { max-height: 600px; opacity: 1; }
@media (prefers-reduced-motion: reduce) {
  .mobile-nav__sub { transition: none; }
}

body.no-scroll, body.loader-active { overflow: hidden; }

/* ============================================================
   PAGE LOADER — brief brand splash shown on every page load
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: var(--color-bg);
  transition: opacity .5s ease;
}
.page-loader[hidden] { display: none; }
.page-loader.is-hiding { opacity: 0; pointer-events: none; }
.page-loader__logo {
  width: clamp(220px, 65vw, 360px);
  height: clamp(220px, 65vw, 360px);
  object-fit: contain;
  animation: loader-logo-in .6s ease both;
}
.page-loader__text {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.75rem, 7vw, 3.1875rem);
  letter-spacing: 0.06em;
  color: var(--gold);
  min-height: 1.4em;
  text-align: center;
  padding: 0 20px;
}
.page-loader__text:not(:empty)::after {
  content: '';
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 2px;
  background: currentColor;
  vertical-align: -0.15em;
  animation: loader-caret .8s steps(1) infinite;
}
.page-loader.is-done .page-loader__text::after { display: none; }
@keyframes loader-logo-in {
  from { opacity: 0; transform: scale(.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes loader-caret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .page-loader { display: none !important; }
}

/* ============================================================
   AGE VERIFICATION MODAL
   ============================================================ */
.age-gate {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.age-gate[hidden] { display: none; }
.age-gate__box {
  background: var(--color-bg);
  width: 100%;
  max-width: 845px;
  padding: 56px 44px;
  text-align: center;
}
.age-gate__title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(2rem, 7vw, 3.375rem);
  letter-spacing: 0.75px;
  text-transform: uppercase;
  color: var(--text-warm-white);
}
.age-gate__rule {
  width: 80px;
  height: 1px;
  background: var(--text);
  border: 0;
  margin: 26px auto;
}
.age-gate__text {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: clamp(1.1rem, 3.4vw, 1.5625rem);
  line-height: 1.5;
  color: var(--text-dim);
  max-width: 34ch;
  margin: 0 auto 32px;
}
.age-gate__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.age-gate__note {
  margin-top: 22px;
  font-size: 0.95rem;
  color: var(--gold-muted);
  min-height: 1.2em;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-h);
  background-image: url('../assets/images/cropped-CBDLogo.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
/* Background video — plays on all screen sizes (mobile/tablet included) */
.hero__video {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-bg);
  opacity: 0.37;
  z-index: 1;
}
.hero > .container { position: relative; z-index: 2; }

.hero__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding-top: 8px;
  padding-bottom: 24px;
}

.hero__title {
  font-weight: 600;
  font-size: clamp(2.5rem, 8vw, 4.1875rem);
  line-height: 1.02;
  text-transform: uppercase;
  color: var(--text-bright);
}
.hero__subtitle {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.3rem, 4.4vw, 2.1875rem);
  line-height: 1.1;
  color: var(--text);
  margin-top: 20px;
  max-width: 30ch;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}
.hero__actions .btn { flex: 1 1 auto; }
/* the mobile/tablet CTA pair is revealed only below 1025px */
.hero__actions--mobile { display: none; }
.hero__area {
  margin-top: 34px;
  font-family: var(--font-heading);
  font-size: clamp(1rem, 3.2vw, 1.1875rem);
  color: var(--text);
}

/* ---- Hero bottom bars (Strain of the Week + Daily Special) ---- */
.hero__bars { position: relative; z-index: 2; }
.hero-bars {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-bottom: 64px;
}
.info-bar {
  background: var(--color-surface);
  border: 1px solid rgba(196, 172, 100, 0.21);
  box-shadow: 0 0 4px 0 var(--gold-glow);
  border-radius: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.info-bar__label {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: clamp(1.05rem, 3.4vw, 1.625rem);
  text-transform: uppercase;
  color: var(--text);
  white-space: nowrap;
}
.strain-bar .strain-value {
  font-family: var(--font-accent);
  font-size: clamp(1.1rem, 3.6vw, 1.5625rem);
  color: var(--gold-muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.strain-bar a.strain-value:hover,
.strain-bar a.strain-value:focus-visible { text-decoration: underline; }

.special-bar { position: relative; flex-direction: column; align-items: center; gap: 6px; }
.special-bar .info-bar__label { align-self: center; }
.special-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}
.special-bar .special-viewport {
  flex: 1 1 auto;
  min-width: 120px;
  position: relative;
  min-height: 2.6em;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.special-day { line-height: 1.25; }
.special-offer { line-height: 1.3; }
.special-slide__link {
  display: contents;               /* invisible for layout — .special-slide's own flex rules apply */
  cursor: pointer;
}
.special-slide__link:hover .special-day,
.special-slide__link:focus-visible .special-day { text-decoration: underline; }
.special-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease;
  pointer-events: none;
}
/* the active slide sits in flow so the bar is only as tall as its content */
.special-slide.is-active { position: relative; opacity: 1; visibility: visible; pointer-events: auto; }
.special-day {
  font-family: var(--font-accent);
  font-size: clamp(1.05rem, 3.4vw, 1.5625rem);
  color: var(--gold-muted);
}
.special-offer {
  font-size: clamp(0.95rem, 2.8vw, 1.0625rem);
  color: var(--text);
  margin-top: 2px;
}
.special-nav {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  border-radius: 50%;
  flex-shrink: 0;
  transition: color .2s ease, background-color .2s ease;
}
.special-nav:hover { color: var(--white); background: rgba(255, 255, 255, 0.08); }

/* ============================================================
   HOW DO YOU PARTAKE (product categories)
   ============================================================ */
.partake { padding: 28px 0 52px; }
.section-title {
  text-align: center;
  font-weight: 600;
  font-size: clamp(1.8rem, 5.5vw, 2.1875rem);
  color: var(--white);
  margin-bottom: 32px;
}
.partake .section-title { text-transform: uppercase; }
.category-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 0 20px;
}
.category-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  border: 1px solid var(--gold-muted);
  border-radius: 20px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  transition: transform .25s ease;
}
.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6, 4, 10, 0.42);
  transition: background-color .25s ease;
}
.category-card:hover { transform: translateY(-4px); }
.category-card:hover::after { background: rgba(6, 4, 10, 0.28); }
.category-card span {
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1875rem;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}
.cat-flower { background-image: url('../assets/images/Delta8Product2.jpg'); }
.cat-snackies { background-image: url('../assets/images/SnackiesProduct.jpg'); }
.cat-vapes { background-image: url('../assets/images/Vapies.jpg'); }
.cat-concentrates { background-image: url('../assets/images/DiamondsCannaCake.png'); }
.cat-beverages { background-image: url('../assets/images/Moonwater-Fizzy-Fruit-Punch.png'); }

/* ============================================================
   GOOGLE REVIEWS (Narcs) — testimonial carousel
   ============================================================ */
.reviews { padding: 40px 0 48px; }
.reviews .section-title {
  text-align: right;
  color: var(--text);
  font-size: 35px;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  padding: 10px 0;
}
.reviews__carousel {
  padding: 10px;
  min-height: 510px;
  /* half-leaf watermark, dimmed 50% by a page-colour wash on top */
  background:
    linear-gradient(rgba(15, 11, 22, 0.5), rgba(15, 11, 22, 0.5)),
    url('../assets/images/HalfLogo.png') left top / auto no-repeat;
}
.reviews-carousel {
  position: relative;
  max-width: var(--content-max);
  margin: 0 auto;
}
.reviews-viewport {
  overflow: hidden;
  padding-bottom: 40px;
}
.reviews-track {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  will-change: transform;
}
.reviews-track.is-animating { transition: transform 500ms ease; }
.review-card {
  flex: 0 0 100%;
  min-width: 0;
  box-sizing: border-box;
  padding: 20px;
  text-align: center;
}
.review-card__quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--text);
  margin: 0;
}
.review-card__person {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 25px;
}
.review-card__person img {
  width: 50px;
  height: 50px;
  border-radius: 999px;
  object-fit: cover;
  flex-shrink: 0;
}
.review-card__meta {
  display: flex;
  flex-direction: column;
  text-align: left;
  margin-left: 20px;
  font-size: 14px;
  font-style: normal;
  line-height: 1.5;
}
.review-card__name { font-weight: 700; color: var(--gold-muted); }
.review-card__role { font-weight: 400; color: var(--text); }
.reviews-arrow {
  position: absolute;
  top: 50%;
  margin-top: -20px;
  transform: translateY(-50%);
  width: 23px;
  height: 23px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: none;
  color: var(--text);
  font-size: 30px;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
  -webkit-tap-highlight-color: transparent;
}
.reviews-arrow:hover { color: var(--white); }
.reviews-arrow--prev { left: 10px; }
.reviews-arrow--next { right: 10px; }
.reviews-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.reviews-dot {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(196, 172, 100, 0);
  cursor: pointer;
}
.reviews-dot.is-active { background: #000; }

/* 3-up on desktop, matching the live Swiper breakpoint (1024) */
@media (min-width: 1024px) {
  .review-card { flex-basis: calc((100% - 20px) / 3); }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { padding: 40px 0 64px; }
.about__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}
.about__title {
  font-weight: 400;
  font-size: clamp(1.8rem, 5.5vw, 2.1875rem);
  color: var(--text);
}
.about__rule {
  width: 130px;
  height: 2px;
  background: var(--gold-muted);
  border: 0;
  margin: 22px 0 30px;
}
.about__body p { margin-bottom: 20px; font-size: 1.0625rem; line-height: 1.7; color: var(--text); }
.about__body p:last-child { margin-bottom: 0; }
.about__cta { margin-top: 30px; }
.about__photo img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 12px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { padding: 64px 0 0; }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
.footer__heading {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.25rem;
  letter-spacing: normal;
  text-transform: uppercase;
  color: var(--gold-muted);
  margin-bottom: 12px;
}
.footer__block { margin-bottom: 34px; }
.footer__block :where(p, address) {
  font-family: var(--font-address);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
}
.footer__block a:hover { color: var(--gold-muted); }

.newsletter__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(1.6rem, 5vw, 2.1875rem);
  color: var(--gold-muted);
  margin-bottom: 16px;
}
.newsletter__copy { font-size: 1rem; color: var(--text); margin-bottom: 22px; max-width: 42ch; }
.newsletter__form {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(196, 196, 196, 0.4);
  padding-bottom: 10px;
  max-width: 460px;
}
.newsletter__form input[type="email"] {
  flex: 1;
  min-width: 160px;
  background: transparent;
  border: 0;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 10px 4px;
}
.newsletter__form input[type="email"]::placeholder { color: var(--text); opacity: 0.75; }
.newsletter__form input[type="email"]:focus-visible { outline: none; }
.newsletter__submit {
  font-family: var(--font-nav);
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-muted);
  border: 2px solid var(--gold-muted);
  border-radius: 15px;
  padding: 12px 28px;
  transition: background-color .2s ease, color .2s ease;
}
.newsletter__submit:hover { background: var(--gold-muted); color: var(--btn-text-dark); }
.newsletter__status { margin-top: 12px; font-size: 0.95rem; color: var(--gold-muted); min-height: 1.2em; }

.footer__logo { display: flex; justify-content: center; }
.footer__logo img { max-width: 420px; width: 100%; height: auto; }

.footer__bar {
  margin-top: 56px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
}
.footer__bar p { font-size: 1rem; color: #686868; }
.footer__bar a { color: var(--gold-muted); }
.footer__bar a:hover { color: var(--white); }

/* ============================================================
   TABLET  (>= 768px)
   ============================================================ */
@media (min-width: 768px) {
  .container { padding: 0 32px; }

  /* hero content becomes a left-anchored column, matching the live site (35vw) */
  .hero__content {
    width: clamp(340px, 35vw, 620px);
    max-width: none;
    margin: 0;
    padding-left: 40px;
    padding-right: 0;
  }
  .hero__actions { margin-top: 40px; }
  .hero__actions .btn { flex: 0 0 auto; }

  /* categories: single centred column on tablet (70vw), matching the live site */
  .category-grid { max-width: 70vw; margin-left: auto; margin-right: auto; padding: 0; }
  .category-card { min-height: 200px; }

  .about__grid { grid-template-columns: 1fr 1.04fr; gap: 48px; align-items: center; }

  .footer__grid { grid-template-columns: 1.1fr 0.9fr; gap: 56px; }
  .footer__bar { flex-direction: row; justify-content: space-between; text-align: left; }
}

/* ============================================================
   DESKTOP  (>= 1280px)
   ============================================================ */
/* ============================================================
   DESKTOP  (>= 1025px)  — Elementor's tablet breakpoint is 1024
   ============================================================ */
@media (min-width: 1025px) {
  :root { --header-h: 188px; }
  .brand img { height: 178px; }

  /* horizontal nav takes over; hamburger dropdown + phone button retire */
  .nav-toggle { display: none; }
  .primary-nav { display: block; }
  .header-cta { display: inline-flex; }
  .header-actions { display: none; }
  .mobile-nav { display: none; }

  .hero__actions { margin-top: 44px; }

  /* edge-anchored info bars, matching the live site */
  .hero__bars { max-width: none; padding: 0; }
  .hero-bars {
    flex-direction: row;
    justify-content: space-between;
    gap: 0;
    align-items: flex-end;
    padding-bottom: 112px;
  }
  .info-bar { flex: 0 1 auto; width: min(47vw, 745px); padding: 18px 40px; }
  .strain-bar {
    border-left: 0;
    border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
    padding-left: clamp(40px, 6vw, 90px);
  }
  .special-bar {
    flex-direction: row;
    align-items: center;
    gap: 18px;
    border-right: 0;
    border-radius: var(--radius-pill) 0 0 var(--radius-pill);
    padding-right: clamp(40px, 6vw, 90px);
  }
  .special-bar .info-bar__label { align-self: center; }
  .special-controls { width: auto; flex: 1 1 auto; }
  .special-bar .special-viewport { min-height: 0; }

  /* full-bleed 5-up category row, matching the live site */
  .category-grid {
    flex-direction: row;
    gap: 74px;
    max-width: none;
    margin: 0;
    padding: 0 20px;
  }
  .category-card { flex: 1 1 0; min-height: 200px; }
}

/* ============================================================
   MOBILE + TABLET HERO  (< 1025px)
   Mirrors the live site's dedicated mobile hero section:
   centred title, no subtitle / locations / inline CTAs,
   borderless strain + special text, and a stacked CTA pair
   ("Shop Delta and More" + phone) below the specials.
   ============================================================ */
@media (max-width: 1024px) {
  /* centred content column */
  .hero__content {
    width: 100%;
    max-width: var(--content-max);
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    align-items: center;
    text-align: center;
  }
  .hero__title {
    text-align: center;
    font-size: clamp(2.9375rem, 11vw, 4.25rem);
    line-height: 1.05;
  }
  /* hidden below 1025, exactly like the live site */
  .hero__subtitle,
  .hero__area,
  .hero__actions--desktop { display: none; }

  /* strain + special: plain centred text, no pill / border / shadow */
  .hero__bars { max-width: var(--content-max); margin: 0 auto; }
  .hero-bars { gap: 22px; padding-bottom: 44px; }
  .info-bar {
    background: none;
    border: 0;
    box-shadow: none;
    border-radius: 0;
    padding: 6px 0;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    text-align: center;
  }
  .info-bar__label {
    font-size: clamp(1.375rem, 6vw, 1.5625rem);   /* ~22–25px */
    line-height: 1.2;
    font-weight: 500;
    white-space: normal;
  }
  .strain-bar .strain-value {
    font-family: var(--font-heading);
    font-weight: 300;
    font-size: clamp(1.25rem, 5.4vw, 1.4375rem);  /* ~20–23px */
  }

  .special-bar { gap: 6px; }
  .special-controls { width: 100%; gap: 4px; }
  .special-bar .special-viewport { min-height: 3em; }
  .special-day {
    font-family: var(--font-nav);
    font-weight: 400;
    font-size: clamp(1.125rem, 5vw, 1.25rem);     /* ~18–20px */
    text-transform: capitalize;
  }
  .special-offer { font-size: clamp(1rem, 4.4vw, 1.0625rem); margin-top: 4px; }
  .special-nav { width: 28px; height: 28px; font-size: 1.625rem; border-radius: 0; }
  .special-nav:hover { background: none; }

  /* side-by-side gold CTA pair under the specials */
  .hero__actions--mobile {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
  }
  .hero__actions--mobile .btn {
    flex: 1 1 auto;
    padding: 15px 20px;
    font-size: 0.8125rem;
  }
}

/* ============================================================
   SCROLL REVEAL — fade + rise in on scroll, applied by main.js
   via IntersectionObserver to .reveal-init elements
   ============================================================ */
.reveal-init {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.22,.61,.36,1), transform .7s cubic-bezier(.22,.61,.36,1);
  will-change: opacity, transform;
}
.reveal-init.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; }
  .hero__video { display: none !important; }
  .reveal-init { opacity: 1 !important; transform: none !important; }
}

/* ============================================================
   INTERIOR PAGES  (products / about / contact / catalog)
   ============================================================ */
.page-main { padding-top: var(--header-h); }

/* --- slim page hero --- */
.page-hero {
  text-align: center;
  padding: 48px 0 8px;
}
.page-hero__title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(2.5rem, 7vw, 3.5rem);
  line-height: 1.1;
  color: var(--text-bright);
}
.page-hero__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: clamp(1rem, 3.2vw, 1.25rem);
  color: var(--text);
  margin-top: 10px;
}

/* --- generic content section --- */
.section { padding: 40px 0 56px; }
.section--tight { padding: 24px 0 32px; }

/* ============================================================
   FLOWER PAGE  (flower.html)
   Type sizes / colours / spacing matched to the live
   shopcarolinabud.com/flower/ Elementor layout.
   ============================================================ */

/* --- per-tier block (Snow Caps / Exotic / Select / Budget) --- */
.tier { padding: 48px 0 8px; text-align: center; }
.tier__title {
  font-family: var(--font-heading);
  font-weight: 400;                          /* live: Poppins 400 */
  font-size: clamp(2.25rem, 6vw, 3.375rem);  /* live: 54px */
  line-height: 1;
  color: #fff;
}
.tier__tagline {
  font-family: var(--font-body);
  font-style: italic;
  font-size: 1.125rem;                        /* live: 18px */
  color: #fff;
  margin-top: 12px;
}
.tier__rule {
  border: 0;
  border-top: 1px solid rgba(196, 196, 196, 0.18);
  max-width: var(--content-max);
  margin: 48px auto 0;
}

/* --- floating "call us" button (product pages, mobile/tablet only — hidden
       at >=1025px). Replaces the per-tier CTA and the old header phone button.
       Jiggles for ~0.5s at the start of every 5s cycle. --- */
.call-fab {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;                                /* under header (1000) / mobile-nav (1200) / age-gate (2000) */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--btn-text-dark);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.45);
  animation: call-fab-jiggle 5s ease-in-out infinite;
  transition: background-color 0.2s ease;
}
.call-fab svg { width: 26px; height: 26px; fill: currentColor; }
.call-fab:hover { background: var(--gold-hover); }
.call-fab:focus-visible { outline: 2px solid var(--text-bright); outline-offset: 3px; }
@keyframes call-fab-jiggle {
  0%, 14%, 100% { transform: rotate(0); }
  2%  { transform: rotate(-15deg); }
  4%  { transform: rotate(12deg); }
  6%  { transform: rotate(-9deg); }
  8%  { transform: rotate(6deg); }
  10% { transform: rotate(-4deg); }
  12% { transform: rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .call-fab { animation: none; }
}

/* --- pricing table (5 sizes over 5 prices) --- */
.pricing { margin: 40px 0 44px; }
.pricing__label {
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(1.75rem, 4.5vw, 2.1875rem); /* live: 35px */
  color: #fff;
  margin-bottom: 30px;
}
.pricing__row {                               /* mobile/tablet: one row per size, gram — bar — price */
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: var(--content-max);
  margin: 0 auto;
}
.pricing__cell {                              /* size — leader bar — price, in one line */
  display: flex;
  align-items: center;
  gap: 20px;
}
.pricing__size {
  flex: 0 0 auto;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
}
.pricing__bar {                               /* gold leader line pointing at the price (mobile/tablet only) */
  flex: 1 1 auto;
  height: 1px;
  background: var(--gold-muted);
}
.pricing__price {
  flex: 0 0 auto;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
}

/* desktop: live site breaks each cell — size (underlined) over price,
   5 across — instead of the mobile/tablet single-line row */
@media (min-width: 1025px) {
  .pricing__row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 20px;
  }
  .pricing__cell {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .pricing__size {
    text-align: center;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gold-muted);
  }
  .pricing__bar { display: none; }
  .pricing__price {
    text-align: center;
    padding-top: 10px;
  }
}

/* --- strain rows (one .strain per product) --- */
.strains { display: flex; flex-direction: column; gap: 20px; margin: 40px 0 8px; }
.strain {
  display: grid;
  grid-template-columns: 1fr;                 /* mobile: stacked, centred */
  justify-items: center;
  align-items: center;
  gap: 14px;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  min-height: 175px;
}
.strain__img {
  width: 175px;                               /* live: 175 x 175 */
  height: 175px;
  object-fit: contain;
}
.strain__body { text-align: center; }
.strain__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.1875rem);  /* live: 35px */
  color: #598A4A;                             /* live strain-name green */
  line-height: 1;
}
.strain__type {                               /* e.g. "Sativa" / "Hybrid 50/50" */
  margin-top: 16px;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
}
.strain__thc {                                /* e.g. "Creative &ndash; 32.57%" */
  margin-top: 8px;
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
}

/* --- vapes: stacked & centred column at every width (not flower's 2-col
       desktop row), with a slightly larger product photo --- */
.strains--centered .strain__img { width: 210px; height: 210px; }

/* ============================================================
   EDIBLES — center-focus product carousel (one per brand)
   Loops via clone slides (same technique as .reviews-carousel);
   the active slide is centred in the viewport at full size/opacity,
   its immediate neighbours peek in at each side, scaled down and
   faded to fake depth. Arrows always show — dragging/swiping works
   on every breakpoint via Pointer Events.
   ============================================================ */
/* full-bleed: break out of .container so neighbour slides can run to
   the true edge of the screen and fade out there, instead of being
   hard-clipped by the normal content-max width */
.pcarousel {
  position: relative;
  left: 50%;
  width: 100vw;
  margin: 40px 0 8px -50vw;
}
.pcarousel__viewport {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  -webkit-mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
          mask-image: linear-gradient(to right, transparent, #000 60px, #000 calc(100% - 60px), transparent);
}
.pcarousel__viewport:active { cursor: grabbing; }
.pcarousel__track {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  will-change: transform;
}
.pcarousel__track.is-animating { transition: transform 450ms ease; }
.pcarousel__slide {
  flex: 0 0 84vw;                             /* fixed-ish slot size — independent of the      */
  max-width: 320px;                           /* full-bleed .pcarousel width, so neighbour cards */
  min-width: 0;                               /* stay close-peeking instead of spreading out    */
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  padding: 6px 0;
  opacity: .35;
  transform: scale(.86);
  transition: opacity .45s ease, transform .45s ease;
  pointer-events: none;
}
.pcarousel__slide.is-center { opacity: 1; transform: scale(1); pointer-events: auto; }
.pcarousel__slide.is-neighbor { opacity: .5; transform: scale(.9); }
.pcarousel__slide .strain {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: min(84vw, 300px);
  max-width: 300px;
  margin: 0;
  min-height: 0;
  gap: 0;
}
.pcarousel__slide .strain__img {
  width: auto;
  height: auto;
  max-width: 220px;                           /* edibles photos run larger than flower thumbs */
  max-height: 220px;
}
.pcarousel__slide .strain__body { text-align: center; padding-left: 0; }

.pcarousel-arrow[hidden] { display: none; }   /* a single-product carousel hides its arrows via JS */
.pcarousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--gold-muted);
  background: rgba(15, 11, 22, 0.7);
  color: var(--gold);
  font-size: 1.375rem;
  line-height: 1;
  cursor: pointer;
  z-index: 3;
  padding: 0;
  transition: background-color .2s ease, color .2s ease;
  -webkit-tap-highlight-color: transparent;
}
.pcarousel-arrow:hover { background: var(--gold); color: var(--btn-text-dark); }
.pcarousel-arrow--prev { left: 10px; }
.pcarousel-arrow--next { right: 10px; }

@media (min-width: 768px) {
  .pcarousel__slide { flex-basis: 340px; max-width: 340px; }
  .pcarousel-arrow--prev { left: 20px; }
  .pcarousel-arrow--next { right: 20px; }
}
@media (min-width: 1025px) {
  .pcarousel__slide { flex-basis: 360px; max-width: 360px; }
  .pcarousel-arrow { width: 52px; height: 52px; font-size: 1.75rem; }
  .pcarousel-arrow--prev { left: 32px; }
  .pcarousel-arrow--next { right: 32px; }
}

.strain__desc {
  margin: 16px auto 0;
  max-width: 760px;
  font-family: var(--font-body);
  font-size: 1rem;                            /* live: 16px */
  line-height: 1.65;
  color: var(--text);                         /* live: #C4C4C4 */
}
.strain__buy {                                /* one size over its price, gold underline — same look as .pricing__cell */
  display: inline-flex;
  flex-direction: column;
  margin-top: 24px;
  min-width: 220px;
}
.strain__buy .strain__size {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gold-muted);
}
.strain__buy .strain__price {
  font-family: var(--font-nav);
  font-size: 1rem;
  color: #fff;
  padding-top: 10px;
}

/* --- beverages: two prices side by side (Single / 4 Pack) instead of one --- */
.strain__buy-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
}
.strain__buy-row .strain__buy { margin-top: 0; }

/* --- product grid (edibles / vapes / concentrates / beverages) --- */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 720px;
  margin: 36px auto 0;
}
.product-card { text-align: center; }
.product-card__img {
  width: 100%;
  max-width: 260px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.6vw, 1.375rem);
  color: var(--green-accent);
  line-height: 1.3;
}
.product-card__desc {
  margin-top: 8px;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.5;
}
.product-card__price {
  margin-top: 8px;
  font-family: var(--font-nav);
  color: var(--gold-muted);
  font-size: 1.0625rem;
}

/* --- category hub (products page) --- */
/* --- products page: "How Do You Partake?" hub — exact clone of the live /products/ layout --- */
.cat-hub {
  min-height: 768px;
  padding: 42px 0;
  display: flex;
}
.cat-hub__box {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 53px;
  padding: 10px;
  border: 1px solid var(--gold-muted);
  border-radius: 30px;
}
.cat-hub .section-title {
  font-size: 35px;
  line-height: 35px;
  text-transform: none;
  margin: 0;
}
.cat-hub .category-grid { gap: 18px; padding: 0; }
.cat-hub .category-card span { font-size: 25px; text-transform: none; text-shadow: none; }
.cat-hub .category-card::after { background: rgba(15, 11, 22, 0.5); }
.cat-hub .category-card:hover::after { background: rgba(15, 11, 22, 0.36); }
@media (min-width: 768px) {
  .cat-hub .category-grid { max-width: 70vw; margin-left: auto; margin-right: auto; }
}
@media (min-width: 1025px) {
  .cat-hub .category-grid { flex-direction: row; gap: 74px; max-width: none; margin: 0; padding: 10px; }
  .cat-hub .category-card { flex: 1 1 0; height: 200px; }
}

/* --- info block pair (about / contact) --- */
.info-cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 640px;
  margin: 8px auto 0;
  text-align: center;
}
.info-cols h2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.25rem;
  text-transform: uppercase;
  color: var(--gold-muted);
  letter-spacing: .04em;
}
.info-cols p, .info-cols address {
  margin-top: 8px;
  font-style: normal;
  color: var(--text);
  line-height: 1.6;
}
.info-cols a { color: var(--gold-muted); }

/* --- contact form --- */
.contact-form {
  max-width: 560px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form label { font-family: var(--font-nav); font-size: .9rem; color: var(--text); }
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--color-surface);
  border: 1px solid rgba(196, 172, 100, 0.28);
  border-radius: 10px;
  color: var(--text-bright);
  font-family: var(--font-body);
  font-size: 1rem;
}
.contact-form textarea { min-height: 150px; resize: vertical; }
.contact-form input:focus,
.contact-form textarea:focus { outline: 2px solid var(--gold); outline-offset: 1px; }
.contact-form__submit {
  align-self: flex-start;
  background: var(--gold);
  color: var(--btn-text-dark);
  border-radius: var(--radius-btn);
  padding: 14px 34px;
  font-family: var(--font-nav);
}
.contact-form__submit:hover { background: var(--gold-hover); }
.contact-form__status { font-size: .95rem; color: var(--gold-muted); }

@media (min-width: 768px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); max-width: var(--content-max); gap: 44px 32px; }
  .info-cols { grid-template-columns: 1fr 1fr; text-align: left; max-width: var(--content-max); }
  .contact-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
}
@media (min-width: 1025px) {
  .page-hero { padding-top: 64px; }
  .tier { padding: 56px 0 8px; }
  /* live: two equal columns — image centred in the left half, text left-aligned in the right half */
  .strain {
    grid-template-columns: 1fr 1fr;
    justify-items: stretch;
    gap: 0;
    min-height: 215px;
  }
  .strain__img { justify-self: center; }
  .strain__body { text-align: left; padding-left: 20px; }
  /* vapes: stay a single centred column instead of flower's 2-col row */
  .strains--centered .strain { grid-template-columns: 1fr; justify-items: center; gap: 14px; min-height: 0; }
  .strains--centered .strain__body { text-align: center; padding-left: 0; }
  .call-fab { display: none; }   /* mobile-only call affordance */
}
