:root {
  --bg: #f7faf5;
  --surface: #ffffff;
  --surface-soft: #eef6ea;
  --surface-accent: #fdf6e7;
  --text: #1b2718;
  --muted: #66735f;
  --line: #e1eadc;
  --green-900: #1c4a1a;
  --green-700: #2d6b2a;
  --green-500: #7ab648;
  --orange: #274f26;
  --line-brand: #06c755;
  --shadow: 0 14px 36px rgba(26, 56, 21, 0.08);
  --radius: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html[data-lang="en"] .lang-th {
  display: none !important;
}

html[data-lang="th"] .lang-en {
  display: none !important;
}

html[data-lang="th"] .lang-th {
  display: inline;
}

body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  color: var(--text);
  overflow-x: hidden;
  background:
    radial-gradient(circle at top right, rgba(122, 182, 72, 0.08), transparent 30%),
    radial-gradient(circle at bottom left, rgba(232, 118, 42, 0.08), transparent 24%),
    var(--bg);
}

body,
.page-shell,
main,
section,
.container,
.hero-copy,
.hero-card,
.card,
.info-card,
.contact-card,
.catalog-card,
.guide-card,
.product-panel,
.product-side-card,
.comparison-table-wrap,
.ai-share-panel,
.cta-band,
.map-card {
  min-width: 0;
}

a {
  color: inherit;
}

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

/* Lazy loading optimization */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

img[loading="lazy"].loaded {
  opacity: 1;
}

/* Image optimization for better performance */
.brand-logo {
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

/* Responsive image handling */
@media (max-width: 768px) {
  img {
    transform: translateZ(0); /* Hardware acceleration */
  }
}

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.page-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 252, 248, 0.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(28, 74, 26, 0.1);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 0;
}

.site-header .header-row {
  width: min(1920px, calc(100% - 32px));
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex: 0 0 auto;
}

.brand-logo {
  width: 88px;
  max-width: min(10vw, 88px);
  height: auto;
}

.brand-name {
  font-family: "Roboto", sans-serif;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.brand-name .accent {
  color: var(--green-500);
}

.header-nav-wrap {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  padding: 12px 16px;
  border: 1px solid rgba(28, 74, 26, 0.22);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(244, 249, 241, 0.98) 100%);
  box-shadow: 0 16px 34px rgba(28, 74, 26, 0.08);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(28, 74, 26, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
}

.lang-btn {
  border: none;
  background: transparent;
  color: #53604d;
  min-width: 42px;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  font-family: "Roboto", sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}

.lang-btn.active {
  background: var(--green-700);
  color: #fff;
}


.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.page-nav,
.section-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.page-nav {
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  row-gap: 8px;
}

.section-nav {
  padding-top: 10px;
  border-top: 1px solid rgba(28, 74, 26, 0.1);
  row-gap: 8px;
}

.nav-link {
  text-decoration: none;
  min-height: 44px;
  padding: 0 10px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  color: #53604d;
  white-space: nowrap;
  overflow-wrap: anywhere;
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, transform 0.2s, border-color 0.2s;
}

.nav-link:hover {
  background: rgba(122, 182, 72, 0.1);
  color: var(--green-900);
  border-color: rgba(28, 74, 26, 0.08);
}

.nav-link.active {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 22px rgba(45, 107, 42, 0.18);
}

.btn {
  border: none;
  text-decoration: none;
  border-radius: 12px;
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  line-height: 1.2;
  max-width: 100%;
  overflow-wrap: anywhere;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}

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

.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.guide-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff 0%, #f8fbf6 100%);
  box-shadow: var(--shadow);
}

.guide-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.guide-card h3,
.related-card h3 {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: 1.4rem;
  line-height: 1.35;
}

.guide-card p,
.related-card p,
.article-intro,
.article-prose p,
.article-prose li {
  color: var(--muted);
  line-height: 1.75;
}

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

.strain-guide-card {
  overflow: hidden;
  padding: 0;
}

.strain-guide-media {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, rgba(122, 182, 72, 0.22), rgba(253, 246, 231, 0.95));
}

.strain-guide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.strain-guide-body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
}

.strain-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.status-pill.live {
  background: rgba(67, 160, 71, 0.12);
  color: #256d2b;
}

.status-pill.off-menu {
  background: rgba(143, 102, 30, 0.12);
  color: #8a6110;
}

.status-pill.archive {
  background: rgba(45, 107, 42, 0.08);
  color: var(--green-900);
}

.status-pill.pilot {
  background: rgba(235, 129, 27, 0.12);
  color: #b15d10;
}

.strain-overview {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.strain-detail-card {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.strain-detail-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--green-900);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.strain-detail-card p,
.strain-detail-card li {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.strain-detail-card ul {
  margin: 0;
  padding-left: 20px;
}

.strain-article-image {
  margin: 22px 0 0;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid var(--line);
}

.strain-article-image img {
  width: 100%;
  height: auto;
  display: block;
}

.strain-article-aside {
  margin-top: 28px;
  display: grid;
  gap: 16px;
}

.strain-guide-note {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(45, 107, 42, 0.14);
  border-radius: 18px;
  background: rgba(248, 251, 246, 0.95);
}

.strain-guide-note p {
  margin: 0;
}

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

.faq-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.faq-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}

.faq-item h3 {
  margin: 0 0 10px;
}

.article-shell {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

.article-panel {
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.article-kicker {
  display: inline-flex;
  margin-bottom: 18px;
}

.article-back-link {
  margin: 0 0 18px;
}

.article-back-link a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-900);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
}

.article-back-link a:hover {
  color: var(--green-700);
}

.article-title {
  margin: 0;
  font-family: "Merriweather", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.12;
}

.article-intro {
  margin: 18px 0 0;
  font-size: 1.08rem;
}

.article-prose {
  margin-top: 36px;
}

.article-prose h2 {
  margin: 34px 0 16px;
  font-family: "Merriweather", serif;
  font-size: clamp(1.45rem, 2.8vw, 2rem);
  line-height: 1.25;
}

.article-prose h3 {
  margin: 24px 0 12px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.article-prose ul,
.article-prose ol {
  margin: 0 0 18px;
  padding-left: 22px;
}

.article-prose li + li {
  margin-top: 10px;
}

.article-prose a {
  color: var(--green-700);
  font-weight: 700;
  overflow-wrap: anywhere;
}

.article-divider {
  height: 1px;
  margin: 34px 0;
  background: var(--line);
}

.related-guides {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.related-card {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}

.article-cta {
  margin-top: 36px;
}

@media (max-width: 960px) {
  .guide-grid,
  .related-guides {
    grid-template-columns: 1fr;
  }

  .compare-grid,
  .strain-overview {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .article-panel {
    padding: 24px;
  }

  .article-intro {
    font-size: 1rem;
  }

  .ai-share-panel {
    padding: 24px;
  }
}

.btn-primary {
  background: var(--green-700);
  color: #fff;
  box-shadow: 0 10px 24px rgba(45, 107, 42, 0.18);
}

.btn-secondary {
  background: transparent;
  color: var(--green-900);
  border: 1px solid rgba(45, 107, 42, 0.2);
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
}

.btn-line {
  background: var(--line-brand);
  color: #fff;
}

.btn-ai-chatgpt {
  background: #111;
  color: #fff;
}

.btn-ai-grok {
  background: #1f2937;
  color: #fff;
}

.btn-ai-perplexity {
  background: #20808d;
  color: #fff;
}

.contact-icon-btn {
  min-width: 88px;
  width: auto;
  height: 56px;
  min-height: 56px;
  padding: 8px 12px;
  border-radius: 14px;
  flex: 0 0 auto;
  box-shadow: 0 12px 24px rgba(16, 39, 14, 0.12);
  flex-direction: column;
  gap: 4px;
}

.contact-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.contact-icon-btn::after {
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 0.52rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.btn-whatsapp.contact-icon-btn::after {
  content: "WHATSAPP";
}

.btn-line.contact-icon-btn::after {
  content: "LINE";
}

.hero-actions .contact-icon-btn,
.dual-contact .contact-icon-btn,
.header-actions .contact-icon-btn {
  justify-content: center;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.btn-soft {
  background: var(--surface-soft);
  color: var(--green-900);
}

.ai-share-panel {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 240, 0.95));
  box-shadow: var(--shadow);
}

.ai-share-panel h2 {
  margin-top: 14px;
}

.ai-share-panel p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.ai-share-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ai-share-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.88rem;
}

.desktop-only {
  display: inline-flex;
}

.mobile-toggle {
  display: none;
  border: none;
  background: linear-gradient(135deg, var(--green-700), var(--green-900));
  min-height: 52px;
  padding: 0 18px;
  border-radius: 16px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  z-index: 80;
  box-shadow: 0 14px 28px rgba(28, 74, 26, 0.18);
}

.mobile-menu {
  display: none;
  flex: 0 0 auto;
  width: auto;
  max-width: none;
  position: relative;
  z-index: 75;
  margin-left: auto;
}

.mobile-menu summary {
  list-style: none;
}

.mobile-menu summary::-webkit-details-marker {
  display: none;
}

.mobile-panel {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  padding: 14px;
  box-shadow: var(--shadow);
  pointer-events: auto;
}

.mobile-grid {
  display: grid;
  gap: 8px;
}

.mobile-toggle-icon {
  font-size: 1.15rem;
  line-height: 1;
}

.mobile-toggle-text {
  line-height: 1;
}

.mobile-grid .nav-link,
.mobile-grid .btn,
.mobile-grid .lang-switch {
  width: 100%;
}

.mobile-grid .nav-link,
.mobile-grid .btn {
  justify-content: flex-start;
  transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-grid .nav-link:hover {
  transform: translateX(4px);
  background: rgba(122, 182, 72, 0.1);
}

.mobile-grid .btn:hover {
  transform: translateX(4px);
}

.mobile-grid .lang-switch {
  justify-content: center;
}

main {
  flex: 1 1 auto;
}

/* Blog content styles */
.blog-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.blog-content h2 {
  font-family: "Merriweather", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--text);
  margin: 2.5rem 0 1.5rem;
  line-height: 1.2;
}

.blog-content h3 {
  font-family: "Merriweather", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  margin: 2rem 0 1rem;
  line-height: 1.3;
}

.blog-content p {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 1.5rem 0;
}

.blog-content ul {
  margin: 1.5rem 0;
  padding-left: 2rem;
}

.blog-content li {
  font-family: "Roboto", sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0.8rem 0;
}

@media (max-width: 768px) {
  .blog-content {
    padding: 30px 20px;
    margin: 0 16px;
  }
  
  .blog-content h2 {
    font-size: 1.6rem;
  }
  
  .blog-content h3 {
    font-size: 1.3rem;
  }
  
  .blog-content p,
  .blog-content li {
    font-size: 1rem;
  }
}

.hero {
  padding: 64px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 36px;
  align-items: stretch;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface-soft);
  border: 1px solid rgba(122, 182, 72, 0.3);
  color: var(--green-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Roboto", serif;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.35rem);
}

h2 {
  font-size: clamp(1.75rem, 3.2vw, 2.85rem);
}

h3 {
  font-size: 1.28rem;
}

.eyebrow + h1 {
  margin-top: 24px;
}

.eyebrow + h2 {
  margin-top: 18px;
}

.eyebrow + h3 {
  margin-top: 16px;
}

.lead {
  margin: 18px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.8;
  overflow-wrap: anywhere;
}

.hero-actions,
.dual-contact,
.stack-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions {
  margin-top: 28px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.hero-meta span {
  min-width: 0;
  max-width: 100%;
  overflow-wrap: anywhere;
}

.hero-support {
  margin-top: 24px;
  padding: 18px 20px;
  border: 1px solid rgba(122, 182, 72, 0.24);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(238, 246, 234, 0.92) 100%);
  box-shadow: 0 14px 30px rgba(28, 74, 26, 0.05);
}

.hero-support-title {
  font-size: 1rem;
  font-weight: 800;
  color: var(--green-900);
  letter-spacing: -0.01em;
}

.hero-support p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.home-hero .eyebrow + h1 {
  margin-top: 20px;
}

.home-hero .lead {
  margin-top: 16px;
  max-width: 690px;
}

.home-hero .hero-actions {
  margin-top: 24px;
}

.home-hero .btn-secondary {
  background: rgba(255, 255, 255, 0.92);
  color: var(--green-900);
  border: 1px solid rgba(28, 74, 26, 0.16);
  box-shadow: 0 12px 28px rgba(28, 74, 26, 0.08);
}

.home-hero .btn-secondary:hover {
  background: #fff;
}

.home-hero .hero-contact-row {
  margin-top: 10px;
}

.home-hero .hero-meta {
  margin-top: 20px;
  gap: 12px 20px;
}

.home-hero .hero-support {
  margin-top: 22px;
  max-width: 700px;
}

.hero-card,
.card,
.info-card,
.contact-card,
.catalog-card,
.step-card,
.highlight-card,
.rating-panel,
.review-card,
.budtender-panel,
.budtender-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  padding: 24px;
  align-self: start;
}

.hero-card > .eyebrow,
.rating-panel > .eyebrow,
.contact-card > .eyebrow,
.catalog-card > .eyebrow,
.budtender-copy > .eyebrow,
.cbd-sale-copy > .eyebrow {
  margin-bottom: 16px;
}

.hero-card-grid {
  display: grid;
  gap: 14px;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.stat-box {
  padding: 16px;
  border-radius: 14px;
  background: var(--surface-soft);
}

.stat-value {
  font-family: "Roboto", sans-serif;
  font-size: 1.7rem;
  color: var(--green-900);
}

.stat-label {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.8rem;
}

.section {
  padding: 36px 0 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 20px;
  margin-bottom: 22px;
}

.section-copy {
  max-width: 720px;
}

.section-copy h2 {
  line-height: 1.08;
}

.section-copy p,
.copy {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.section-copy-actions {
  margin-top: 22px;
  display: flex;
  justify-content: flex-start;
}

.section-head-copy-only {
  margin-bottom: 28px;
}

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

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.reviews-shell {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 18px;
  align-items: stretch;
}

.reviews-grid {
  align-items: stretch;
}

.card,
.info-card,
.contact-card,
.catalog-card,
.step-card,
.highlight-card,
.rating-panel,
.review-card,
.budtender-card {
  padding: 22px;
}

.card p,
.info-card p,
.contact-card p,
.catalog-card p,
.step-card p,
.highlight-card p,
.rating-panel p,
.review-card p,
.budtender-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.rating-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(145deg, #fff, #eef6ea);
}

.rating-value {
  margin-top: 16px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.8rem, 6vw, 4.3rem);
  font-weight: 900;
  line-height: 0.95;
  color: var(--green-900);
}

.rating-value span {
  color: #f4b000;
}

.review-card {
  position: relative;
  background: rgba(255, 255, 255, 0.98);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 18px;
  font-family: "Merriweather", serif;
  font-size: 3rem;
  line-height: 1;
  color: rgba(122, 182, 72, 0.24);
}

.review-source {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.budtender-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
  padding: 28px;
  align-items: start;
  background: linear-gradient(135deg, rgba(28, 74, 26, 0.96), rgba(45, 107, 42, 0.94));
  color: #fff;
}

.budtender-panel .eyebrow {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.18);
  color: #fff;
}

.budtender-panel .eyebrow::before {
  background: #fff3a5;
}

.budtender-copy h2 {
  line-height: 1.08;
}

.budtender-panel .lead,
.budtender-panel .copy {
  color: rgba(255, 255, 255, 0.82);
}

.budtender-card {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.budtender-card p,
.budtender-card li {
  color: rgba(255, 255, 255, 0.88);
}

.trust-list {
  margin: 16px 0 0;
  padding-left: 20px;
}

.trust-list li + li {
  margin-top: 10px;
}

.budtender-actions {
  margin-top: 18px;
}

.budtender-card .btn-secondary {
  background: #f4f8ef;
  color: var(--green-900);
  border: 1px solid rgba(255, 255, 255, 0.42);
  box-shadow: 0 12px 28px rgba(12, 28, 10, 0.22);
}

.budtender-card .btn-secondary:hover {
  background: #ffffff;
}

.icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-soft);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 14px;
}

.catalog-layout {
  display: grid;
  gap: 34px;
}

.catalog-group {
  display: grid;
  gap: 18px;
}

.catalog-group-header {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
}

.catalog-group-header .section-copy > .eyebrow {
  margin-bottom: 0;
}

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

.cbd-sale-banner {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.9fr);
  gap: 20px;
  align-items: center;
  padding: 26px 28px;
  border: 1px solid rgba(255, 191, 60, 0.34);
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 241, 189, 0.95), transparent 42%),
    linear-gradient(135deg, rgba(255, 247, 221, 0.98), rgba(255, 255, 255, 0.96));
  box-shadow: 0 22px 44px rgba(28, 74, 26, 0.08);
}

.cbd-sale-banner p {
  margin: 12px 0 0;
  color: var(--muted);
}

.cbd-sale-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.cbd-sale-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(28, 74, 26, 0.08);
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 800;
  text-align: center;
  box-shadow: 0 10px 18px rgba(28, 74, 26, 0.06);
}

.product-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--surface-soft);
  color: var(--green-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price {
  margin-top: 16px;
  font-family: "Roboto", sans-serif;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--orange);
}

.retail-card {
  padding: 0;
  overflow: hidden;
}

.retail-card-body {
  padding: 22px;
}

.retail-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.retail-flower {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #eef7e9, #fff9ed);
  font-size: 1.3rem;
}

.retail-product-image {
  width: 148px;
  height: 148px;
  object-fit: contain;
  display: block;
  margin: 16px auto 14px;
  flex: 0 0 auto;
  border-radius: 18px;
  background: #fff;
  padding: 8px;
  border: 1px solid rgba(28, 74, 26, 0.08);
  box-shadow: 0 8px 22px rgba(28, 74, 26, 0.08);
}

.retail-sub {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
}

.retail-desc {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.7;
}

.sale-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 8px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffe37a, #ffbf3c);
  color: #4e3300;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(255, 191, 60, 0.24);
}

.price-stack {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px solid rgba(28, 74, 26, 0.08);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255, 247, 213, 0.8), rgba(255, 255, 255, 0.98));
}

.price-old {
  color: #8d9089;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.price-new {
  color: var(--orange);
  font-family: "Roboto", sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  line-height: 1.1;
}

.price-note {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-stack-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.price-tier {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 12px 10px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(28, 74, 26, 0.08);
}

.price-tier-label {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.price-stack-split .price-note {
  grid-column: 1 / -1;
}

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 18px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-cell {
  padding: 12px 8px;
  text-align: center;
}

.price-cell + .price-cell {
  border-left: 1px solid var(--line);
}

.price-top {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.price-main {
  display: block;
  margin-top: 6px;
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--orange);
}

.retail-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding: 18px 22px 22px;
}

.retail-links .btn {
  flex: 1 1 190px;
  min-height: 44px;
}

.rx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.82fr);
  gap: 32px;
  align-items: stretch;
}

.rx-hero-copy {
  min-width: 0;
}

.rx-hero-grid > .qr-frame.clean {
  align-self: center;
  justify-self: center;
  width: min(100%, 480px);
  min-height: 0;
}

.qr-frame,
.map-card,
.cta-band {
  align-self: start;
}

.qr-frame {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.qr-image {
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 18px;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(27, 39, 24, 0.08);
}

.qr-image-square {
  display: block;
  width: min(100%, 300px);
  max-width: 300px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}

.qr-frame.clean {
  display: grid;
  place-items: center;
  padding: 18px;
}

.promo-strip {
  margin-top: 24px;
  padding: 20px 22px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f2faef 0%, #fff7ea 100%);
  border: 1px solid rgba(122, 182, 72, 0.25);
}

.promo-strip.offer-spotlight {
  padding: 24px 24px 22px;
  background: linear-gradient(135deg, #1f4f1c 0%, #2f712b 55%, #76bb43 100%);
  border: 1px solid rgba(122, 182, 72, 0.45);
  color: #fff;
  box-shadow: 0 18px 36px rgba(28, 74, 26, 0.18);
}

.rx-hero-grid > .promo-strip.offer-spotlight {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.34fr) minmax(280px, 0.78fr);
  align-items: center;
  gap: 22px;
  margin-top: 0;
  padding: 24px 28px;
  border-radius: 20px;
}

.b2b-hero-grid > .rx-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  border: 1px solid rgba(28, 74, 26, 0.1);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 245, 0.96));
  box-shadow: var(--shadow);
}

.b2b-hero-grid > .rx-hero-copy h1 {
  font-size: clamp(2.3rem, 4.2vw, 4.05rem);
  line-height: 1.03;
  letter-spacing: 0;
}

.b2b-hero-grid > .rx-hero-copy .lead {
  max-width: 780px;
  font-size: 1rem;
  line-height: 1.72;
}

.b2b-hero-grid .hero-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.b2b-hero-grid .hero-meta span {
  min-height: 42px;
  padding: 10px 12px;
  border: 1px solid rgba(28, 74, 26, 0.1);
  border-radius: 12px;
  background: rgba(238, 246, 234, 0.8);
  color: var(--green-900);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

.b2b-hero-qr {
  align-self: stretch;
  justify-self: stretch;
  width: 100%;
  padding: 28px 24px;
  background: linear-gradient(145deg, rgba(238, 246, 234, 0.98), rgba(255, 248, 235, 0.94));
  text-align: center;
}

.b2b-hero-qr .eyebrow {
  margin: 0 auto 12px;
}

.b2b-hero-qr h3 {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: 0;
}

.b2b-hero-qr .copy {
  max-width: 340px;
  margin: 12px auto 0;
  line-height: 1.55;
}

.b2b-hero-qr .qr-image {
  width: min(100%, 260px);
  margin-top: 18px;
  box-shadow: 0 14px 28px rgba(28, 74, 26, 0.1);
}

.b2b-hero-qr .qr-image-square {
  width: min(100%, 220px);
  max-width: 220px;
}

.b2b-hero-qr .stack-actions {
  justify-content: center;
  margin-top: 16px;
}

.rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip {
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: stretch;
  gap: 28px;
  padding: 28px;
  border-radius: 18px;
  background: linear-gradient(135deg, #174316 0%, #2d6b2a 58%, #78b94a 100%);
}

.b2b-hero-strip .promo-main {
  align-self: center;
}

.b2b-hero-strip .promo-summary,
.b2b-hero-strip .promo-points li {
  color: rgba(255, 255, 255, 0.94);
}

.b2b-hero-strip .promo-main h3 {
  max-width: 760px;
  font-size: clamp(1.55rem, 2.1vw, 2.15rem);
}

.b2b-hero-strip .promo-summary {
  max-width: 760px;
}

.b2b-hero-strip .promo-points {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  width: 100%;
  align-self: stretch;
}

.b2b-hero-strip .promo-points li {
  display: flex;
  align-items: center;
  min-height: 104px;
  padding: 16px 16px 16px 48px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-weight: 700;
  line-height: 1.35;
}

.b2b-hero-strip .promo-points li::before {
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
}

#warehouse-updates .contact-layout {
  grid-template-columns: 1fr;
}

.promo-main {
  min-width: 0;
}

.promo-main h3 {
  max-width: 620px;
  margin-top: 12px;
  font-family: "Roboto", sans-serif;
  font-size: clamp(1.25rem, 1.8vw, 1.75rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0;
}

.promo-summary {
  max-width: 650px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0;
}

.promo-strip.offer-spotlight h3,
.promo-strip.offer-spotlight p {
  color: #fff;
}

.promo-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.promo-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 112px;
  margin-top: 0;
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-align: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.promo-price-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.promo-offer strong {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3.35rem);
  line-height: 1;
  color: #fff3a5;
  white-space: nowrap;
  letter-spacing: 0;
}

.promo-offer span {
  font-family: "Roboto", sans-serif;
  max-width: 180px;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.promo-offer .promo-price-label {
  color: rgba(255, 255, 255, 0.78);
}

.promo-points {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.promo-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.96rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0;
}

.promo-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff3a5;
  box-shadow: 0 0 0 5px rgba(255, 243, 165, 0.14);
}

.promo-points strong {
  color: #fff3a5;
}

.promo-note {
  margin-top: 10px;
  font-size: 0.96rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.92);
}

.promo-note strong {
  color: #fff3a5;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-no {
  font-family: "Roboto", sans-serif;
  font-size: 2.4rem;
  color: rgba(122, 182, 72, 0.32);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.map-card {
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.map-frame {
  width: 100%;
  height: 360px;
  border: 0;
  display: block;
}

.map-copy {
  padding: 22px 24px 24px;
}

.warehouse-card {
  background: linear-gradient(135deg, rgba(245, 250, 240, 0.96), rgba(255, 248, 235, 0.98));
}

.warehouse-points {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}

.warehouse-point {
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(28, 74, 26, 0.08);
}

.warehouse-point strong {
  display: block;
  color: var(--green-900);
  font-size: 1rem;
}

.warehouse-point span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 16px;
}

.contact-card a {
  color: var(--green-700);
  text-decoration: none;
  font-weight: 700;
}

.contact-card a:hover {
  color: var(--green-900);
}

.cta-band {
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--green-900), var(--green-700));
  color: #fff;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  margin-top: 54px;
  padding: 34px 0 42px;
  background: #10270e;
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}

.footer-grid h3 {
  font-family: "Roboto", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid li,
.footer-grid a {
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  line-height: 1.8;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
}

.footer-follow {
  margin-top: 18px;
}

.footer-follow-label {
  display: block;
  margin-bottom: 8px;
  font-family: "Roboto", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand .brand-name {
  color: #fff;
}

.footer-logo {
  width: 180px;
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.45);
  font-size: 0.8rem;
}

.footer-ai-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-ai-links a {
  color: rgba(255, 255, 255, 0.52);
  text-decoration: none;
  line-height: 1.5;
}

.footer-ai-links a:hover {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1180px) {
  .header-row {
    gap: 12px;
  }

  .brand-logo {
    width: 80px;
    max-width: min(9vw, 80px);
  }

  .nav-link {
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .page-nav {
    gap: 2px;
  }

  .hero-grid,
  .rx-hero-grid,
  .grid-3,
  .catalog-grid,
  .steps-grid,
  .reviews-shell,
  .budtender-panel,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 921px) and (max-width: 1500px) {
  .header-row {
    gap: 10px;
  }

  .header-nav-wrap {
    flex: 1 1 0;
    min-width: 0;
    padding: 10px;
    border-radius: 18px;
  }

  .page-nav {
    min-width: 0;
    gap: 2px;
  }

  .page-nav .nav-link {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 5px;
    font-size: 0.63rem;
    line-height: 1.12;
    text-align: center;
    white-space: normal;
  }

  .lang-switch.desktop-only {
    flex: 0 0 auto;
    gap: 2px;
    padding: 3px;
  }

  .lang-switch.desktop-only .lang-btn {
    min-width: 36px;
    height: 34px;
    padding: 0 8px;
    font-size: 0.68rem;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .header-actions .contact-icon-btn {
    min-width: 58px;
    width: 58px;
    height: 52px;
    min-height: 52px;
    padding: 8px;
    border-radius: 12px;
  }

  .header-actions .contact-icon-btn::after {
    font-size: 0.46rem;
    letter-spacing: 0.08em;
  }
}

@media (max-width: 920px) {
  .desktop-only,
  .header-nav-wrap {
    display: none;
  }

  .header-row {
    justify-content: space-between;
  }

  .brand {
    margin-right: auto;
  }

  .mobile-toggle {
    display: inline-flex;
    margin-left: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 32px rgba(28, 74, 26, 0.25);
  }

  .mobile-toggle:active {
    transform: scale(0.98);
  }

  .mobile-menu {
    display: inline-block;
  }

  .mobile-menu .mobile-panel {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(340px, calc(100vw - 32px));
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(28, 74, 26, 0.15);
  }

  .mobile-menu[open] .mobile-panel {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }

  .hero,
  .section {
    padding-top: 28px;
  }

  .hero-grid,
  .rx-hero-grid,
  .grid-2,
  .grid-3,
  .reviews-shell,
  .reviews-grid,
  .catalog-grid,
  .contact-layout,
  .budtender-panel,
  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .rx-hero-grid > .promo-strip.offer-spotlight {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 24px;
  }

  .b2b-hero-grid > .rx-hero-copy,
  .b2b-hero-qr {
    padding: 24px;
  }

  .b2b-hero-grid .hero-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip {
    grid-template-columns: 1fr;
    padding: 24px;
  }

  .b2b-hero-strip .promo-points {
    grid-template-columns: 1fr;
  }

  .b2b-hero-strip .promo-points li {
    min-height: 0;
    padding: 12px 14px 12px 42px;
  }

  .b2b-hero-strip .promo-points li::before {
    left: 16px;
    top: 50%;
  }

  .promo-offer {
    align-items: flex-start;
    min-height: 0;
    padding: 18px;
    text-align: left;
  }

  .promo-offer span {
    max-width: none;
  }
}

@media (max-width: 640px) {
  .container,
  .site-header .header-row {
    width: calc(100% - 24px);
    max-width: calc(100vw - 24px);
  }

  .header-row {
    justify-content: space-between;
    gap: 12px;
  }

  .brand-logo {
    width: 64px;
    max-width: 64px;
  }

  .mobile-toggle {
    display: inline-flex !important;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    font-size: 0.76rem;
    letter-spacing: 0.07em;
  }

  .mobile-menu {
    display: inline-flex !important;
    margin-left: auto;
  }

  .mobile-menu .mobile-panel {
    width: min(320px, calc(100vw - 24px));
  }

  .lang-switch {
    width: 100%;
    justify-content: center;
  }

  .lang-btn {
    flex: 1 1 0;
  }

  h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .home-hero h1 {
    max-width: 100%;
    font-size: clamp(2rem, 8vw, 2.55rem);
    line-height: 1.12;
    letter-spacing: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-hero .lead,
  .home-hero .hero-support,
  .home-hero .hero-support p {
    max-width: 100%;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .home-hero .hero-meta {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-width: 100%;
  }

  .home-hero .hero-meta span {
    max-width: 100%;
  }

  html[lang^="ru"] .home-hero h1,
  html[lang^="th"] .home-hero h1 {
    font-size: clamp(1.85rem, 7.2vw, 2.35rem);
    line-height: 1.16;
  }

  html[lang^="th"] .home-hero h1,
  html[lang^="th"] .home-hero .lead,
  html[lang^="th"] .home-hero .hero-support p {
    line-break: anywhere;
    word-break: break-word;
  }

  h2 {
    font-size: clamp(1.5rem, 8vw, 2.15rem);
  }

  .b2b-hero-grid > .rx-hero-copy h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    line-height: 1.08;
  }

  .b2b-hero-grid > .rx-hero-copy .lead {
    font-size: 0.98rem;
    line-height: 1.68;
  }

  .b2b-hero-grid > .rx-hero-copy h1,
  .b2b-hero-grid > .rx-hero-copy .lead,
  .b2b-hero-grid .hero-meta,
  .b2b-hero-qr h3,
  .b2b-hero-qr .copy {
    max-width: min(100%, 300px);
  }

  .rx-hero-grid.b2b-hero-grid {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
    overflow: hidden;
  }

  .b2b-hero-grid > .rx-hero-copy,
  .b2b-hero-qr,
  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  html[lang="th"] .b2b-hero-grid > .rx-hero-copy h1,
  html[lang="th"] .b2b-hero-grid > .rx-hero-copy .lead,
  html[lang="th"] .b2b-hero-qr .copy {
    overflow-wrap: anywhere;
    word-break: break-all;
    line-break: anywhere;
  }

  .eyebrow {
    width: 100%;
    min-height: 0;
    padding: 8px 12px;
    border-radius: 14px;
    letter-spacing: 0.06em;
  }

  p,
  li,
  h1,
  h2,
  h3,
  .lead,
  .copy,
  .article-intro,
  .article-prose,
  .stat-label,
  .review-card,
  .guide-card,
  .catalog-card,
  .highlight-card {
    overflow-wrap: anywhere;
  }

  .hero-actions,
  .dual-contact,
  .stack-actions,
  .ai-share-actions {
    flex-direction: column;
  }

  .hero-actions .btn,
  .dual-contact .btn,
  .stack-actions .btn,
  .ai-share-actions .btn {
    width: 100%;
  }

  .hero-actions .contact-icon-btn,
  .dual-contact .contact-icon-btn {
    width: 100%;
    min-width: 0;
  }

  .section-head,
  .catalog-group-header {
    display: block;
  }

  .cbd-sale-banner {
    grid-template-columns: 1fr;
    padding: 22px;
  }

  .cbd-sale-points {
    justify-content: flex-start;
  }

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

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

  .product-kpis,
  .product-related-grid,
  .product-faq-grid {
    grid-template-columns: 1fr;
  }

  .price-cell + .price-cell {
    border-left: none;
    border-top: 1px solid var(--line);
  }

  .qr-frame {
    padding: 20px;
  }

  .qr-image {
    width: 100%;
    padding: 14px;
  }

  .qr-image-square {
    max-width: min(100%, 280px);
  }

  .rx-hero-grid > .promo-strip.offer-spotlight {
    padding: 22px;
  }

  .b2b-hero-grid .hero-meta {
    grid-template-columns: 1fr;
  }

  .b2b-hero-grid > .rx-hero-copy,
  .b2b-hero-qr,
  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip {
    border-radius: 14px;
  }

  .b2b-hero-strip .promo-points li {
    min-height: 0;
    padding: 12px 14px 12px 38px;
  }

  .b2b-hero-strip .promo-points {
    grid-template-columns: 1fr;
  }

  .b2b-hero-strip .promo-points li::before {
    top: 50%;
  }

  .map-frame {
    height: 300px;
  }
}


.product-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.9fr);
  gap: 28px;
  align-items: start;
}

.product-panel,
.product-side-card,
.comparison-table-wrap {
  background: rgba(255,255,255,0.94);
  border: 1px solid rgba(28, 74, 26, 0.1);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-panel {
  padding: 28px;
}

.product-side-card {
  padding: 22px;
  position: sticky;
  top: 96px;
}

.product-kpis,
.product-related-grid,
.product-faq-grid {
  display: grid;
  gap: 16px;
}

.product-kpis {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  margin: 22px 0;
}

.product-kpi,
.related-card,
.faq-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
  padding: 16px;
}

.product-kpi strong,
.related-card strong,
.faq-card h3 {
  display: block;
  margin-bottom: 8px;
}

.product-media {
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(28, 74, 26, 0.12);
  background: linear-gradient(135deg, rgba(122, 182, 72, 0.14), rgba(253, 246, 231, 0.88));
  margin-bottom: 22px;
}

.product-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  margin: 18px 0 26px;
}

.price-table th,
.price-table td,
.comparison-table th,
.comparison-table td {
  border: 1px solid var(--line);
  padding: 12px 14px;
  text-align: left;
  vertical-align: top;
}

.price-table th,
.comparison-table th {
  background: var(--surface-soft);
}

.product-cta-stack {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

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

.related-links a {
  text-decoration: none;
}

.comparison-table-wrap {
  padding: 24px;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.anchor-inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.anchor-inline-list a {
  text-decoration: none;
}

@media (max-width: 960px) {
  .product-page-grid {
    grid-template-columns: 1fr;
  }

  .product-side-card {
    position: static;
  }
}

@media (max-width: 760px) {
  .comparison-table-wrap {
    padding: 18px;
    overflow: hidden;
  }

  .comparison-table,
  .comparison-table thead,
  .comparison-table tbody,
  .comparison-table tr,
  .comparison-table th,
  .comparison-table td {
    display: block;
    width: 100%;
  }

  .comparison-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .comparison-table thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .comparison-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-top: 14px;
    overflow: hidden;
  }

  .comparison-table td {
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 11px 12px;
  }

  .comparison-table td:last-child {
    border-bottom: 0;
  }

  .comparison-table td::before {
    content: "";
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .comparison-table td:nth-child(1)::before {
    content: "Strain";
  }

  .comparison-table td:nth-child(2)::before {
    content: "Type";
  }

  .comparison-table td:nth-child(3)::before {
    content: "THC";
  }

  .comparison-table td:nth-child(4)::before {
    content: "Flavor";
  }

  .comparison-table td:nth-child(5)::before {
    content: "Price";
  }

  .comparison-table td:nth-child(6)::before {
    content: "Best for";
  }
}

@media (max-width: 640px) {
  .price-table,
  .price-table tbody,
  .price-table tr,
  .price-table th,
  .price-table td {
    display: block;
    width: 100%;
  }

  .price-table {
    border-collapse: separate;
    border-spacing: 0;
  }

  .price-table tr {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--surface);
    margin-top: 10px;
    overflow: hidden;
  }

  .price-table th,
  .price-table td {
    border: 0;
    padding: 10px 12px;
  }

  .price-table th {
    border-bottom: 1px solid var(--line);
  }

  .product-panel,
  .product-side-card,
  .comparison-table-wrap,
  .ai-share-panel,
  .card,
  .catalog-card,
  .guide-card,
  .rating-panel,
  .review-card,
  .map-card,
  .cta-band {
    border-radius: 14px;
  }

  .product-panel,
  .product-side-card {
    padding: 18px;
  }
}

@media (min-width: 921px) {
  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
    align-items: stretch;
    gap: 28px;
  }

  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip .promo-points {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    width: 100%;
    align-self: stretch;
  }

  .rx-hero-grid.b2b-hero-grid > .promo-strip.offer-spotlight.b2b-hero-strip .promo-points li {
    min-height: 104px;
    padding: 16px 16px 16px 48px;
  }
}

@media (max-width: 640px) {
  html,
  body,
  .page-shell,
  .wp-page-content {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .container,
  .site-header .header-row,
  .hero-grid,
  .home-hero .hero-copy,
  .home-hero .hero-card,
  .home-hero .hero-support,
  .home-hero .hero-meta {
    width: calc(100vw - 24px) !important;
    max-width: calc(100vw - 24px) !important;
    min-width: 0 !important;
  }

  .site-header .header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .mobile-menu {
    display: inline-flex !important;
    flex: 0 0 auto;
    margin-left: auto !important;
  }

  .mobile-toggle {
    display: inline-flex !important;
  }

  .home-hero h1,
  .home-hero .lead,
  .home-hero .hero-support-title,
  .home-hero .hero-support p,
  .home-hero .hero-meta,
  .home-hero .hero-meta span,
  .home-hero .highlight-card,
  .home-hero .highlight-card h3,
  .home-hero .highlight-card p {
    max-width: 100% !important;
    overflow-wrap: anywhere !important;
    word-break: break-word;
  }

  .home-hero h1 {
    font-size: clamp(1.78rem, 7vw, 2.2rem) !important;
    line-height: 1.16 !important;
    letter-spacing: 0 !important;
  }

  html[lang^="th"] .home-hero h1,
  html[lang^="th"] .home-hero .lead,
  html[lang^="th"] .home-hero .hero-support p,
  html[lang^="th"] .home-hero .highlight-card h3,
  html[lang^="th"] .home-hero .highlight-card p {
    word-break: break-all;
    line-break: anywhere;
  }

  html[lang^="ru"] .home-hero h1 {
    font-size: clamp(1.7rem, 6.6vw, 2.05rem) !important;
  }
}
