/* ===== CSS VARIABLES ===== */
:root {
  --green-darkest: #0A1A10;
  --green-dark: #122A1C;
  --green-primary: #1B3A2D;
  --green-secondary: #2D5A40;
  --green-light: #3D7A55;
  --gold-primary: #C8A84B;
  --gold-light: #E8C96A;
  --gold-dark: #9A7D30;
  --white: #F5F5F0;
  --white-soft: #DDD9CC;
  --gray: #8A8A7A;
  --card-bg: #1A3328;
  --card-border: #2A4A38;
  --overlay-bg: rgba(10, 26, 16, 0.96);
  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Inter', 'Helvetica Neue', sans-serif;
  --border-radius: 12px;
  --shadow: 0 4px 24px rgba(0,0,0,0.4);
  --shadow-gold: 0 4px 24px rgba(200, 168, 75, 0.15);
  --transition: all 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--green-dark);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

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

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

ul { list-style: none; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.2;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }
h4 { font-size: 1.1rem; }

.gold-text { color: var(--gold-primary); }
.section-subtitle {
  color: var(--white-soft);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ===== AGE GATE ===== */
#age-gate {
  position: fixed;
  inset: 0;
  background: var(--green-darkest);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#age-gate.hidden { display: none; }

.age-gate-box {
  background: var(--green-primary);
  border: 2px solid var(--gold-primary);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 480px;
  width: 100%;
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.age-gate-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 0 auto 1.5rem;
}

.age-gate-logo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--green-secondary);
  border: 2px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.5rem;
}

.age-gate-box h2 {
  color: var(--gold-primary);
  margin-bottom: 0.5rem;
  font-size: 1.8rem;
}

.age-gate-box p {
  color: var(--white-soft);
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.age-gate-box .age-number {
  font-size: 5rem;
  font-family: var(--font-heading);
  color: var(--gold-primary);
  line-height: 1;
  margin: 0.5rem 0;
}

.age-gate-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.age-gate-buttons .btn { flex: 1; max-width: 180px; }

.age-gate-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--gray);
}

.age-denied {
  display: none;
}

.age-denied.visible {
  display: block;
  color: #e74c3c;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.02em;
}

.btn-primary {
  background: var(--gold-primary);
  color: var(--green-darkest);
  border-color: var(--gold-primary);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline {
  background: transparent;
  color: var(--gold-primary);
  border-color: var(--gold-primary);
}
.btn-outline:hover {
  background: var(--gold-primary);
  color: var(--green-darkest);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--green-secondary);
  color: var(--white);
  border-color: var(--green-light);
}
.btn-secondary:hover {
  background: var(--green-light);
  transform: translateY(-2px);
}

.btn-danger {
  background: transparent;
  color: var(--gray);
  border-color: var(--gray);
}
.btn-danger:hover {
  background: rgba(255,255,255,0.05);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ===== NAVBAR ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 26, 16, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  padding: 0.85rem 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 50%;
}

.nav-logo-placeholder {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-secondary);
  border: 1.5px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.nav-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.1;
}

.nav-name span {
  display: block;
  font-size: 0.7rem;
  color: var(--gold-primary);
  font-family: var(--font-body);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white-soft);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-primary);
  background: rgba(200, 168, 75, 0.1);
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold-primary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.45rem 1rem;
  border: 1.5px solid var(--gold-dark);
  border-radius: 8px;
  transition: var(--transition);
}

.nav-phone:hover {
  background: var(--gold-primary);
  color: var(--green-darkest);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 2rem;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(45, 90, 64, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(200, 168, 75, 0.08) 0%, transparent 50%),
    linear-gradient(135deg, var(--green-darkest) 0%, var(--green-dark) 50%, var(--green-primary) 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(200,168,75,0.06) 1px, transparent 0);
  background-size: 40px 40px;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin: 0 auto 2rem;
  border-radius: 50%;
  border: 3px solid var(--gold-primary);
  box-shadow: 0 0 40px rgba(200,168,75,0.2);
}

.hero-logo-placeholder {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--green-primary);
  border: 3px solid var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  margin: 0 auto 2rem;
  box-shadow: 0 0 40px rgba(200,168,75,0.2);
}

.hero-badge {
  display: inline-block;
  background: rgba(200,168,75,0.15);
  border: 1px solid var(--gold-dark);
  color: var(--gold-primary);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  margin-bottom: 1rem;
}

.hero h1 .subtitle-line {
  display: block;
  font-size: 0.5em;
  color: var(--gold-primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 0.25rem;
}

.hero-desc {
  color: var(--white-soft);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-info-bar {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--white-soft);
  font-size: 0.9rem;
}

.hero-info-item .icon {
  color: var(--gold-primary);
  font-size: 1.1rem;
}

/* ===== SECTIONS ===== */
section { padding: 5rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 { margin-bottom: 0.75rem; }

.section-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-primary), var(--gold-dark));
  margin: 0.75rem auto 1rem;
  border-radius: 2px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: var(--green-primary);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-content h2 { margin-bottom: 1rem; }

.about-content p {
  color: var(--white-soft);
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border-radius: 10px;
  border-left: 3px solid var(--gold-primary);
}

.about-feature .feat-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.about-feature h4 { color: var(--gold-primary); margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.9rem; color: var(--white-soft); margin: 0; }

.about-map iframe {
  width: 100%;
  height: 360px;
  border-radius: var(--border-radius);
  border: 2px solid var(--card-border);
}

/* ===== CATEGORIES SECTION ===== */
.categories-section { background: var(--green-dark); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
}

.category-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.category-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  background: var(--green-primary);
}

.category-card .cat-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  display: block;
}

.category-card h4 {
  color: var(--white);
  margin-bottom: 0.25rem;
  font-size: 1rem;
}

.category-card p {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== FEATURED STRAINS ===== */
.strains-section { background: var(--green-primary); }

.strains-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.strain-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.strain-card:hover {
  border-color: var(--gold-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.strain-card-header {
  background: linear-gradient(135deg, var(--green-secondary), var(--green-light));
  padding: 2rem 1.5rem 1.5rem;
  text-align: center;
  position: relative;
}

.strain-emoji { font-size: 2.5rem; }

.strain-type-badge {
  display: inline-block;
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.badge-hybrid { background: rgba(200,168,75,0.25); color: var(--gold-primary); }
.badge-indica { background: rgba(100, 60, 160, 0.3); color: #c8a8f0; }
.badge-sativa { background: rgba(220, 120, 50, 0.25); color: #f0c878; }

.strain-card-body {
  padding: 1.25rem 1.5rem;
}

.strain-card-body h4 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.strain-card-body p {
  font-size: 0.85rem;
  color: var(--white-soft);
  margin-bottom: 0.75rem;
}

.strain-tags {
  display: flex;
  gap: 0.4rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.strain-tag {
  background: rgba(200,168,75,0.1);
  border: 1px solid var(--gold-dark);
  color: var(--gold-primary);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
}

.strain-actions {
  display: flex;
  gap: 0.5rem;
}

.strain-actions .btn { flex: 1; font-size: 0.8rem; padding: 0.5rem 0.75rem; }

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, var(--green-darkest), var(--green-primary));
  text-align: center;
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { color: var(--white-soft); margin-bottom: 2rem; font-size: 1.1rem; }

.cta-phone {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--gold-primary);
  margin-bottom: 1.5rem;
  display: block;
}

/* ===== CONTACT SECTION ===== */
.contact-section { background: var(--green-dark); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 1.5rem; }

.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-primary);
  border: 1.5px solid var(--card-border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--gold-primary);
}

.contact-item h4 {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.2rem;
  font-family: var(--font-body);
}

.contact-item a, .contact-item p {
  color: var(--white);
  font-size: 1rem;
  transition: var(--transition);
  margin: 0;
}

.contact-item a:hover { color: var(--gold-primary); }

.hours-table {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.hours-table h4 {
  padding: 1rem 1.5rem;
  background: var(--green-primary);
  color: var(--gold-primary);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
  border-top: 1px solid var(--card-border);
  font-size: 0.9rem;
}

.hours-row:nth-child(even) { background: rgba(255,255,255,0.02); }

.hours-row .day { color: var(--white-soft); }
.hours-row .time { color: var(--gold-primary); font-weight: 600; }
.hours-row .today { color: var(--white); font-weight: 600; }

.contact-map { margin-top: 1.5rem; }

.contact-map iframe {
  width: 100%;
  height: 350px;
  border-radius: var(--border-radius);
  border: 2px solid var(--card-border);
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  border: 1.5px solid var(--card-border);
  background: var(--card-bg);
  transition: var(--transition);
  color: var(--white);
}

.social-link:hover {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(200,168,75,0.08);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
footer {
  background: var(--green-darkest);
  border-top: 1px solid var(--card-border);
  padding: 2.5rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

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

.footer-logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 50%;
  border: 1px solid var(--gold-dark);
}

.footer-logo-placeholder {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-secondary);
  border: 1px solid var(--gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.footer-name {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--white);
}

.footer-name span {
  display: block;
  font-size: 0.65rem;
  color: var(--gold-dark);
  font-family: var(--font-body);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
}

.footer-links a {
  color: var(--gray);
  font-size: 0.85rem;
  transition: var(--transition);
}

.footer-links a:hover { color: var(--gold-primary); }

.footer-legal {
  color: var(--gray);
  font-size: 0.75rem;
  text-align: right;
}

.footer-legal p { margin-bottom: 0.2rem; }

/* ===== DISCLAIMER BAR ===== */
.disclaimer-bar {
  background: rgba(200,168,75,0.08);
  border-top: 1px solid var(--gold-dark);
  padding: 0.6rem 2rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--gray);
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--green-darkest), var(--green-primary));
  padding: 4rem 2rem 3rem;
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.page-hero h1 { margin-bottom: 0.5rem; }
.page-hero p { color: var(--white-soft); }

/* ===== MENU PAGE ===== */
.menu-section { background: var(--green-dark); padding: 3rem 2rem 5rem; }

.menu-filters {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--card-border);
  background: var(--card-bg);
  color: var(--white-soft);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font-body);
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--gold-primary);
  color: var(--gold-primary);
  background: rgba(200,168,75,0.08);
}

.menu-category-title {
  font-size: 1.4rem;
  color: var(--gold-primary);
  margin: 2.5rem 0 1.25rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.menu-category-title .cat-emoji { font-size: 1.2rem; }

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.menu-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.menu-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
  transform: translateY(-3px);
}

.menu-card-header {
  background: linear-gradient(135deg, var(--green-secondary), var(--green-light));
  padding: 1.75rem;
  text-align: center;
}

.menu-card-emoji { font-size: 2rem; }

.menu-card-body {
  padding: 1.25rem 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-card-body h4 {
  margin-bottom: 0.4rem;
  font-size: 1.1rem;
}

.menu-card-body p {
  color: var(--white-soft);
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: 1rem;
}

.menu-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--card-border);
  background: rgba(0,0,0,0.15);
}

.price-label {
  color: var(--gray);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.price-value {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 1rem;
}

.order-note-box {
  background: var(--green-primary);
  border: 1px solid var(--gold-dark);
  border-radius: var(--border-radius);
  padding: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.order-note-box p { color: var(--white-soft); margin-bottom: 1rem; }
.order-note-box .phone-big {
  font-size: 1.75rem;
  font-family: var(--font-heading);
  color: var(--gold-primary);
  display: block;
  margin-bottom: 0.5rem;
}

.tobacco-notice {
  background: rgba(200,168,75,0.07);
  border: 1px solid var(--gold-dark);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.8rem;
  color: var(--gold-primary);
  margin-top: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== COA PAGE ===== */
.coa-section { background: var(--green-dark); padding: 3rem 2rem 5rem; }

.coa-intro {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 1.75rem;
  margin-bottom: 2.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.coa-intro-icon { font-size: 2rem; flex-shrink: 0; }
.coa-intro h4 { color: var(--gold-primary); margin-bottom: 0.4rem; }
.coa-intro p { color: var(--white-soft); font-size: 0.9rem; margin: 0; }

.coa-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.coa-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  transition: var(--transition);
}

.coa-card:hover {
  border-color: var(--gold-primary);
  box-shadow: var(--shadow-gold);
}

.coa-card-header {
  background: linear-gradient(135deg, var(--green-secondary), var(--green-light));
  padding: 2rem;
  text-align: center;
  position: relative;
}

.coa-strain-emoji { font-size: 3rem; margin-bottom: 0.75rem; display: block; }

.coa-card-header h3 {
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.coa-card-body { padding: 1.5rem; }

.coa-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 0.9rem;
}

.coa-detail-row:last-child { border-bottom: none; }

.coa-detail-row .label { color: var(--gray); }
.coa-detail-row .value { color: var(--white); font-weight: 500; }
.coa-detail-row .value.thc { color: var(--gold-primary); font-weight: 700; }

.coa-card-footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--card-border);
  display: flex;
  gap: 0.75rem;
}

.coa-card-footer .btn { flex: 1; font-size: 0.85rem; }

.coa-pending {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  gap: 0.5rem;
  color: var(--gray);
  font-size: 0.9rem;
}

.coa-pending .pending-icon { font-size: 2rem; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-phone {
    display: none;
  }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: rgba(10, 26, 16, 0.98);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    gap: 0.5rem;
    border-bottom: 1px solid var(--card-border);
    z-index: 999;
  }

  .nav-links.open a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-toggle { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }
  .hero-ctas .btn { width: 100%; max-width: 300px; }

  .hero-info-bar { gap: 1rem; }

  .social-links { flex-wrap: wrap; }

  .footer-container { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }

  .coa-card-footer { flex-direction: column; }
}

@media (max-width: 480px) {
  section { padding: 3.5rem 1.25rem; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== UTILITIES ===== */
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ===== SCROLL ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--green-darkest); }
::-webkit-scrollbar-thumb { background: var(--green-secondary); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }
