@import url("https://fonts.googleapis.com/css2?family=Orbitron:wght@500;700;800&family=Rajdhani:wght@400;500;700&display=swap");

/* Futuristic blue/red/yellow neon accents */
.neon-border {
  position: relative;
  overflow: hidden;
}

.neon-border::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(130deg, rgba(59, 130, 246, 0.75), rgba(239, 68, 68, 0.7), rgba(250, 204, 21, 0.65));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
}

/* Rotating spinGlow removed */

.muted-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: linear-gradient(160deg, rgba(17, 26, 47, 0.85), rgba(15, 23, 42, 0.85));
  box-shadow: inset 0 0 18px rgba(59, 130, 246, 0.08), 0 0 24px rgba(239, 68, 68, 0.08);
}

.tag {
  border: 1px solid rgba(76, 175, 80, 0.55);
  background: rgba(76, 175, 80, 0.12);
  color: #000000;
  border-radius: 999px;
  padding: 0.24rem 0.6rem;
  font-size: 0.8rem;
  font-family: "Orbitron", "Rajdhani", sans-serif;
}

h1,
h2,
h3,
h4,
.brand {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  letter-spacing: 0.04em;
}

.top-banner {
  box-shadow: inset 0 -1px 0 rgba(59, 130, 246, 0.3), 0 0 24px rgba(239, 68, 68, 0.18);
}

.hero h1 {
  text-shadow: 0 0 14px rgba(59, 130, 246, 0.2), 0 0 24px rgba(250, 204, 21, 0.16);
}

.card:hover {
  box-shadow: 0 0 0 1px rgba(59, 130, 246, 0.4), 0 0 24px rgba(239, 68, 68, 0.12), 0 0 36px rgba(250, 204, 21, 0.16);
}


:root {
  --bg: #000000;
  --surface: #101810;
  --surface-alt: #162116;
  --text: #8cff73;
  --text-muted: #6fdc7d;
  --line: #39ff14;
  --accent-cyan: #4eff4e;
  --accent-violet: #3fdf34;
  --accent-lime: #7cff6f;
  --accent-pink: #5ce85b;
  --leaf-deep: #2d6b2d;
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
  --radius-lg: 20px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --max-width: 1200px;
  --space-section: clamp(2.6rem, 5vw, 4.2rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: "Rajdhani", "Inter", "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  line-height: 1.45;
  background:
    radial-gradient(circle at 20% 15%, rgba(56, 255, 94, 0.16), transparent 24%),
    radial-gradient(circle at 75% 25%, rgba(102, 255, 126, 0.12), transparent 28%),
    linear-gradient(180deg, #000000 0%, #061006 40%, #09170a 100%);
  background-attachment: fixed;
}

/* Cannabis leaf doodle layer — JS-injected <div class="leaf-bg"> */
.leaf-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.leaf-bg img {
  position: absolute;
  opacity: 0.07;
  mix-blend-mode: screen;
  filter: drop-shadow(0 0 8px rgba(61, 255, 122, 0.15));
  user-select: none;
}

/* Layer 2: fine noise / grain */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.7  0 0 0 0 0.7  0 0 0 0 0.7  0 0 0 0.5 0'/></filter><rect width='200' height='200' filter='url(%23n)' opacity='0.35'/></svg>");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
  mix-blend-mode: overlay;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/*
 * Visually hides text while keeping it in the accessibility tree — used for
 * headings/labels that exist for SEO/screen readers only (e.g. the shop
 * archive's <h1>, see woocommerce/archive-product.php). Astra's parent
 * stylesheet used to define this; it's dequeued in inc/enqueue.php
 * (nc_dequeue_astra_parent_styles) so the rule has to live here instead.
 */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.container {
  width: min(var(--max-width), 92vw);
  margin: 0 auto;
}

.grid {
  display: grid;
  gap: 1rem;
}

.card {


  border: 1px solid rgba(90, 156, 90, 0.8);
  color: var(--text);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  backdrop-filter: blur(8px);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.7rem 1.2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: transform 140ms ease, box-shadow 180ms ease, background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.btn-primary {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: #000000;
  border: 1.5px solid #388e3c;
  box-shadow: 0 0 22px rgba(56, 142, 60, 0.35);
}

.btn-ghost {
  background: linear-gradient(90deg, rgba(129, 199, 132, 0.95) 0%, rgba(76, 175, 80, 0.95) 100%);
  color: #000000;
}



.btn-ghost:hover {
  background: #fff;
  color: #000000;
  box-shadow: 0 0 22px rgba(70, 99, 71, 0.35);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn:active {
  transform: translateY(0);
}

.pill {
  display: inline-block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid rgba(76, 175, 80, 0.7);
  background: #c8f5c8;
  color: #000000;
  font-family: "Orbitron", "Rajdhani", sans-serif;
}

:focus-visible {
  outline: 2px solid rgba(59, 130, 246, 0.75);
  outline-offset: 2px;
}




header.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #000000;
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.top-banner {
  background: linear-gradient(90deg, #a5d6a7 0%, #66bb6a 100%);
  color: #000000;
  text-align: center;
  padding: 0.85rem 1rem;
  font-size: clamp(1rem, 1.35vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  border-bottom: 1px solid rgba(34, 197, 94, 0.55);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.menu-tools {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.brand {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.brand-logo {
  height: 60px;
  width: auto;
  background-color: #000;
  border-radius: 5px;
  object-fit: contain;
}

/* Logo already says NORTH COAST — hide the duplicate text */
.brand>span {
  display: none;
}

.menu {
  display: flex;
  gap: 0.55rem;
  flex-wrap: wrap;
}

.menu a {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  letter-spacing: 0.01em;
}

.menu a.active,
.menu a:hover {
  color: #000000;
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  /* box-shadow: 0 6px 16px rgba(239, 68, 68, 0.35); */
}

.nav-chevron {
  font-size: 0.7rem;
  opacity: 0.7;
  transform: translateY(1px);
}

/* ── Nav search ── */
.nav-search {
  display: flex;
  align-items: center;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid #fff;
  border-radius: 999px;
  padding: 0.25rem 0.35rem 0.25rem 1rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  min-width: 240px;
}

.nav-search:focus-within {
  border-color: rgba(59, 130, 246, 0.55);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.14);
}

.nav-search-input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  padding: 0.5rem 0.4rem;
  font-size: 0.92rem;
  color: #e8f5e0;
  font-family: inherit;
}

.nav-search-input::placeholder {
  color: rgba(232, 245, 224, 0.55);
}

.nav-search-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: black;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.nav-search-btn:hover {
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  color: #0f1d12;
}

/* ── Nav cart icon ── */
.nav-cart {
  position: relative;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.22);
  background: rgba(15, 29, 18, 0.85);
  display: grid;
  place-items: center;
  cursor: pointer;
  color: #e8f5e0;
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}

.nav-cart:hover {
  color: var(--accent-violet);
  border-color: rgba(34, 197, 94, 0.55);
}

.nav-cart .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 17px;
  height: 17px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.55);
}

/* Add-to-cart confirmation "pop": the header cart icon bumps and briefly
   glows, and the badge count kicks a little harder — see nc_cart_open_on_add_script()
   in inc/woocommerce-hooks.php, which adds/removes this class on the
   'added_to_cart' event. */
@keyframes nc-cart-pop {
  0% {
    transform: scale(1);
  }
  35% {
    transform: scale(1.28);
    border-color: rgba(34, 197, 94, 0.9);
    box-shadow: 0 0 0 8px rgba(34, 197, 94, 0.18);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes nc-cart-badge-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.35);
  }
  100% {
    transform: scale(1);
  }
}

.nav-cart.nc-cart-pulse {
  animation: nc-cart-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.nav-cart.nc-cart-pulse .cart-badge {
  animation: nc-cart-badge-pop 480ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Same pop, reused on the specific "Add to Cart" button that was just clicked. */
.nc-add-pulse {
  animation: nc-cart-badge-pop 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Sign In ── */
.nav-signin {
  padding: 0.55rem 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.shop-mega {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  padding-top: 0.75rem;
  padding-bottom: 1rem;
  z-index: 25;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.shop-mega.open {
  display: block;
}

.mega-inner {
  padding: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 2fr));
  gap: 1rem;
}

.mega-inner h4 {
  margin: 0 0 0.5rem;
}

.mega-inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.mega-inner a {
  color: var(--text-muted);
}

.mega-inner a:hover {
  color: var(--text);
}

.mega-inner h4 a {
  color: inherit;
}

.mega-inner h4 a:hover {
  color: var(--line);
}

/* Generic dropdown for any top-level nav item with real WP menu children
   (see NC_Nav_Walker in template-parts/header/nav.php) — Shop keeps its own
   wider .shop-mega instead. .nav-item-wrapper is the positioned anchor for
   its specific trigger link + dropdown pair, so the dropdown opens directly
   under that one link rather than the header's left edge. */
.nav-item-wrapper {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 180px;
  margin-top: 1rem;
  padding: 0.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  z-index: 25;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.55));
}

.nav-dropdown.open {
  display: grid;
  gap: 0.15rem;
}

.nav-dropdown .nav-link {
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

/* .menu a.active/:hover (the pill nav's black-on-green treatment) would
   otherwise win here too since dropdown items are also plain .nav-link a
   tags inside #main-nav — overridden so sub-items keep light text and just
   a subtle highlight instead of the top-level pill look. */
.nav-dropdown .nav-link.active,
.nav-dropdown .nav-link:hover {
  color: #fff;
  background: rgba(34, 197, 94, 0.14);
}

.hero {
  padding: clamp(3.2rem, 6vw, 5rem) 0;
  position: relative;
  overflow: hidden;
padding-bottom:0px!important;
}


.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 2rem;
}

.hero h1 {
  margin: 0.7rem 0 1rem;
  font-size: clamp(2rem, 4vw, 3.3rem);
}

.hero h1 span {
  color: var(--line);
  text-shadow: 0 0 16px rgba(57, 255, 20, 0.4);
}

.hero p {
  color: var(--text-muted);
  max-width: 60ch;
}

.hero-art {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
}

.hero-svg {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
}

section {
  padding: var(--space-section) 0;
}

.section-title {
  margin-bottom: 1.2rem;
}

.section-title h2 {
  margin: 0.35rem 0 0.5rem;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
}

.section-title p {
  margin: 0;
  color: var(--text-muted);
}

.category-grid {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}

.category-card {
  padding: 1rem;
  min-height: 170px;
  display: grid;
  align-content: space-between;
}

.category-orb-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1.1rem 0.9rem;
  justify-items: center;
}

.category-orb-item {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  text-align: center;
}

.category-orb {
  position: relative;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 1.5px solid rgba(34, 197, 94, 0.55);
  box-shadow: 0 0 0 3px rgba(61, 255, 122, 0.12), 0 10px 26px rgba(0, 0, 0, 0.08);
}

.category-orb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 320ms ease;
}

.category-orb::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 25%, rgba(61, 255, 122, 0.25), transparent 55%),
    radial-gradient(circle at 70% 85%, rgba(34, 197, 94, 0.3), transparent 60%);
  mix-blend-mode: screen;
  pointer-events: none;
  z-index: 1;
}

.category-orb::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(61, 255, 122, 0.45);
  opacity: 0;
  transition: opacity 220ms ease, transform 320ms ease;
  transform: scale(0.96);
  pointer-events: none;
}

.category-orb-item:hover .category-orb img {
  transform: scale(1.08);
}

.category-orb-item:hover .category-orb::after {
  opacity: 1;
  transform: scale(1);
}

.category-orb-label {
  max-width: 140px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--text);
}

.category-orb-sub {
  font-size: 0.80rem;
  letter-spacing: 0.04em;
  color: #fff;
  text-transform: none;
  max-width: 140px;
  line-height: 1.3;
}

.section-sub {

  margin: 0.4rem auto 0;

  color: rgba(232, 245, 224, 0.65);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.about-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.2rem;
  align-items: stretch;
}

.about-copy-card {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(148, 100, 240, 0.35);
  border-radius: 14px;
  padding: 2rem 1.7rem;
  position: relative;
  box-shadow: 0 10px 28px rgba(101, 87, 169, 0.14);
}

.about-copy-card::before {
  content: "";
  position: absolute;
  left: 0.9rem;
  top: 1rem;
  bottom: 1rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #22c55e, #c03dff);
}

.about-copy-card h2 {
  margin: 0 0 0.8rem;
  font-size: clamp(1.9rem, 3vw, 2.4rem);
  color: #e8f5e0;
}

.about-copy-card h2 span {
  color: #d54bff;
}

.about-copy-card p {
  color: #4d5b81;
  font-size: 1.12rem;
  line-height: 1.52;
  margin: 0 0 0.8rem;
  max-width: 60ch;
}

.about-copy-card .btn {
  margin-top: 0.8rem;
}

.about-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 110px 150px 100px;
  gap: 0.55rem;
}

.about-mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 2px solid rgba(163, 95, 255, 0.6);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.22);
}

.about-mosaic img:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
}

.about-mosaic img:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.about-mosaic img:nth-child(3) {
  grid-column: 1;
  grid-row: 2;
}

.about-mosaic img:nth-child(4) {
  grid-column: 1;
  grid-row: 3;
}

.about-mosaic img:nth-child(5) {
  grid-column: 2;
  grid-row: 3;
}

.range-panel {
  background: linear-gradient(160deg, #0f1d12, #f2f4ff);
  border: 1px solid rgba(132, 98, 220, 0.34);
  border-radius: 12px;
  text-align: center;
  padding: 2.2rem 1.4rem;
  box-shadow: inset 0 0 36px rgba(131, 70, 224, 0.07), 0 10px 26px rgba(131, 70, 224, 0.12);
}

.range-panel h2 {
  margin: 0 0 1rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: #e8f5e0;
}

.range-panel h2 span {
  color: #c44aff;
}

.range-panel p {
  color: #4e5d85;
  font-size: 1.1rem;
  line-height: 1.6;
  margin: 0.8rem auto;
  max-width: 72ch;
}

.express-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr;
  gap: 1rem;
  align-items: stretch;
}

.express-art {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(132, 98, 220, 0.28);
  background: linear-gradient(140deg, #0a1810, #0a1810);
}

.express-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 320px;
}

.express-copy-card {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(149, 90, 250, 0.35);
  border-radius: 12px;
  padding: 1.5rem 1.3rem 1.4rem 1.55rem;
  color: #cfe6c4;
  position: relative;
}

.express-copy-card::before {
  content: "";
  position: absolute;
  left: 0.85rem;
  top: 0.9rem;
  bottom: 0.9rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #c339ff, #7a2cff);
}

.express-copy-card h2 {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.02;
  color: #e8f5e0;
}

.express-copy-card h2 span {
  color: #cb52ff;
}

.express-copy-card p {
  margin: 0 0 0.75rem;
  line-height: 1.55;
  color: #4e5d85;
  font-size: 1.05rem;
}

.coverage-section {
  text-align: center;
}

.coverage-section h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  color: #e8f5e0;
  max-width: 26ch;
  margin-inline: auto;
  line-height: 1.2;
}

.coverage-section h2 span {
  color: #cb52ff;
}

.coverage-section>p {
  margin: 0.9rem auto 1.3rem;
  color: #4e5d85;
  max-width: 64ch;
  font-size: 1.02rem;
}

.coverage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.coverage-card {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(140, 96, 230, 0.34);
  border-radius: 12px;
  padding: 1.2rem 1.1rem;
  text-align: left;
  box-shadow: 0 10px 24px rgba(111, 84, 186, 0.12);
}

.coverage-card ul {
  margin: 0;
  padding-left: 1.4rem;
  display: grid;
  gap: 0.35rem;
}

.coverage-card li {
  color: #cfe6c4;
  font-size: 1.2rem;
  line-height: 1.45;
}

.coverage-card li::marker {
  color: #cb52ff;
}

.mail-order-section {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(138, 92, 228, 0.34);
  border-radius: 14px;
  text-align: center;
  padding: 1.7rem 1.1rem 1.5rem;
  color: #cfe6c4;
}

.mail-order-section h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.15rem);
  color: #e8f5e0;
}

.mail-order-section h2 span {
  color: #ca4fff;
}

.mail-order-section>p {
  margin: 0.7rem auto;
  max-width: 88ch;
  color: #4e5d85;
  line-height: 1.55;
}

.mail-steps-grid {
  margin-top: 1.15rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}

.mail-step-card {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(146, 95, 243, 0.3);
  border-radius: 14px;
  padding: 2.6rem 1rem 1rem;
  position: relative;
  text-align: left;
}

.step-badge {
  position: absolute;
  top: -34px;
  left: 50%;
  transform: translateX(-50%);
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: #0f1d12;
  color: #a338e9;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  box-shadow: 0 0 0 3px rgba(138, 92, 228, 0.22);
}

.mail-step-card h3 {
  margin: 0.15rem 0 0.45rem;
  color: #cfe6c4;
  font-size: 1.05rem;
}

.mail-step-card p {
  margin: 0;
  color: #4e5d85;
  line-height: 1.55;
}

.value-showcase {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 0.9rem;
  border: 1px solid rgba(138, 92, 228, 0.3);
  border-radius: 14px;
  overflow: hidden;
  background: linear-gradient(90deg, #0f1d12, #f3f5ff);
}

.value-copy {
  padding: 1.6rem 1.4rem;
}

.value-copy h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.6vw, 3.2rem);
  color: #e8f5e0;
}

.value-copy h2 span {
  color: #cb52ff;
}

.value-copy p {
  margin: 0 0 1rem;
  color: #4e5d85;
  max-width: 58ch;
  line-height: 1.56;
}

.value-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 260px;
}

.feature-points {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
}

.feature-point {
  border: 1px solid rgba(138, 92, 228, 0.24);
  border-radius: 10px;
  background: linear-gradient(140deg, #0f1d12, #f3f5ff);
  color: #cfe6c4;
  padding: 0.8rem 0.9rem;
  font-size: 1.15rem;
  font-weight: 600;
  display: flex;
  gap: 0.65rem;
  align-items: center;
}

.feature-point::before {
  content: "✦";
  color: #cb52ff;
  font-size: 1rem;
  line-height: 1;
}

.cannabis-section {
  text-align: center;
}

.cannabis-section h2 {
  margin: 0 0 0.7rem;
  font-size: clamp(2rem, 3.4vw, 3rem);
  color: #e8f5e0;
}

.cannabis-section>p {
  margin: 0 auto 1.15rem;
  max-width: 84ch;
  color: #4e5d85;
  line-height: 1.55;
}

.strain-families-card {
  background: linear-gradient(160deg, #0f1d12, #f3f5ff);
  border: 1px solid rgba(145, 95, 236, 0.3);
  border-radius: 14px;
  text-align: left;
  padding: 1.4rem 1.25rem 1.15rem 1.55rem;
  position: relative;
  box-shadow: 0 12px 24px rgba(108, 84, 176, 0.12);
}

.strain-families-card::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.85rem;
  bottom: 0.85rem;
  width: 4px;
  border-radius: 999px;
  background: linear-gradient(180deg, #be3fff, #7f2dff);
}

.strain-families-card h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  color: #e8f5e0;
}

.strain-families-card h3 span {
  color: #be3fff;
}

.strain-families-card>p {
  margin: 0 0 0.7rem;
  color: #4e5d85;
}

.strain-families-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.55rem;
}

.strain-families-card li {
  color: #cfe6c4;
  line-height: 1.55;
}

.strain-families-card li strong {
  color: #e8f5e0;
}

/* ═══════════════════════════════════════════════
   UNIFIED SECTION CARD  (About → Cannabis)
   ═══════════════════════════════════════════════ */
.section-card {
  background: linear-gradient(160deg, rgba(15, 29, 18, 0.85), rgba(10, 24, 16, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.13);
  padding: 2rem 1.8rem 1.8rem 2.2rem;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

/* left accent bar */
.section-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 5px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent-cyan), var(--accent-violet), var(--accent-pink));
}

/* centered variant — no left bar, extra horizontal padding */
.section-card--center {
  text-align: center;
  padding-left: 1.8rem;
}

.section-card--center::before {
  display: none;
}

/* headings */
.section-card h2,
.section-card h3 {
  margin: 0 0 0.75rem;
  color: #e8f5e0;
  letter-spacing: 0.02em;
}

.section-card h2 span,
.section-card h3 span {
  color: var(--accent-violet);
}

/* body text */
.section-card p,
.section-card li {
  color: black;
  line-height: 1.6;
  font-size: 1.05rem;
}

.section-card>p {
  margin: 0 0 0.8rem;
}
.woocommerce table{
	    background: linear-gradient(90deg, #81c784 0%, #4caf50 100%) !important;
}
/* coverage cards inside a section-card */
.coverage-inner .coverage-grid {
  margin-top: 1.1rem;
  text-align: left;
}

#ast-scroll-top{
	display:none !important;
}

.coverage-inner .coverage-card {
  background: rgba(15, 29, 18, 0.85);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 12px;
  padding: 1rem 1.1rem;
}

.coverage-inner .coverage-card li {
  color: #cfe6c4;
  font-size: 1.1rem;
}

/* mail steps inside section-card */
.section-card .mail-steps-grid {
  padding-top: 2.5rem;
  margin-top: 0.5rem;
}

.section-card .mail-step-card {
  background: rgba(15, 29, 18, 0.85);
  border: 1px solid rgba(34, 197, 94, 0.22);
  border-radius: 14px;
  padding: 2.6rem 1rem 1rem;
  position: relative;
  text-align: left;
  box-shadow: 0 6px 16px rgba(108, 84, 176, 0.1);
}

.section-card .mail-step-card h3 {
  color: #cfe6c4;
}

.section-card .mail-step-card p {
  color: #4e5d85;
}

/* strain families list inside section-card */
.strain-families-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.6rem;
}

.strain-families-card li {
  color: #cfe6c4;
}

.strain-families-card li strong {
  color: #e8f5e0;
}

/* value copy inside section-card */
.value-copy h2 span {
  color: var(--accent-violet);
}

/* cannabis section heading */
.cannabis-section h2 {
  color: #e8f5e0;
  font-size: clamp(2rem, 3.4vw, 3rem);
  margin-bottom: 0.7rem;
}

.cannabis-section>p {
  color: black;
  max-width: 84ch;
  margin: 0 auto 1.2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════
   CANNABIS LEAF BACKGROUND DECORATIONS
   ═══════════════════════════════════════════════ */
.leaf-section {
  position: relative;
  overflow: hidden;
}

.leaf-section>.container {
  position: relative;
  z-index: 1;
}

/* ── Realistic 7-finger cannabis leaf SVG decorations ── */
.leaf-deco {
  position: absolute;
  width: 500px;
  height: 500px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.1;
  pointer-events: none;
  z-index: 0;
}

.ld-r {
  right: -100px;
  top: -80px;
  transform: rotate(12deg);
}

.ld-l {
  left: -100px;
  bottom: -80px;
  transform: rotate(-18deg);
}

/* All three variants share the same realistic 7-leaflet cannabis leaf,
   distinguished only by rotation via .ld-r / .ld-l transforms */
.ld-flower,
.ld-bud,
.ld-extract {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 120'%3E%3Cg transform='translate(60,102)' fill='%239b5cff'%3E%3Crect x='-2' y='0' width='4' height='20' rx='2'/%3E%3Cpath d='M0,0 C9,-26 9,-55 0,-80 C-9,-55 -9,-26 0,0Z'/%3E%3Cg transform='rotate(26)'%3E%3Cpath d='M0,0 C8,-23 8,-48 0,-68 C-8,-48 -8,-23 0,0Z'/%3E%3C/g%3E%3Cg transform='rotate(-26)'%3E%3Cpath d='M0,0 C8,-23 8,-48 0,-68 C-8,-48 -8,-23 0,0Z'/%3E%3C/g%3E%3Cg transform='rotate(52)'%3E%3Cpath d='M0,0 C6,-18 6,-38 0,-54 C-6,-38 -6,-18 0,0Z'/%3E%3C/g%3E%3Cg transform='rotate(-52)'%3E%3Cpath d='M0,0 C6,-18 6,-38 0,-54 C-6,-38 -6,-18 0,0Z'/%3E%3C/g%3E%3Cg transform='rotate(78)'%3E%3Cpath d='M0,0 C5,-13 5,-28 0,-40 C-5,-28 -5,-13 0,0Z'/%3E%3C/g%3E%3Cg transform='rotate(-78)'%3E%3Cpath d='M0,0 C5,-13 5,-28 0,-40 C-5,-28 -5,-13 0,0Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.ld-bud {
  transform: rotate(-18deg) scaleX(-1);
}

.ld-extract {
  transform: rotate(30deg);
}

/* ═══════════════════════════════════════════════
   SHOP PAGE — DARK THEME
   ═══════════════════════════════════════════════ */


.shop-body-section {
  padding: 2rem 0 4rem;
  min-height: 80vh;
}

.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.8rem;
  align-items: start;
}

/* ── Sidebar ── */
.shop-sidebar {
  position: sticky;
  top: 88px;
  background: linear-gradient(160deg, #0f1d12, #0a1810);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.shop-sidebar h4 {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.sidebar-nav {
  display: grid;
  gap: 0.1rem;
  margin-bottom: 1.2rem;
}

.sidebar-link {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.5rem 0.5rem;
  padding-left: calc(0.5rem + var(--depth, 0) * 1.2rem);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color 150ms, background 150ms;
  position: relative;
}

.sidebar-tree .sidebar-group {
  display: contents;
}

.sidebar-children {
  display: none;
  position: relative;
}

.sidebar-group--open .sidebar-children {
  display: block;
}

.sidebar-children .sidebar-link::before {
  content: "";
  position: absolute;
  left: calc(var(--depth, 1) * 1.2rem - 0.3rem);
  top: 50%;
  width: 8px;
  height: 1px;
  background: rgba(34, 197, 94, 0.35);
}

.sidebar-link:hover {
  color: var(--text);
  background: rgba(34, 197, 94, 0.08);
}

.sidebar-link--active {
  color: var(--accent-violet);
}

.sidebar-cb {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

label.sidebar-link {
  cursor: pointer;
}

.sidebar-checkbox {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(34, 197, 94, 0.45);
  border-radius: 3px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  font-size: 0.7rem;
  color: #000;
  background: transparent;
  transition: background 150ms, border-color 150ms;
}

.sidebar-link--active .sidebar-checkbox,
.sidebar-cb:checked ~ .sidebar-checkbox {
  background: #3dff7a;
  border-color: #3dff7a;
  color: #000;
}

.sidebar-cb:checked ~ .sidebar-checkbox::after {
  content: "\2713";
}

.sidebar-reset {
  width: 100%;
  justify-content: center;
}

/* ── Sidebar price range ── */
.sidebar-price {
  margin-bottom: 1.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
}

.sidebar-price-bubbles {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.6rem;
}

.sidebar-price-bubble {
  position: relative;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  background: var(--accent-violet);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.5);
}

.sidebar-price-bubble::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: var(--accent-violet);
}

.sidebar-price-track {
  position: relative;
  height: 4px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.2);
}

.sidebar-price-fill {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-violet), var(--accent-cyan));
}

.sidebar-price-track::before,
.sidebar-price-track::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-violet);
  transform: translateY(-50%);
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.6);
}

.sidebar-price-track::before {
  left: -4px;
}

.sidebar-price-track::after {
  right: -4px;
}
.woocommerce-MyAccount-content{

}
.woocommerce-MyAccount-navigation{
	
}
/* ── Sort topbar ── */
.shop-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.shop-count {
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
}

.sort-select {
  background: linear-gradient(120deg, var(--accent-violet), var(--accent-cyan));
  color: var(--accent-violet);
  border: none;
  border: 1px solid var(--accent-violet);
  border-radius: 8px;
  padding: 0.45rem 2rem 0.45rem 0.75rem;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23fff'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.6rem center;
}

/* ── Product cards ── */
.shop-results .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.shop-results .product-img-wrap img {
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #f5f7ff;
  padding: 0.5rem;
}

.shop-results .product-body {
  display: grid;
  gap: 0.55rem;
}

.shop-results .price-row {
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.shop-results .product-price {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent-violet);
}

.shop-results .add-to-cart {
  width: 100%;
  justify-content: center;
  border-radius: 999px;
}

.shop-results .product-body h3 {
  font-size: 0.92rem;
  line-height: 1.4;
  min-height: 2.6em;
}

.shop-results .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}


/* Final homepage cohesion pass */
body[data-page="home"] main section {
  position: relative;
}

body[data-page="home"] main section .container {
  position: relative;
}

body[data-page="home"] .card,
body[data-page="home"] .about-copy-card,
body[data-page="home"] .range-panel,
body[data-page="home"] .express-copy-card,
body[data-page="home"] .coverage-card,
body[data-page="home"] .mail-order-section,
body[data-page="home"] .mail-step-card,
body[data-page="home"] .strain-families-card,
body[data-page="home"] .feature-point {
  border-radius: 16px;
  border-color: rgba(34, 197, 94, 0.26);
  box-shadow: 0 12px 28px rgba(86, 74, 141, 0.12);
}

body[data-page="home"] .info-grid {
  gap: 1rem;
}

body[data-page="home"] .info-grid>.info-card {
  min-height: 170px;
}

body[data-page="home"] .section-title,
body[data-page="home"] .coverage-section>p,
body[data-page="home"] .mail-order-section>p,
body[data-page="home"] .cannabis-section>p {
  margin-bottom: 1rem;
}

body[data-page="home"] .btn-primary {
  box-shadow: 0 6px 18px rgba(123, 74, 214, 0.22), 0 0 0 1px rgba(61, 255, 122, 0.18) inset;
}


.product-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.product-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-2px);
}

.product-card img {
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-body {
  padding: 0.9rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.6rem;
}

.product-body h3 {
  margin: 0;
  flex: 1;
}

.product-card .price-row {
  margin-top: auto;
}

.product-card .add-to-cart {
  white-space: nowrap;
  padding: 0.55rem 1rem;
  font-size: 0.65rem;
}

.price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  flex-wrap: wrap;
}

/* WooCommerce's AJAX add-to-cart JS inserts <a class="added_to_cart"> right
   next to the button inside .price-row (see woocommerce/content-product.php);
   with no room left on the row it overlapped the button/next card instead of
   dropping to its own line. */
.price-row .added_to_cart {
  flex: 1 0 100%;
  order: 3;
  margin-top: 0.4rem;
  text-align: center;
}

/* ── Blog cards (Blog page template, plus archive/search/index fallbacks
   that reuse the same template-parts/cards/blog-card.php partial) ── */
.blog-card-grid {
  grid-template-columns: 1fr;
  gap: 1.6rem;
}

.blog-card {
  display: flex;
  align-items: stretch;
  overflow: hidden;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow: 0 0 0 1px rgba(57, 255, 20, 0.3), 0 0 30px rgba(57, 255, 20, 0.22), var(--shadow);
}

.blog-card .blog-card-img-wrap {
  flex: 0 0 clamp(220px, 34%, 380px);
  position: relative;
  overflow: hidden;
}

.blog-card .blog-card-img-wrap img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-img-wrap img {
  transform: scale(1.08);
}

.blog-card .product-body {
  flex: 1;
  padding: 1.6rem 1.9rem;
  justify-content: center;
  gap: 0.6rem;
}

.blog-card h3 {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.3;
}

.blog-card h3 a {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.blog-card:hover h3 a {
  color: var(--line);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.45);
}

.blog-card p {
  margin: 0;
  color: var(--text-muted);
}

.blog-card .price-row {
  justify-content: flex-start;
  margin-top: 0.2rem;
}

.blog-card-readmore {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--line);
  transition: gap 0.2s ease, text-shadow 0.2s ease;
}

.blog-card-readmore .arrow {
  transition: transform 0.25s ease;
}

.blog-card:hover .blog-card-readmore {
  gap: 0.65rem;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.blog-card:hover .blog-card-readmore .arrow {
  transform: translateX(4px);
}

@media (max-width: 760px) {
  .blog-card {
    flex-direction: column;
  }

  .blog-card .blog-card-img-wrap {
    flex: 0 0 auto;
    aspect-ratio: 16 / 9;
  }
	
	.shop-body-section{
		padding-bottom:0px !important;
	}
}

/* ── Blog teaser (homepage "Latest From The Blog" — 2-up vertical cards) ── */
.blog-teaser-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem;
}

.blog-teaser-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.blog-teaser-card:hover {
  transform: translateY(-6px);
  border-color: rgba(57, 255, 20, 0.55);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45), 0 0 22px rgba(57, 255, 20, 0.12);
}

.blog-teaser-img-wrap {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.blog-teaser-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 420ms ease;
}

.blog-teaser-card:hover .blog-teaser-img-wrap img {
  transform: scale(1.08);
}

.blog-teaser-card h3 a {
  transition: color 0.2s ease, text-shadow 0.2s ease;
}

.blog-teaser-card:hover h3 a {
  color: var(--line);
  text-shadow: 0 0 14px rgba(57, 255, 20, 0.45);
}

.blog-teaser-card:hover .blog-card-readmore {
  gap: 0.65rem;
  text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

.blog-teaser-card:hover .blog-card-readmore .arrow {
  transform: translateX(4px);
}

.blog-teaser-cta {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

@media (max-width: 760px) {
  .blog-teaser-grid {
    grid-template-columns: 1fr;
  }
}

/* ── "Online Dispensary Canada" info panel (homepage, above Newsletter) ── */
.dispensary-panel {
  padding: clamp(2rem, 4vw, 3.2rem);
  text-align: center;
  background: linear-gradient(160deg, rgba(16, 24, 16, 0.9) 0%, rgba(5, 13, 7, 0.95) 100%);
}

.dispensary-title {
  margin: 0 0 1.6rem;
  padding-bottom: 1.4rem;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  border-bottom: 1px solid rgba(76, 175, 80, 0.3);
}

.dispensary-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  text-align: left;
  margin-bottom: 2rem;
}

.dispensary-item {
  padding: 1.3rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(76, 175, 80, 0.18);
  background: rgba(76, 175, 80, 0.03);
  transition: border-color 220ms ease, background 220ms ease, transform 200ms ease, box-shadow 220ms ease;
}

.dispensary-item:hover {
  border-color: rgba(76, 175, 80, 0.55);
  background: rgba(76, 175, 80, 0.08);
  transform: translateY(-5px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35), 0 0 18px rgba(76, 175, 80, 0.15);
}

.dispensary-item h3 {
  margin: 0 0 0.6rem;
  font-size: 1.02rem;
  color: #a5d6a7;
  transition: color 180ms ease;
}

.dispensary-item:hover h3 {
  color: var(--line);
}

.dispensary-item p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.65;
  font-size: 0.92rem;
}

.dispensary-copy {
  max-width: 880px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.85;
  font-size: 0.95rem;
}

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

.cart-drawer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  overflow: hidden;
}

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.cart-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(440px, 92vw);
  background: linear-gradient(180deg, #0f1d12 0%, #0d1f14 100%);
  border-left: 1px solid rgba(34, 197, 94, 0.3);
  box-shadow: -24px 0 60px rgba(0, 0, 0, 0.18), inset 1px 0 0 rgba(61, 255, 122, 0.15);
  padding: 0;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.cart-drawer.open {
  pointer-events: all;
}

.cart-drawer.open .cart-backdrop {
  opacity: 1;
}

.cart-drawer.open .cart-panel {
  transform: translateX(0);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 1.3rem 1rem;
  border-bottom: 1px solid rgba(34, 197, 94, 0.18);
  background: linear-gradient(90deg, rgba(61, 255, 122, 0.08), rgba(34, 197, 94, 0.08));
}

.cart-head h3 {
  margin: 0;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f5e0;
}

.cart-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(34, 197, 94, 0.35);
  background: #0f1d12;
  color: var(--accent-violet);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.cart-close-btn:hover {
  transform: rotate(90deg);
  background: var(--accent-violet);
  color: #fff;
  border-color: var(--accent-violet);
}

#cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.3rem;
}

.cart-foot {
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  padding: 1rem 1.3rem 1.3rem;
  background: rgba(10, 24, 16, 0.85);
  display: grid;
  gap: 0.7rem;
}

.cart-foot .price-row {
  font-size: 1.15rem;
}

.cart-foot .price-row strong:last-child {
  color: var(--accent-violet);
}

.cart-foot .btn {
  width: 100%;
  justify-content: center;
}

/* Astra parent theme's own empty-cart block (astra_update_flyout_cart_layout(),
   hooked onto the same 'woocommerce_after_mini_cart' action mini-cart.php
   fires) renders as a sibling right after .widget_shopping_cart_content —
   outside #cart-items/.cart-foot, so it never inherited their 1.3rem side
   padding and sat flush against the drawer's left edge. */
.ast-mini-cart-empty {
  padding: 0.5rem 1.3rem 1.3rem;
}

.woocommerce-mini-cart__empty-message {
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.woocommerce-mini-cart__buttons {
  display: flex;
}

.woocommerce-mini-cart__buttons .ast-continue-shopping {
  width: 100%;
  justify-content: center;
}

body.cart-open {
  overflow: hidden;
}

/* ── Scroll-to-top button — Astra ships one, but its markup's inline CSS
   hangs off the 'astra-theme-css' handle that nc_dequeue_astra_parent_styles()
   removes (see inc/enqueue.php), so it renders unstyled/invisible. This is a
   theme-owned replacement instead of trying to re-attach to that handle. */
#nc-scroll-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--accent-lime), #1a7d3a);
  color: #04140a;
  cursor: pointer;
  z-index: 500;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease, background 160ms ease;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(57, 255, 20, 0.25);
}

#nc-scroll-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

#nc-scroll-top:hover {
  background: linear-gradient(135deg, #ffffff, var(--accent-lime));
}

#nc-scroll-top svg {
  width: 1.3rem;
  height: 1.3rem;
  pointer-events: none;
}

@media (max-width: 600px) {
  #nc-scroll-top {
    right: 16px;
    bottom: 16px;
    width: 2.6rem;
    height: 2.6rem;
  }
}

.dispatch-modal {
  position: fixed;
  inset: 0;
  z-index: 40;
  pointer-events: none;
}

.dispatch-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 34, 64, 0.35);
  opacity: 0;
  transition: 0.25s ease;
}

.dispatch-panel {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -45%);
  width: min(760px, 94vw);
  padding: 1.6rem 1.5rem;
  opacity: 0;
  transition: 0.25s ease;
}

.dispatch-panel h3 {
  margin-top: 0;
  font-size: clamp(1.35rem, 2.3vw, 1.9rem);
}

.dispatch-panel p,
.dispatch-panel li {
  font-size: 1.06rem;
  line-height: 1.55;
}

.dispatch-panel ul {
  margin-bottom: 1rem;
}

.dispatch-modal.open {
  pointer-events: all;
}

.dispatch-modal.open .dispatch-backdrop {
  opacity: 1;
}

.dispatch-modal.open .dispatch-panel {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-row {
  display: grid;
  grid-template-columns: 68px 1fr;
  gap: 0.8rem;
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 12px;
  padding: 0.7rem;
  margin-bottom: 0.7rem;
  background: #0f1d12;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.cart-row:hover {
  box-shadow: 0 6px 18px rgba(34, 197, 94, 0.14);
  transform: translateY(-1px);
}

.cart-row img {
  width: 68px;
  height: 68px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-row h4 {
  margin: 0 0 0.3rem;
  font-size: 0.92rem;
  color: #e8f5e0;
  line-height: 1.3;
}

.cart-row p {
  margin: 0 0 0.4rem;
  color: var(--accent-violet);
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-row .cart-remove {
  padding: 0.3rem 0.7rem;
  font-size: 0.7rem;
  border-radius: 999px;
}

.cart-foot {
  border-top: 1px solid var(--line);
  margin-top: 0.8rem;
  padding-top: 0.8rem;
}

.muted-empty {
  color: var(--text-muted);
}

.info-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1.2rem;
}

.info-card {
  padding: 1.1rem;
}

.info-tile {
  position: relative;
  padding: 1.6rem 1.5rem;
  border-radius: 18px;
  background: black;
  color: #000000;
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
  background: radial-gradient(circle at 20% 15%, rgba(56, 255, 94, 0.16), transparent 24%), radial-gradient(circle at 75% 25%, rgba(102, 255, 126, 0.12), transparent 28%), linear-gradient(180deg, #000000 0%, #061006 40%, #09170a 100%);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  overflow: hidden;
}

.info-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% -20%, rgba(61, 255, 122, 0.18), transparent 55%);
  pointer-events: none;
}

.info-tile>* {
  position: relative;
}

.info-tile>.pill {
  align-self: flex-start;
}

.info-tile h3 {
  margin: 0;
  font-size: 1.35rem;
  color: #e8f5e0;
}

.info-tile>p {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}

.newsletter-fine {
  font-size: 0.75rem;
  color: rgba(232, 245, 224, 0.5);
  letter-spacing: 0.04em;
  margin-top: auto;
}

.newsletter-success {
  color: var(--accent-violet);
  font-weight: 700;
  margin: 0;
}

.info-tile--hours .hours-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
}

.hours-status {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  background: #fff;
  color: #0d9555;
  border: 1px solid rgba(0, 200, 120, 0.35);
}

.hours-status--closed {
  background: rgba(255, 43, 90, 0.1);
  color: #a80f3a;
  border-color: rgba(255, 43, 90, 0.3);
}

.hours-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 8px currentColor;
  animation: hoursPulse 1.8s ease-in-out infinite;
}

@keyframes hoursPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid rgba(34, 197, 94, 0.18);
  font-size: 0.98rem;
  color: black;
  letter-spacing: 0.02em;
}

.hours-row strong {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  color: black;
  font-weight: 700;
}

.hours-row--closed strong {
  color: black;
}

.hours-cta {
  margin-top: auto;
  font-weight: 700;
  color: var(--accent-cyan);
  letter-spacing: 0.04em;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.hours-cta:hover {
  color: var(--accent-violet);
}

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

#minimum-order-cities {
  text-align: center;
}

#minimum-order-cities .section-title {
  margin-bottom: 1.2rem;
}

#minimum-order-cities .section-title h2 {
  font-size: clamp(1.6rem, 3vw, 2.25rem);
}

#minimum-order-cities .section-title strong {
  color: var(--accent-violet);
  text-shadow: 0 0 14px rgba(34, 197, 94, 0.24);
}

.min-order-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1rem;
  max-width: 1080px;
  margin: 0 auto;
}

.min-order-card {
  position: relative;
  text-align: center;
  padding: 1.4rem 1rem 1.2rem;
  border-radius: 14px;
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06), inset 0 0 0 1px rgba(61, 255, 122, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.min-order-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(61, 255, 122, 0.18), transparent 60%);
  opacity: 0.75;
  pointer-events: none;
}

.min-order-card:hover {
  transform: translateY(-3px);
  border-color: rgba(34, 197, 94, 0.55);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1), 0 0 22px rgba(61, 255, 122, 0.18);
}

.min-order-card h4 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.min-order-card p {
  margin: 0;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  position: relative;
}

.min-order-price {
  display: inline-block;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--accent-violet);
  text-shadow: 0 0 16px rgba(34, 197, 94, 0.4), 0 0 30px rgba(61, 255, 122, 0.2);
  position: relative;
}

.min-order-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-violet));
  color: #fff;
  font-weight: 700;
  z-index: 1;
}

.min-order-card--lowest {
  border-color: rgba(61, 255, 122, 0.55);
  box-shadow: 0 0 0 1px rgba(61, 255, 122, 0.25), 0 10px 24px rgba(61, 255, 122, 0.12);
}

.min-order-card--lowest .min-order-price {
  color: var(--accent-cyan);
  text-shadow: 0 0 18px rgba(61, 255, 122, 0.55);
}

.min-order-footnote {
  text-align: center;
  margin: 1.1rem auto 0;
  max-width: 680px;
  font-size: 0.9rem;
  color: #39ff14;
  letter-spacing: 0.02em;
}

/* ── Intro duo (About + Express) ── */
.intro-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: stretch;
}

.intro-card {
  position: relative;
  padding: 1.8rem 1.6rem;
  border-radius: 18px;
  /* background: linear-gradient(160deg, #0f1d12 0%, #0d1f14 100%); */
  border: 1px solid rgba(34, 197, 94, 0.28);
  /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.intro-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(34, 197, 94, 0.18), transparent 55%);
  pointer-events: none;
}

.intro-express::before {
  background: radial-gradient(circle at 85% -10%, rgba(61, 255, 122, 0.22), transparent 55%);
}

.intro-card>* {
  position: relative;
}

.intro-card>.pill {
  align-self: flex-start;
}

.express-perks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
}

.express-perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem;
  background: linear-gradient(160deg, rgba(15, 29, 18, 0.85), rgba(13, 40, 24, 0.85));
  border: 1px solid rgba(61, 255, 122, 0.22);
  border-radius: 12px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #e8f5e0;
  letter-spacing: 0.02em;
}

.express-perk-icon {
  font-size: 1.05rem;
  filter: drop-shadow(0 0 6px rgba(61, 255, 122, 0.4));
}

@media (max-width: 600px) {

  .express-perks {
    grid-template-columns: 1fr;
  }
}

.intro-card h2 {
  margin: 0.2rem 0 0;
  font-size: clamp(1.6rem, 2.6vw, 2.2rem);
  line-height: 1.15;
  color: var(--text);
}

.intro-card h2 strong {
  color: var(--accent-violet);
  text-shadow: 0 0 14px rgba(34, 197, 94, 0.25);
}

.intro-express h2 strong {
  color: var(--accent-cyan);
  text-shadow: 0 0 14px rgba(61, 255, 122, 0.4);
}

.intro-card p {
  margin: 0;
  color: #fff;
  line-height: 1.55;
}

.intro-card .btn {
  align-self: flex-start;
  margin-top: auto;
}

.pill--cyan {
  color: black;
}

.intro-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 0.8rem 0;
  border-top: 1px solid rgba(34, 197, 94, 0.15);
  border-bottom: 1px solid rgba(34, 197, 94, 0.15);
}

.intro-stat {
  text-align: center;
  display: grid;
  gap: 0.15rem;
}

.intro-stat-num {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent-violet);
  text-shadow: 0 0 12px rgba(34, 197, 94, 0.3);
  line-height: 1;
}

.intro-stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: black;
}

.express-timeline {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: auto;
}

.express-step {
  flex: 1;
  min-width: 120px;
  display: grid;
  gap: 0.25rem;
  padding: 0.7rem 0.8rem;
  border-radius: 12px;
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  border: 1px solid rgba(61, 255, 122, 0.3);
  font-size: 0.85rem;
  color: black;
  font-weight: 600;
}

.express-step-num {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: #fff;
}

.express-step--arrow {
  flex: 0 0 auto;
  min-width: 0;
  padding: 0;
  background: none;
  border: none;
  color: var(--accent-violet);
  font-size: 1.2rem;
  font-weight: 700;
}

@media (max-width: 991px) {
  .intro-duo {
    grid-template-columns: 1fr;
  }

  .shop-mega{
    position: static;
  }

  /* Same reasoning as .shop-mega above: on mobile the nav becomes a static,
     vertically-stacked list (see .menu.mobile-open), so a dropdown needs to
     flow in place under its trigger rather than float as an absolute panel. */
  .nav-item-wrapper {
    display: block;
  }
  .nav-dropdown {
    position: static;
    margin-top: 0.3rem;
    margin-left: 1rem;
    filter: none;
  }
  .nav-dropdown.open {
    display: flex;
    flex-direction: column;
  }

  /* Mobile/tablet (hamburger nav territory, <=991px): the 3-column
     Core/Cannabis/Other grid is a desktop layout — on a narrow screen it
     either overflows or squeezes each column too tight to read comfortably.
     Stack it into one plain list instead, grouped under each heading. */
  .mega-inner {
    grid-template-columns: 1fr;
    gap: 1.2rem;
    padding: 0.5rem 0;
  }

  .express-step--arrow {
    transform: rotate(90deg);
    width: 100%;
    text-align: center;
  }
}

footer.site-footer {
  margin-top: 2rem;
  border-top: 1px solid var(--line);
  background: black;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 1fr;
  gap: 1.3rem;
  padding: 1.6rem 0;
  align-items: start;
}

.footer-grid h4 {
  margin-bottom: 0.6rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-brand-logo {
  height: 36px;
  width: auto;
  background-color: black;
  object-fit: contain;
  border-radius: 3px;
  /* mix-blend-mode: screen; */
}

.footer-brand {
  font-size: 0;
  letter-spacing: 0;
}

.footer-grid p,
.footer-grid li {
  color: var(--text-muted);
  font-size: 0.96rem;
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.9rem;
}

.footer-social-icon {
  display: inline-flex;
  align-items: center;
	background-color:#fff;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #fff;
  color: black;
  transition: color 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 140ms ease;
}

.footer-social-icon:hover {
  color: var(--accent-cyan);
	background-color:transparent;
  border-color: var(--accent-cyan);
  box-shadow: 0 0 14px rgba(61, 255, 122, 0.35);
  transform: translateY(-2px);
}

.copyright {
  border-top: 1px solid var(--line);
  padding: 0.8rem 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* ── Hero CTAs ── */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.2rem;
}

/* ── Cart badge ── */
.cart-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 5px;
  border-radius: 999px;
  background: rgba(15, 29, 18, 0.85);
  font-size: 0.78rem;
  font-weight: 800;
  margin-left: 0.2rem;
}

/* ── Hamburger button ── */
.hamburger-btn {
  display: none;
  padding: 0.5rem;
  width: 37px;
  height: 36px;
}

.hamburger-icon,
.hamburger-icon::before,
.hamburger-icon::after {
  display: block;
  width: 20px;
  height: 2px;
  background: #09170a;
  border-radius: 2px;
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.hamburger-icon {
  position: relative;
}

.hamburger-icon::before,
.hamburger-icon::after {
  content: "";
  position: absolute;
  left: 0;
}

.hamburger-icon::before {
  top: -6px;
}

.hamburger-icon::after {
  top: 6px;
}

.hamburger-btn.is-open .hamburger-icon {
  background: transparent;
}

.hamburger-btn.is-open .hamburger-icon::before {
  transform: rotate(45deg);
  top: 0;
}

.hamburger-btn.is-open .hamburger-icon::after {
  transform: rotate(-45deg);
  top: 0;
}

/* ── Product card image wrap + category tag ── */
.product-img-wrap {
  position: relative;
}

.product-img-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-category-tag {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  background: #4caf50;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.product-price {
  font-size: 1.15rem;
  color: var(--accent-violet);
}

/* ── Feature points – 3 cols on desktop ── */
.feature-points {
  grid-template-columns: repeat(3, 1fr) !important;
}

.fp-icon {
  font-size: 1.3rem;
  line-height: 1;
}

/* ── Newsletter card ── */
.newsletter-form {
  margin-top: 0.85rem;
}

.newsletter-fields {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1;
  min-width: 160px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.6rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #fff;
  color: black;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.newsletter-input:focus {
  color: black;
  border-color: var(--text);

}

.newsletter-input::placeholder {
  color: black;
}

/* ── MailPoet subscribe form (Marketing → Forms → "Subscribe Form", id 1) ──
   restyled to match the .newsletter-fields/.newsletter-input/.btn-primary
   look above; !important is needed because MailPoet inlines its own
   width/padding/margin on the generated <input> tags. */
.newsletter-form .mailpoet_form_popup_overlay {
  display: none !important;
}

#mailpoet_form_1 form.mailpoet_form {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0 !important;
}

#mailpoet_form_1 .mailpoet_paragraph {
  margin-bottom: 0 !important;
}

#mailpoet_form_1 .mailpoet_paragraph:nth-of-type(1) {
  flex: 1 1 160px;
}

#mailpoet_form_1 .mailpoet_paragraph:nth-of-type(2) {
  flex: 0 0 auto;
}

#mailpoet_form_1 input.mailpoet_text {
  width: 100% !important;
  min-width: 160px;
  border: 1px solid var(--line) !important;
  border-radius: 999px !important;
  padding: 0.6rem 1rem !important;
  margin: 0 !important;
  font-family: inherit !important;
  font-size: 0.95rem !important;
  background: #fff !important;
  color: black !important;
  outline: none;
  box-sizing: border-box;
}

#mailpoet_form_1 input.mailpoet_text:focus {
  border-color: var(--text) !important;
}

#mailpoet_form_1 input.mailpoet_text::placeholder {
  color: black;
}

#mailpoet_form_1 input.mailpoet_submit {
  width: auto !important;
  margin: 0 !important;
  border: 1.5px solid #388e3c !important;
  border-radius: 999px !important;
  padding: 0.7rem 1.2rem !important;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%) !important;
  color: #000000 !important;
  box-shadow: 0 0 22px rgba(56, 142, 60, 0.35);
  cursor: pointer;
}

#mailpoet_form_1 .mailpoet_message {
  flex-basis: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

#mailpoet_form_1 .mailpoet_message p {
  color: var(--accent-violet);
  font-weight: 700;
  margin: 0;
}

/* ── Testimonials ── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  background: linear-gradient(160deg, #0f1d12, #0a1810);
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 16px;
  padding: 1.4rem 1.3rem;
  box-shadow: 0 12px 26px rgba(108, 84, 176, 0.12);
  display: grid;
  gap: 0.65rem;
}

.testimonial-stars {
  color: #f5a623;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial-card p {
  margin: 0;
  color: black;
  font-size: 1.02rem;
  line-height: 1.55;
  font-style: italic;
}

.testimonial-author {
  color: var(--accent-violet);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ── Mail steps: give room for floating badge ── */
.mail-steps-grid {
  padding-top: 2.2rem;
}

/* ── Category orb hover ── */
.category-orb-item:hover .category-orb {
  transform: translateY(-4px);
  box-shadow: 0 0 0 3px rgba(61, 255, 122, 0.35), 0 14px 32px rgba(0, 0, 0, 0.12), inset 0 0 26px rgba(61, 255, 122, 0.18);
  border-color: rgba(61, 255, 122, 0.7);
}

.category-orb {
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, color 220ms ease;
}

/* ── Scroll fade-in ── */
.fade-in-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.48s ease, transform 0.48s ease;
}

.fade-in-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width:1128px) {
    .nav-search {
    min-width: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    cursor: pointer;
  }

  .nav-search-input {
    display: none;
  }

  .nav-search-btn {
    width: 35px;
    height: 35px;
    background: rgba(15, 29, 18, 0.85);
    border: 1px solid rgba(34, 197, 94, 0.22);
    color: #e8f5e0;
  }
}


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

  .nav-wrap {
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
  }

  .menu-tools {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    flex-wrap: nowrap;
  }




  .nav-search-btn:hover {
    color: var(--accent-violet);
    border-color: rgba(34, 197, 94, 0.55);
  }

  .hamburger-btn {
    display: inline-flex;
  }

  .menu {
    display: none;
    width: 100%;
    order: 99;
    flex-direction: column;
    gap: 0.2rem;
    padding-bottom: 0.8rem;
    margin-top: 0.5rem;
  }

  .menu.mobile-open {
    display: flex;
  }

  .about-showcase {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 0.9rem;
  }

  .about-mosaic {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 95px 120px 95px;
  }

  .express-showcase {
    grid-template-columns: 1fr;
  }

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

  .coverage-card li {
    font-size: 1.1rem;
  }

  .mail-steps-grid {
    grid-template-columns: 1fr;
    gap: 0.95rem;
  }

  .value-showcase {
    grid-template-columns: 1fr;
  }

  .feature-points {
    grid-template-columns: 1fr 1fr !important;
  }

  .strain-families-card {
    padding-right: 1rem;
  }

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

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .shop-sidebar {
    position: static;
  }

  .sidebar-nav {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 0.3rem;
  }

  body[data-page^="shop-"] .price-row {
    flex-direction: column;
  }
}

@media (max-width: 540px) {
  .feature-points {
    grid-template-columns: 1fr !important;
  }

  .brand-logo {
    height: 50px;
  }

  /* .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  } */

  .btn {
    font-size: 14px;
  }

  .hero {
    padding-bottom: 10px;
  }

  #nc-wrap {
   /* border: 1px solid #0d9555 !important;
    border-radius: 192px;*/
    overflow: hidden !important;

  }
}

/* ═══════════════════════════════════════════════
   STATS STRIP
   ═══════════════════════════════════════════════ */
.stats-strip {
  background-color: #050d07;
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: #000000;
  border-top: 1px solid rgba(61, 255, 122, 0.2);
  border-bottom: 1px solid rgba(34, 197, 94, 0.25);
  padding: 1.1rem 0;
  position: relative;
  overflow: hidden;
  display: block;
}

.stats-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 120px, rgba(61, 255, 122, 0.04) 120px, rgba(61, 255, 122, 0.04) 121px);
  pointer-events: none;
}

.stats-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  padding: 0.4rem 2.2rem;
  text-align: center;
}

.stat-num {
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #0f1d12;
  line-height: 1;
  background: #fff;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-num sup {
  font-size: 0.55em;
  vertical-align: super;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #fff;
}

.stat-divider {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, transparent, rgba(61, 255, 122, 0.4), transparent);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   RANGE CHIPS
   ═══════════════════════════════════════════════ */
.range-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  margin-top: 1.4rem;
}

.range-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.52rem 1.1rem;
  border-radius: 999px;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), rgba(61, 255, 122, 0.08));
  color: #3a1c8c;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  position: relative;
  overflow: hidden;
}

.range-chip::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet));
  opacity: 0;
  transition: opacity 200ms ease;
  border-radius: inherit;
}

.range-chip:hover {
  transform: translateY(-3px);
  border-color: var(--accent-cyan);
  box-shadow: 0 0 16px rgba(61, 255, 122, 0.35), 0 4px 18px rgba(34, 197, 94, 0.3);
  color: #fff;
  background: linear-gradient(120deg, var(--accent-cyan), var(--accent-violet));
}

.range-chip:hover::after {
  opacity: 0;
}

/* ═══════════════════════════════════════════════
   QUALITY TIER BAR
   ═══════════════════════════════════════════════ */
.tier-bar-wrap {
  background: linear-gradient(160deg, rgba(15, 29, 18, 0.85), rgba(10, 24, 16, 0.85));
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 20px;
  padding: 2rem 1.8rem 2.4rem;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.13);
}

.tier-bar-header {
  text-align: center;
  margin-bottom: 2.8rem;
}

.tier-bar-header h2 {
  margin: 0.4rem 0 0.5rem;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  color: #e8f5e0;
}

.tier-bar-header h2 span {
  color: var(--accent-violet);
}

.tier-bar-header p {
  color: black;
  margin: 0;
  font-size: 1.02rem;
}

.tier-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  align-items: start;
}

.tier-connector {
  position: absolute;
  top: 38px;
  left: calc(12.5%);
  right: calc(12.5%);
  height: 3px;
  background: linear-gradient(90deg, rgba(61, 255, 122, 0.3), var(--accent-violet), var(--accent-pink));
  border-radius: 999px;
  z-index: 0;
}

.tier-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 0.5rem;
  cursor: default;
  transition: transform 200ms ease;
}

.tier-node:hover {
  transform: translateY(-4px);
}

.tier-orb {
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: linear-gradient(145deg, #ffffff, #f6fbf8);
  border: 2px solid rgba(34, 197, 94, 0.4);
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1), 0 6px 20px rgba(34, 197, 94, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  transition: border-color 200ms, box-shadow 200ms;
}

.tier-icon {
  font-size: 0.78rem;
  color: #f5a623;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tier-node--top .tier-icon {
  color: #bfff00;
}

.tier-node:hover .tier-orb {
  border-color: var(--accent-cyan);
  box-shadow: 0 0 0 5px rgba(61, 255, 122, 0.18), 0 0 24px rgba(61, 255, 122, 0.3), 0 8px 24px rgba(34, 197, 94, 0.25);
}

.tier-node--top .tier-orb {
  border-color: var(--accent-violet);
  background: linear-gradient(145deg, #0d2818, #0d2818);
  box-shadow: 0 0 0 5px rgba(34, 197, 94, 0.2), 0 0 28px rgba(34, 197, 94, 0.35), 0 8px 24px rgba(163, 230, 53, 0.18);
}

.tier-stars {
  font-size: 0.78rem;
  color: #f5a623;
  letter-spacing: 0.04em;
  line-height: 1;
}

.tier-node--top .tier-stars {
  color: #bfff00;
}

.tier-info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.tier-info strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  color: #e8f5e0;
  letter-spacing: 0.04em;
}

.tier-info span {
  font-size: 0.84rem;
  color: black;
  line-height: 1.4;
}

.tier-node>strong {
  font-family: "Orbitron", sans-serif;
  font-size: 0.95rem;
  color: #e8f5e0;
  letter-spacing: 0.04em;
}

.tier-node>span:not(.tier-cta):not(.tier-stars) {
  font-size: 0.84rem;
  color: var(--text);
  line-height: 1.4;
}

.tier-cta {
  display: inline-block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-cyan);
  transform: translateY(-4px);
  transition: opacity 200ms ease, transform 200ms ease;
}

.tier-node:hover .tier-cta {
  opacity: 1;
  transform: translateY(0);
}

.tier-node--top .tier-cta {
  color: var(--accent-violet);
}

/* ── Mail Order flow ── */
.mail-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 960px;
  margin: 0 auto 1.2rem;
}

.mail-step {
  position: relative;
  padding: 1.2rem 1.1rem;
  border-radius: 14px;
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  display: grid;
  gap: 0.4rem;
}

.mail-step-num {
  font-family: "Orbitron", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: black;
  font-weight: 700;
}

.mail-step h3 {
  margin: 0;
  font-size: 1.1rem;
  color: #e8f5e0;
}

.mail-step p {
  margin: 0;
  font-size: 0.9rem;
  color: black;
  line-height: 1.45;
}

.province-chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Shop pagination ── */
.shop-pagination {
  display: flex;
  justify-content: center;
  margin-top: 1.6rem;
}

.pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.4rem;
  border-radius: 999px;
  background: rgba(15, 29, 18, 0.6);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.page-btn {
  min-width: 38px;
  height: 38px;
  padding: 0 0.7rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text);
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.page-btn:hover:not(:disabled) {
  background: rgba(61, 255, 122, 0.12);
  color: #3dff7a;
  border-color: rgba(61, 255, 122, 0.35);
}

.page-btn--active {
  background: #3dff7a;
  color: #000;
  border-color: #3dff7a;
}

.page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.page-gap {
  color: rgba(232, 245, 224, 0.5);
  padding: 0 0.2rem;
  font-size: 0.9rem;
}

.hero-tagline {
  font-family: "Orbitron", "Rajdhani", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lime));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0.4rem 0 1rem;
}

.province-chip-label {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 245, 224, 0.6);
  margin-right: 0.2rem;
}

/* ── Page banner (breadcrumb hero) ── */
.page-banner {
  position: relative;
  padding: 4rem 0 3.5rem;
  margin-bottom: 3rem;
  background:
    radial-gradient(circle at 20% 30%, rgba(61, 255, 122, 0.18), transparent 55%),
    radial-gradient(circle at 80% 70%, rgba(34, 197, 94, 0.25), transparent 55%),
    linear-gradient(160deg, #050d07 0%, #0a1810 100%);
  color: #e8f5e0;
  text-align: center;
  overflow: hidden;
}

.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(61, 255, 122, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(61, 255, 122, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}

.page-banner>.container {
  position: relative;
}

.page-banner-title {
  margin: 0 0 0.6rem;
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  background: linear-gradient(90deg, #0f1d12 0%, var(--accent-cyan) 50%, var(--accent-violet) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(234, 243, 255, 0.7);
}

.breadcrumb a {
  color: rgba(234, 243, 255, 0.85);
  border-bottom: 1px dashed transparent;
  transition: color 180ms ease, border-color 180ms ease;
}

.breadcrumb a:hover {
  color: var(--accent-cyan);
  border-bottom-color: var(--accent-cyan);
}

.breadcrumb-sep {
  color: var(--accent-violet);
  font-weight: 700;
}

.breadcrumb--light {
  margin-top: 1rem;
  color: rgba(232, 245, 224, 0.6);
}

.breadcrumb--light a {
  color: rgba(232, 245, 224, 0.85);
}

.breadcrumb--light a:hover {
  color: var(--accent-violet);
  border-bottom-color: var(--accent-violet);
}

/* ── About spread ── */
.about-spread {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.4rem;
  align-items: center;
  padding: 2rem;
  border-radius: 22px;
  background: linear-gradient(160deg, #0f1d12 0%, #0d1f14 100%);
  border: 1px solid rgba(34, 197, 94, 0.25);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
}

.about-spread::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 0%, rgba(61, 255, 122, 0.14), transparent 50%),
    radial-gradient(circle at 10% 100%, rgba(34, 197, 94, 0.14), transparent 50%);
  pointer-events: none;
}

.about-spread>* {
  position: relative;
}

.about-spread-art {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.18), 0 0 0 1px rgba(61, 255, 122, 0.2);
}

.about-spread-art img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.about-spread-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-spread-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
  color: #e8f5e0;
}

.about-spread-copy p:first-of-type::first-line {
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media (max-width: 880px) {
  .about-spread {
    grid-template-columns: 1fr;
    padding: 1.4rem;
    gap: 1.4rem;
  }

  .about-spread-art img {
    min-height: 240px;
  }
}

/* ── Single blog post: image full-width on top, content below (reuses the
   About page's .about-spread two-column layout, but a post's featured image
   + long-form content reads better stacked than side-by-side). ── */
.single-post {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.single-post .about-spread-art img {
  min-height: 0;
  aspect-ratio: 16 / 8;
}

.single-post .about-spread-copy h2,
.single-post .about-spread-copy h3 {
  margin: 0.6rem 0 0;
}

.single-post .about-spread-copy ul,
.single-post .about-spread-copy ol {
  margin: 0;
  padding-left: 1.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #e8f5e0;
}

.single-post .about-spread-copy li::marker {
  color: var(--line);
}

/* ── Blog post comment form (Astra core's comment_form() markup —
   #ast-commentform / .ast-row / .ast-grid-common-col — ships with no matching
   stylesheet in this build, so it was rendering as bare browser defaults). ── */
#respond {
  margin-top: 2rem;
  padding: 1.8rem 2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--line);
background: linear-gradient(160deg, #0f1d12 0%, #0d1f14 100%);
}
.wc-backward{
	background: linear-gradient(90deg, #81c784 0%, #4caf50 100%) !important; 
	color:black !important;
}

/* Astra core wraps the textarea in <fieldset class="comment-form-comment">,
   which renders with the browser's default fieldset border/padding. */
#respond fieldset {
  border: none;
  padding: 0;
  margin: 0 0 1rem;
  min-width: 0;
}

.post-navigation {
  margin-top: 2rem;
}

#reply-title {
  margin: 0 0 1rem;
  font-size: 1.3rem;
}

#respond .comment-notes,
#respond .required-field-message {
  color: var(--text-muted);
  font-size: 0.85rem;
}

#respond .required {
  color: var(--accent-lime);
}

#respond textarea,
#respond input[type="text"],
#respond input[type="email"],
#respond input[type="url"] {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 0.6rem 0.8rem;
  font-family: "Rajdhani", sans-serif;
  width: 100%;
  transition: box-shadow 160ms ease, border-color 160ms ease;
}

#respond textarea:focus,
#respond input:focus {
  outline: none;
  border-color: var(--line);
  box-shadow: 0 0 0 2px rgba(57, 255, 20, 0.35);
}

#respond ::placeholder {
  color: var(--text-muted);
  opacity: 0.8;
}

#respond .ast-comment-formwrap {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

#respond .ast-comment-formwrap>p {
  flex: 1 1 220px;
  margin: 0;
}

#respond .comment-form-cookies-consent {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 1rem 0 0;
}

#respond input[type="checkbox"] {
  accent-color: var(--line);
  width: 16px;
  height: 16px;
}

#respond .form-submit {
  margin: 1rem 0 0;
}

#respond #submit {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: #000000;
  border: 1.5px solid #388e3c;
  border-radius: 999px;
  padding: 0.7rem 1.6rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: "Orbitron", "Rajdhani", sans-serif;
  cursor: pointer;
  box-shadow: 0 0 22px rgba(56, 142, 60, 0.35);
  transition: transform 140ms ease, box-shadow 180ms ease;
}

#respond #submit:hover {
  transform: translateY(-1px);
}

/* ── Contact page ── */
.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-bottom: 2rem;
}

.contact-info-card {
  position: relative;
  padding: 1.6rem 1.4rem;
  border-radius: 16px;
  background: linear-gradient(160deg, #0f1d12 0%, #0d1f14 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(61, 255, 122, 0.18), transparent 55%);
  pointer-events: none;
}

.contact-info-card:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 255, 122, 0.55);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1), 0 0 22px rgba(61, 255, 122, 0.15);
}

.contact-info-card>* {
  position: relative;
}

.contact-info-icon {
  font-size: 2rem;
  filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.4));
}

.contact-info-card h3 {
  margin: 0;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #e8f5e0;
}

.contact-info-card p {
  margin: 0;
  color: #e8f5e0;
  font-weight: 600;
}

.contact-info-card a {
  color: var(--accent-violet);
  border-bottom: 1px dashed transparent;
  transition: border-color 180ms ease;
}

.contact-info-card a:hover {
  border-bottom-color: var(--accent-violet);
}

.contact-info-sub {
  font-size: 0.82rem;
  color: rgba(232, 245, 224, 0.6) !important;
  font-weight: 500 !important;
}

/* ── Contact form ── */
.contact-form-wrap {
  max-width: 760px;
  margin: 0 auto;
}

.contact-form {
  padding: 2rem;
  border-radius: 18px;
  background: linear-gradient(160deg, #0f1d12 0%, #0d1f14 100%);
  border: 1px solid rgba(34, 197, 94, 0.28);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
  position: relative;
  overflow: hidden;
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% -10%, rgba(61, 255, 122, 0.15), transparent 50%);
  pointer-events: none;
}

.contact-form-fields {
  display: grid;
  gap: 1rem;
  position: relative;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.contact-field {
  display: grid;
  gap: 0.4rem;
}

.contact-field>span {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(232, 245, 224, 0.7);
  font-weight: 700;
}


.contact-field input::placeholder {
  color: #e8f5e0;
}

.contact-field input,
.contact-field select,
.contact-field textarea::placeholder {
  color: #e8f5e0;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(34, 197, 94, 0.28);
  border-radius: 10px;
  background: rgba(15, 29, 18, 0.85);
  font-family: inherit;
  font-size: 0.95rem;
  color: #e8f5e0;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(61, 255, 122, 0.65);
  box-shadow: 0 0 0 3px rgba(61, 255, 122, 0.16);
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.contact-submit {
  justify-self: start;
  padding: 0.75rem 1.6rem;
  font-size: 0.95rem;
}

.contact-form-success {
  display: none;
  padding: 1.4rem;
  text-align: center;
  border-radius: 12px;
  background: rgba(61, 255, 122, 0.08);
  border: 1px solid rgba(61, 255, 122, 0.4);
  color: var(--accent-violet);
  font-weight: 700;
  margin: 0;
  position: relative;
}

@media (max-width: 720px) {
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .contact-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.4rem;
  }
}

.province-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 52px;
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  background: #4caf50;
  border: 1px solid rgba(61, 255, 122, 0.35);
  font-family: "Orbitron", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.08em;
}

/* ── Value banner ── */
.value-banner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1.4rem;
  align-items: stretch;
  padding: 1.8rem;
  border-radius: 20px;
  /* background: linear-gradient(90deg, #81c784 0%, #4caf50 100%); */
  color: black;
  position: relative;
  border: 2px solid #4caf50;
  overflow: hidden;
}

.value-banner-copy {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  align-items: flex-start;
}

.value-banner-copy h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.1;
  color: #ffffff;
}

.value-banner-copy h2 strong {
  color: #ffffff;
  background: none;
  -webkit-text-fill-color: #ffffff;
}

.value-banner-copy p {
  margin: 0;
  color: var(--text);
  max-width: 460px;
  line-height: 1.5;
}

.value-banner-copy .pill {
  background: --text;
  color: black;
  border-color: rgba(61, 255, 122, 0.5);
}

.value-banner-art {
  position: relative;
  min-height: 200px;
}

.value-tag {
  position: absolute;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: rgba(15, 29, 18, 0.85);
  border: 1px solid rgba(61, 255, 122, 0.45);
  color: black;

  backdrop-filter: blur(6px);
  box-shadow: 0 0 24px rgba(61, 255, 122, 0.18);
  white-space: nowrap;
}

.value-tag--a {
  top: 15%;
  left: 8%;
  border-color: rgba(61, 255, 122, 0.55);
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
}

.value-tag--b {
  top: 42%;
  right: 6%;
  border-color: rgba(34, 197, 94, 0.55);
  color: black;
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.25);
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
}

.value-tag--c {
  bottom: 14%;
  left: 22%;
  border-color: rgba(163, 230, 53, 0.55);
  color: black;
  box-shadow: 0 0 24px rgba(163, 230, 53, 0.22);
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
}

/* ── Cannabis Explorer ── */
.cannabis-explorer .section-title {
  margin-bottom: 1.6rem;
}

.explorer-subhead {
  text-align: center;
  margin: 2rem 0 1rem;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: black;
  font-weight: 700;
}

.explorer-subhead::before,
.explorer-subhead::after {
  content: "—";
  margin: 0 0.8rem;
  color: black;
}

.shop_all_product{
      text-align: center;
    margin-top: 35px;
}


@media (max-width: 820px) {
  .mail-flow {
    grid-template-columns: 1fr;
  }

  .value-banner {
    grid-template-columns: 1fr;
  }

  .value-banner-art {
    min-height: 160px;
  }
}

/* ═══════════════════════════════════════════════
   STRAIN PANELS
   ═══════════════════════════════════════════════ */
.strain-panels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.strain-panel {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.8rem 1.5rem 1.6rem;
  border-radius: 18px;
  border: 1.5px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: transform 200ms ease, box-shadow 200ms ease;
  cursor: pointer;
}

.strain-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  transition: opacity 220ms ease;
}

.strain-panel:hover {
  transform: translateY(-5px);
}

.strain-panel:hover::before {
  opacity: 0.16;
}

.strain-indica {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15);
}

.strain-indica::before {
  background: #4caf50;
}

.strain-indica:hover {
  box-shadow: 0 0 0 1px hwb(142 13% 23% / 0.5), 0 12px 36px rgba(34, 197, 94, 0.28);
}

.strain-sativa {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  border-color: rgba(61, 255, 122, 0.45);
  box-shadow: 0 8px 24px rgba(61, 255, 122, 0.12);
}

.strain-sativa::before {
  background: radial-gradient(circle at 30% 20%, var(--accent-cyan), transparent 70%);
}

.strain-sativa:hover {
  box-shadow: 0 0 0 1px rgba(61, 255, 122, 0.5), 0 12px 36px rgba(61, 255, 122, 0.22);
}

.strain-hybrid {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  border-color: rgba(163, 230, 53, 0.4);
  box-shadow: 0 8px 24px rgba(163, 230, 53, 0.12);
}

.strain-hybrid::before {
  background: radial-gradient(circle at 60% 30%, var(--accent-pink), transparent 70%);
}

.strain-hybrid:hover {
  box-shadow: 0 0 0 1px rgba(163, 230, 53, 0.45), 0 12px 36px rgba(163, 230, 53, 0.22);
}

.strain-panel-icon {
  font-size: 2.2rem;
  line-height: 1;
}

.strain-panel h3 {
  margin: 0;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: #e8f5e0;
}

.strain-tag {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: black;
  font-family: "Orbitron", sans-serif;
}

.strain-sativa .strain-tag {
  color: black;
}

.strain-hybrid .strain-tag {
  color: black;
}

.strain-panel>p:not(.strain-tag) {
  margin: 0;
  color: black;
  font-size: 0.98rem;
  line-height: 1.55;
  flex: 1;
}

.strain-cta {
  display: inline-block;
  margin-top: 0.4rem;
  font-family: "Orbitron", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: black;
  transition: letter-spacing 180ms ease;
}

.strain-sativa .strain-cta {
  color: black;
}

.strain-hybrid .strain-cta {
  color: black;
}

.strain-panel:hover .strain-cta {
  letter-spacing: 0.14em;
}

@media (max-width: 900px) {
  .strain-panels {
    grid-template-columns: 1fr;
  }

  .tier-track {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 0;
  }

  .tier-connector {
    display: none;
  }

  .stats-strip-inner {
    gap: 0.5rem;
  }

  .stat-item {
    padding: 0.4rem 1.2rem;
  }
}

@media (max-width: 540px) {
  .tier-track {
    grid-template-columns: 1fr 1fr;
  }

  .range-chips {
    gap: 0.45rem;
  }

  .stat-divider {
    display: none;
  }

  .stats-strip-inner {
    gap: 0.4rem;
  }

  .stat-item {
    padding: 0.4rem 0.8rem;
  }

  .nav-signin {
    padding: 0.45rem 0.75rem;
    font-size: 0.60rem;
    letter-spacing: 0.04em;
  }

.shop-results .product-grid {
    grid-template-columns: repeat(auto-fill, minmax(150px, 2fr));
}

}

/* ═══════════════════════════════════════════════
   SEARCH MODAL STYLES
   ═══════════════════════════════════════════════ */
.search-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 4rem 1rem 2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

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

.search-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 12, 7, 0.82);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.search-panel {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 580px;
  background: linear-gradient(165deg, #0f1d12 0%, #08130a 100%);
  border: 1px solid rgba(34, 197, 94, 0.45);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75), 0 0 30px rgba(34, 197, 94, 0.15);
  transform: translateY(-16px);
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.open .search-panel {
  transform: translateY(0);
}

.search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.2rem;
}

.search-head h3 {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  color: #e8f5e0;
}

.search-close-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.4rem;
  transition: color 180ms ease;
}

.search-close-btn:hover {
  color: #fff;
}

.search-modal-form {
  margin-bottom: 1rem;
}

.search-modal-input-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(34, 197, 94, 0.4);
  border-radius: 12px;
  padding: 0.75rem 1rem;
  color: #a5d6a7;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.search-modal-input-wrap:focus-within {
  border-color: #66bb6a;
  box-shadow: 0 0 0 3px rgba(102, 187, 106, 0.2);
}

.search-modal-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 1rem;
  font-family: inherit;
}

.search-modal-input::placeholder {
  color: rgba(232, 245, 224, 0.45);
}

.search-modal-results {
  max-height: 340px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding-right: 0.25rem;
}

.search-muted-hint {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
  padding: 1.5rem 0;
  margin: 0;
}

.search-result-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.search-result-item:hover {
  background: rgba(34, 197, 94, 0.12);
  border-color: rgba(34, 197, 94, 0.45);
  transform: translateX(4px);
}

.search-result-img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  background: #000;
}

.search-result-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.search-result-title {
  font-weight: 600;
  color: #fff;
  font-size: 0.95rem;
}
.search-result-category {
  font-size: 0.75rem;
  color: #a5d6a7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.search-result-price {
  font-weight: 700;
  color: var(--accent-violet);
  font-size: 0.95rem;
}


/* ═══════════════════════════════════════════════
   FAQ ACCORDION STYLES
   ═══════════════════════════════════════════════ */
.faq-section {
  padding: 3rem 0;
}
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 920px;
  margin: 0 auto;
}
.faq-item {
  background: linear-gradient(160deg, #0f1d12 0%, #08130a 100%);
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 220ms ease, box-shadow 220ms ease, transform 200ms ease;
}
.faq-item.active {
  border-color: rgba(34, 197, 94, 0.65);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.15), 0 0 20px rgba(34, 197, 94, 0.1);
}
.faq-question-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  background: transparent;
  border: none;
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  transition: color 180ms ease, background 180ms ease;
}
.faq-question-btn:hover {
  color: #a5d6a7;
  background: rgba(255, 255, 255, 0.02);
}

.faq-icon {
  display: grid;
  place-items: center;
  color: #a5d6a7;
  transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1), color 200ms ease;
  flex-shrink: 0;
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  color: #66bb6a;
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 320ms cubic-bezier(0, 1, 0, 1), opacity 260ms ease, padding 260ms ease;
  padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
  padding: 0 1.5rem 1.35rem 1.5rem;
  transition: max-height 320ms cubic-bezier(0.5, 0, 0.1, 1), opacity 260ms ease, padding 260ms ease;
}
.faq-answer p {
  margin: 0;
  color: #d1e7dd;
  line-height: 1.65;
  font-size: 1rem;
}
.faq-answer p + p {
  margin-top: 0.85rem;
}
.faq-answer ul {
  margin: 0.75rem 0 0;
  padding-left: 1.2rem;
  color: #d1e7dd;
  line-height: 1.65;
}
.faq-answer li {
  margin-bottom: 0.4rem;
}
.faq-question {
  margin: 0;
}
.faq-heading {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
  margin: 0 0 1.75rem;
}
.faq-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  max-width: 920px;
  margin: 0 auto 2rem;
}
.faq-tab {
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.3rem;
  border-radius: 999px;
  border: 1.5px solid rgba(76, 175, 80, 0.3);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 200ms ease, color 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}
.faq-tab:hover {
  color: #a5d6a7;
  border-color: rgba(76, 175, 80, 0.6);
}
.faq-tab.active {
  background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
  color: #000000;
  border-color: #388e3c;
  box-shadow: 0 0 18px rgba(56, 142, 60, 0.35);
}
.faq-container {
  display: none;
}
.faq-container.active {
  display: flex;
}

@media (max-width: 640px) {
  .faq-tabs {
    gap: 0.4rem;
  }
  .faq-tab {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
  }
  .faq-question-btn {
    padding: 1rem;
    font-size: 1rem;
  }
}
.subcategoru-card{
      background: linear-gradient(90deg, #81c784 0%, #4caf50 100%);
    border-color: rgba(163, 230, 53, 0.4);
    box-shadow: 0 8px 24px rgba(163, 230, 53, 0.12);
}


.tier-track a.tier-node{
  cursor: pointer;
}

.site-header.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    animation: stickyHeader 0.3s ease;
}

@keyframes stickyHeader {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}


