/*
Theme Name: Ganja Social
Theme URI: https://ganjasocial.com
Author: Ganja Social
Author URI: https://ganjasocial.com
Description: A premium cannabis marketplace theme for dispensaries, strains, deals, doctors, and community.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ganja-social
Tags: cannabis, marketplace, dispensary, e-commerce, dark
*/

/* =============================================
   RESET & BASE
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-950: #0d1a0f;
  --green-900: #142112;
  --green-800: #1c3118;
  --green-700: #224020;
  --green-600: #2c5228;
  --green-500: #3a6e34;
  --green-400: #4d8c47;
  --gold-400: #d4a843;
  --gold-300: #e2be6e;
  --gold-200: #f0d99b;
  --gold-100: #faf0d0;
  --cream: #f5eedb;
  --text-muted: rgba(245, 238, 219, 0.55);
  --card-bg: rgba(28, 49, 24, 0.75);
  --card-border: rgba(212, 168, 67, 0.2);
}

html { scroll-behavior: smooth; }

body {
  background: var(--green-950);
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 20% 10%, rgba(44,82,40,0.25) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 80% 90%, rgba(34,64,32,0.2) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

/* =============================================
   LAYOUT UTILITIES
   ============================================= */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.site-content {
  position: relative;
  z-index: 1;
}

section.gs-section {
  padding: 5rem 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.divider {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.05);
  margin: 0;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-outline {
  border: 1px solid var(--gold-400);
  background: transparent;
  color: var(--gold-300);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  cursor: pointer;
  letter-spacing: 0.03em;
  transition: background 0.2s, color 0.2s;
  display: inline-block;
}
.btn-outline:hover { background: var(--gold-400); color: var(--green-950); }

.btn-solid {
  background: var(--gold-400);
  border: none;
  color: var(--green-950);
  padding: 7px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.btn-solid:hover { background: var(--gold-300); color: var(--green-950); }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3rem;
  height: 64px;
  background: rgba(13, 26, 15, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 67, 0.15);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-300);
}
.nav-logo svg { width: 28px; height: 28px; fill: var(--gold-400); }
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* WordPress nav menu */
.primary-navigation { display: flex; align-items: center; }

.primary-navigation ul {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0; padding: 0;
}

.primary-navigation ul li a {
  color: var(--text-muted);
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.primary-navigation ul li a:hover,
.primary-navigation ul li.current-menu-item > a { color: var(--gold-300); }

.nav-auth {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* Hamburger for mobile */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(212,168,67,0.3);
  color: var(--gold-300);
  padding: 6px 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 18px;
}

/* =============================================
   AGE GATE
   ============================================= */
.age-gate {
  position: fixed;
  inset: 0;
  background: rgba(10, 20, 11, 0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(8px);
}
.age-gate.dismissed { display: none; }

.age-gate-box {
  background: var(--green-900);
  border: 1px solid rgba(212,168,67,0.3);
  border-radius: 20px;
  padding: 3rem;
  max-width: 400px;
  text-align: center;
}
.age-gate-box svg { fill: var(--gold-400); width: 48px; height: 48px; margin-bottom: 1rem; }
.age-gate-box h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.age-gate-box p { font-size: 14px; color: var(--text-muted); margin-bottom: 2rem; }
.age-gate-btns { display: flex; gap: 10px; justify-content: center; }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 2rem 4rem;
  overflow: hidden;
}

.hero-leaf {
  position: absolute;
  opacity: 0.07;
  fill: var(--gold-400);
  pointer-events: none;
}
.hero-leaf-left { left: -80px; top: 15%; width: 420px; height: 420px; transform: rotate(-25deg); }
.hero-leaf-right { right: -60px; top: 40%; width: 360px; height: 360px; transform: rotate(15deg); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(212, 168, 67, 0.12);
  border: 1px solid rgba(212, 168, 67, 0.3);
  color: var(--gold-300);
  padding: 5px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeUp 0.6s ease both;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  color: var(--gold-300);
  line-height: 1.0;
  letter-spacing: -0.01em;
  animation: fadeUp 0.6s 0.1s ease both;
  max-width: 800px;
}

.hero-tagline {
  color: var(--text-muted);
  font-size: 1.15rem;
  margin-top: 1rem;
  letter-spacing: 0.08em;
  animation: fadeUp 0.6s 0.2s ease both;
}

.hero-search {
  margin-top: 2.5rem;
  display: flex;
  align-items: center;
  background: rgba(28, 49, 24, 0.9);
  border: 1px solid rgba(212, 168, 67, 0.35);
  border-radius: 100px;
  padding: 6px 6px 6px 20px;
  width: min(560px, 95vw);
  animation: fadeUp 0.6s 0.3s ease both;
  transition: border-color 0.2s;
}
.hero-search:focus-within { border-color: var(--gold-400); }
.hero-search svg {
  width: 18px; height: 18px;
  fill: none; stroke: var(--text-muted); stroke-width: 2;
  flex-shrink: 0; margin-right: 10px;
}
.hero-search input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--cream);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}
.hero-search input::placeholder { color: var(--text-muted); }
.hero-search button {
  background: var(--gold-400);
  color: var(--green-950);
  border: none;
  padding: 10px 22px;
  border-radius: 100px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  flex-shrink: 0;
}
.hero-search button:hover { background: var(--gold-300); }

.hero-tags {
  display: flex;
  gap: 10px;
  margin-top: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.6s 0.4s ease both;
}
.hero-tag {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--text-muted);
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-tag:hover { border-color: var(--gold-400); color: var(--gold-300); }

.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  animation: fadeUp 0.6s 0.5s ease both;
}
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-400);
}
.hero-stat-label { font-size: 12px; color: var(--text-muted); letter-spacing: 0.06em; text-transform: uppercase; }

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 2rem;
}
.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: 0.4rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--cream);
}
.see-all {
  color: var(--gold-400);
  font-size: 13px;
  font-weight: 500;
  border-bottom: 1px solid rgba(212,168,67,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s;
}
.see-all:hover { border-color: var(--gold-400); }

/* =============================================
   CARDS & TAGS
   ============================================= */
.tag {
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  font-weight: 500;
}
.tag-sativa { background: rgba(99,153,34,0.2); color: #97c459; border: 1px solid rgba(99,153,34,0.3); }
.tag-indica { background: rgba(83,74,183,0.2); color: #afa9ec; border: 1px solid rgba(83,74,183,0.3); }
.tag-hybrid { background: rgba(212,168,67,0.15); color: var(--gold-300); border: 1px solid rgba(212,168,67,0.3); }
.tag-cbd { background: rgba(29,158,117,0.15); color: #5dcaa5; border: 1px solid rgba(29,158,117,0.3); }

.stars { color: var(--gold-400); font-size: 12px; margin-bottom: 8px; }

/* =============================================
   DISPENSARIES
   ============================================= */
.dispensary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.25rem;
}
.disp-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
  cursor: pointer;
}
.disp-card:hover { transform: translateY(-4px); border-color: rgba(212,168,67,0.5); }
.disp-card-image {
  height: 150px;
  background: var(--green-700);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.disp-card-image img { width: 100%; height: 100%; object-fit: cover; }
.disp-card-image .no-image {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: var(--green-700);
  font-size: 48px; opacity: 0.4;
}
.disp-card.featured { grid-column: span 2; }
.disp-card.featured .disp-card-image { height: 200px; }
.disp-card-body { padding: 1rem 1.1rem 1.2rem; }
.disp-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; font-weight: 700; color: var(--cream); margin-bottom: 3px;
}
.disp-card-type { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.disp-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.disp-meta {
  display: flex; justify-content: space-between;
  font-size: 12px; color: var(--text-muted);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 10px; margin-top: 8px;
}
.badge-open { background:rgba(13,26,15,0.8); color:#5dcaa5; font-size:11px; padding:4px 10px; border-radius:100px; font-weight:500; }
.badge-closed { background:rgba(13,26,15,0.8); color:#f09595; font-size:11px; padding:4px 10px; border-radius:100px; font-weight:500; }
.badge-featured { background:var(--gold-400); color:var(--green-950); font-size:11px; font-weight:700; padding:4px 12px; border-radius:100px; }

/* =============================================
   STRAIN EXPLORER
   ============================================= */
.strain-explorer-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 1.5rem;
  align-items: start;
}
.strain-wheel-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; gap: 1.2rem;
}
.strain-filter-btns { display: flex; gap: 8px; }
.filter-btn {
  padding: 7px 16px; border-radius: 100px;
  font-size: 12.5px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: all 0.2s;
  border: 1px solid rgba(212,168,67,0.2);
  background: transparent; color: var(--text-muted);
}
.filter-btn.active-sativa { background:rgba(99,153,34,0.2); color:#97c459; border-color:rgba(99,153,34,0.5); }
.filter-btn.active-indica { background:rgba(83,74,183,0.2); color:#afa9ec; border-color:rgba(83,74,183,0.5); }
.filter-btn.active-cbd { background:rgba(29,158,117,0.15); color:#5dcaa5; border-color:rgba(29,158,117,0.4); }
.thc-slider-wrap { width: 100%; }
.thc-slider-label { font-size:12px; color:var(--text-muted); margin-bottom:6px; display:flex; justify-content:space-between; }
.thc-slider-label span { color:var(--gold-300); font-weight:500; }
input[type=range] { width:100%; appearance:none; -webkit-appearance:none; height:4px; border-radius:4px; background:rgba(212,168,67,0.2); outline:none; }
input[type=range]::-webkit-slider-thumb { -webkit-appearance:none; appearance:none; width:16px; height:16px; border-radius:50%; background:var(--gold-400); cursor:pointer; }

.top-strains-list { display:flex; flex-direction:column; gap:1rem; }
.strain-list-card {
  background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px;
  padding:1rem 1.2rem; display:flex; align-items:center; gap:1rem;
  transition:border-color 0.2s, transform 0.2s; cursor:pointer;
}
.strain-list-card:hover { border-color:rgba(212,168,67,0.45); transform:translateX(4px); }
.strain-icon { width:52px; height:52px; border-radius:12px; display:flex; align-items:center; justify-content:center; flex-shrink:0; font-size:22px; }
.strain-info { flex:1; }
.strain-name { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--cream); }
.strain-desc { font-size:12px; color:var(--text-muted); }
.strain-thc { font-size:12px; color:var(--gold-300); font-weight:500; margin-top:3px; }
.strain-price { text-align:right; }
.strain-price .price { font-size:1.1rem; font-weight:600; color:var(--cream); }
.strain-price .per { font-size:11px; color:var(--text-muted); }

/* =============================================
   DEALS
   ============================================= */
.deals-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1.25rem; }
.deal-card {
  background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px;
  overflow:hidden; cursor:pointer; transition:transform 0.25s, border-color 0.25s;
}
.deal-card:hover { transform:translateY(-4px); border-color:rgba(212,168,67,0.5); }
.deal-img { height:130px; background:var(--green-700); position:relative; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.deal-img img { width:100%; height:100%; object-fit:cover; }
.deal-badge { position:absolute; top:10px; right:10px; background:var(--gold-400); color:var(--green-950); font-size:11px; font-weight:700; padding:4px 10px; border-radius:100px; letter-spacing:0.04em; }
.deal-body { padding:1rem; }
.deal-name { font-family:'Playfair Display',serif; font-size:1rem; font-weight:700; color:var(--cream); }
.deal-store { font-size:12px; color:var(--text-muted); margin-top:2px; }
.deal-footer { display:flex; justify-content:space-between; align-items:center; margin-top:12px; padding-top:10px; border-top:1px solid rgba(255,255,255,0.06); }
.deal-price-old { font-size:12px; color:var(--text-muted); text-decoration:line-through; }
.deal-price-new { font-size:1rem; font-weight:600; color:var(--gold-400); }
.deal-claim { background:rgba(212,168,67,0.12); border:1px solid rgba(212,168,67,0.3); color:var(--gold-300); padding:5px 12px; border-radius:100px; font-size:12px; font-weight:500; cursor:pointer; transition:background 0.2s; }
.deal-claim:hover { background:rgba(212,168,67,0.25); }

/* =============================================
   DOCTORS
   ============================================= */
.doctors-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem; }
.doctor-card {
  background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px;
  padding:1.2rem; text-align:center; transition:transform 0.2s, border-color 0.2s; cursor:pointer;
}
.doctor-card:hover { transform:translateY(-3px); border-color:rgba(212,168,67,0.4); }
.doctor-avatar {
  width:60px; height:60px; border-radius:50%; margin:0 auto 0.7rem;
  border:2px solid var(--gold-400); display:flex; align-items:center; justify-content:center;
  font-size:20px; font-weight:700; color:var(--gold-300); background:var(--green-800);
  overflow: hidden;
}
.doctor-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.doctor-name { font-size:13.5px; font-weight:600; color:var(--cream); }
.doctor-spec { font-size:11.5px; color:var(--text-muted); margin:3px 0 8px; }
.avail-badge { display:inline-block; padding:3px 10px; border-radius:100px; font-size:10.5px; font-weight:600; }
.avail-yes { background:rgba(29,158,117,0.15); color:#5dcaa5; border:1px solid rgba(29,158,117,0.3); }
.avail-no { background:rgba(228,75,74,0.12); color:#f09595; border:1px solid rgba(228,75,74,0.25); }

/* =============================================
   BRANDS
   ============================================= */
.brands-strip { display:flex; gap:1rem; overflow-x:auto; padding-bottom:0.5rem; scrollbar-width:none; }
.brands-strip::-webkit-scrollbar { display:none; }
.brand-pill {
  background:var(--card-bg); border:1px solid var(--card-border); border-radius:100px;
  padding:8px 18px; font-size:13px; font-weight:500; color:var(--text-muted);
  white-space:nowrap; cursor:pointer; transition:all 0.2s; flex-shrink:0;
}
.brand-pill:hover { color:var(--gold-300); border-color:rgba(212,168,67,0.4); }
.brand-pill.featured-brand { border-color:rgba(212,168,67,0.5); color:var(--gold-300); }

/* =============================================
   COMMUNITY / MAP
   ============================================= */
.community-grid { display:grid; grid-template-columns:1fr 1fr; gap:1.5rem; align-items:stretch; }
.map-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:16px; overflow:hidden; min-height:280px; position:relative; }
.map-placeholder { width:100%; height:100%; min-height:280px; background:linear-gradient(135deg,var(--green-800) 0%,var(--green-900) 100%); display:flex; align-items:center; justify-content:center; position:relative; overflow:hidden; }
.map-pin { position:absolute; width:14px; height:14px; background:var(--gold-400); border-radius:50% 50% 50% 0; transform:rotate(-45deg); box-shadow:0 0 0 4px rgba(212,168,67,0.2); }
.community-reviews { display:flex; flex-direction:column; gap:1rem; }
.review-card { background:var(--card-bg); border:1px solid var(--card-border); border-radius:14px; padding:1rem 1.2rem; transition:border-color 0.2s; cursor:pointer; }
.review-card:hover { border-color:rgba(212,168,67,0.4); }
.reviewer { display:flex; align-items:center; gap:10px; margin-bottom:8px; }
.reviewer-avatar { width:36px; height:36px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:600; flex-shrink:0; overflow:hidden; }
.reviewer-avatar img { width:100%; height:100%; object-fit:cover; border-radius:50%; }
.reviewer-name { font-size:13.5px; font-weight:600; color:var(--cream); }
.reviewer-meta { font-size:11px; color:var(--text-muted); }
.review-text { font-size:13px; color:var(--text-muted); line-height:1.55; }
.review-footer { margin-top:8px; font-size:11px; color:var(--text-muted); display:flex; gap:1rem; }

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  border-top: 1px solid rgba(212,168,67,0.12);
  padding: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
}
.footer-brand svg { fill:var(--gold-400); width:32px; height:32px; margin-bottom:0.7rem; }
.footer-brand-name { font-family:'Playfair Display',serif; font-size:1.2rem; font-weight:700; color:var(--gold-300); margin-bottom:0.5rem; }
.footer-brand p { font-size:13px; color:var(--text-muted); max-width:240px; line-height:1.7; }
.footer-col h4 { font-size:12px; font-weight:600; letter-spacing:0.1em; text-transform:uppercase; color:var(--gold-400); margin-bottom:1rem; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:7px; margin:0; padding:0; }
.footer-col ul li a { color:var(--text-muted); font-size:13px; transition:color 0.2s; }
.footer-col ul li a:hover { color:var(--cream); }

/* WordPress footer menu */
.footer-nav ul { list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:7px; }
.footer-nav ul a { color:var(--text-muted); font-size:13px; transition:color 0.2s; }
.footer-nav ul a:hover { color:var(--cream); }

.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.05);
  padding:1.5rem 3rem;
  display:flex; justify-content:space-between; align-items:center;
  max-width:1200px; margin:0 auto;
}
.footer-bottom p { font-size:12px; color:var(--text-muted); }
.age-badge { background:rgba(212,168,67,0.12); border:1px solid rgba(212,168,67,0.3); color:var(--gold-300); padding:5px 14px; border-radius:100px; font-size:12px; font-weight:600; }

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(20px); }
  to { opacity:1; transform:translateY(0); }
}
.fade-in { opacity:0; transform:translateY(24px); transition:opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity:1; transform:translateY(0); }

/* =============================================
   WORDPRESS SPECIFIC
   ============================================= */
.wp-block-image { margin:1.5rem 0; }
.aligncenter { text-align:center; }
.alignright { float:right; margin-left:1.5rem; }
.alignleft { float:left; margin-right:1.5rem; }

/* Standard WP post styles */
.entry-content p { margin-bottom:1rem; }
.entry-content ul, .entry-content ol { margin:1rem 0 1rem 1.5rem; }
.entry-content h2, .entry-content h3 { color:var(--cream); margin:1.5rem 0 0.75rem; }

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width:6px; }
::-webkit-scrollbar-track { background:var(--green-950); }
::-webkit-scrollbar-thumb { background:var(--green-600); border-radius:3px; }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .strain-explorer-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: repeat(2,1fr); }
  .disp-card.featured { grid-column: span 1; }
}

@media (max-width: 768px) {
  .site-header { padding: 0 1.5rem; }
  .primary-navigation { display: none; }
  .primary-navigation.open { display: flex; position:fixed; top:64px; left:0; right:0; background:rgba(13,26,15,0.98); padding:1.5rem; border-bottom:1px solid rgba(212,168,67,0.2); }
  .primary-navigation.open ul { flex-direction:column; gap:1rem; }
  .menu-toggle { display: block; }
  .nav-auth .btn-outline { display: none; }
  gs-section.gs-section { padding:3rem 1.5rem; }
  .hero-stats { gap:1.5rem; flex-wrap:wrap; justify-content:center; }
  .deals-grid { grid-template-columns: 1fr 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .site-footer { grid-template-columns:1fr 1fr; }
  .footer-bottom { flex-direction:column; gap:1rem; text-align:center; padding:1.5rem; }
}

@media (max-width: 480px) {
  .dispensary-grid { grid-template-columns: 1fr; }
  .deals-grid { grid-template-columns: 1fr; }
  .doctors-grid { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns:1fr; }
}
