/*
Theme Name: Berlin Weed 030
Theme URI: https://groupsberlin.com
Author: Berlin Weed Team
Author URI: https://groupsberlin.com
Description: Premium cannabis community theme for Berlin — Educational guides, products, and community connections
Version: 5.0.0
License: GPL v2 or later
Text Domain: berlin-weed
*/

/* ==============================================
   ROOT VARIABLES — Premium Design System
   ============================================== */
:root {
    /* Core Palette */
    --weed-dark: #060e09;
    --weed-darker: #040a06;
    --weed-forest: #0c1f14;
    --weed-leaf: #1a3d28;
    --weed-leaf-light: #25553a;
    --weed-emerald: #2d7a4a;
    --weed-gold: #c9a03d;
    --weed-gold-light: #dcb85a;
    --weed-gold-dim: rgba(201,160,61,0.15);
    --weed-cream: #f4efe6;
    --weed-cream-dim: rgba(244,239,230,0.7);

    /* Text */
    --text-light: #f4efe6;
    --text-body: #b8b2a6;
    --text-muted: #7a7568;
    --text-dark: #1a2a1f;

    /* Accents */
    --accent-red: #ef4444;
    --accent-green: #22c55e;
    --accent-blue: #3b82f6;
    --accent-purple: #a855f7;
    --accent-orange: #f97316;
    --accent-yellow: #eab308;
    --accent-teal: #14b8a6;

    /* Social */
    --telegram: #0088cc;
    --whatsapp: #25D366;
    --signal: #3a76f0;

    /* Typography */
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Transitions */
    --ease-out: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition: all 0.35s var(--ease-out);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.6s var(--ease-out);

    /* Shadows */
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.15);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.2);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.3);
    --shadow-gold: 0 5px 25px rgba(201,160,61,0.2);
    --shadow-gold-lg: 0 10px 40px rgba(201,160,61,0.3);
    --shadow-glow: 0 0 20px rgba(201,160,61,0.15);

    /* Borders */
    --border-subtle: 1px solid rgba(201,160,61,0.08);
    --border-light: 1px solid rgba(201,160,61,0.15);
    --border-medium: 1px solid rgba(201,160,61,0.25);
    --border-strong: 1px solid rgba(201,160,61,0.4);

    /* Radius */
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-full: 50px;

    /* Layout */
    --max-width: 1320px;
    --header-height: 70px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    background: var(--weed-dark);
    color: var(--text-body);
    font-family: var(--font-body);
    line-height: 1.7;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Cannabis Leaf Background Pattern */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120' opacity='0.018'%3E%3Cpath fill='none' stroke='%23c9a03d' stroke-width='0.8' d='M60,10 C55,25 40,30 30,25 C40,35 35,50 25,55 C35,55 45,65 45,75 C50,65 55,60 60,55 C65,60 70,65 75,75 C75,65 85,55 95,55 C85,50 80,35 90,25 C80,30 65,25 60,10Z'/%3E%3Ccircle cx='60' cy='45' r='3' fill='none' stroke='%23c9a03d' stroke-width='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 120px;
    pointer-events: none;
    z-index: 0;
}

/* Subtle radial glow */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 800px 600px at 15% 20%, rgba(30,74,46,0.12) 0%, transparent 70%),
        radial-gradient(ellipse 600px 800px at 85% 80%, rgba(201,160,61,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* ==============================================
   TYPOGRAPHY
   ============================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.15rem; }

a {
    color: var(--weed-gold);
    text-decoration: none;
    transition: var(--transition-fast);
}

a:hover {
    color: var(--weed-gold-light);
}

p {
    margin-bottom: 1rem;
    line-height: 1.75;
}

strong, b { color: var(--text-light); font-weight: 600; }

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

::selection {
    background: rgba(201,160,61,0.3);
    color: var(--text-light);
}

/* ==============================================
   LAYOUT
   ============================================== */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 2;
}

/* ==============================================
   BUTTONS — Premium System
   ============================================== */
.btn, .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--weed-leaf), var(--weed-leaf-light));
    border: 1px solid rgba(201,160,61,0.4);
    color: var(--text-light);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--weed-gold), var(--weed-gold-light));
    color: var(--weed-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(201,160,61,0.3);
    color: var(--weed-gold);
}

.btn-secondary:hover {
    background: var(--weed-gold-dim);
    border-color: var(--weed-gold);
    transform: translateY(-2px);
}

.btn-telegram {
    background: var(--telegram);
    color: white;
    border: none;
}
.btn-telegram:hover { background: #0099dd; color: white; transform: translateY(-2px); }

.btn-whatsapp {
    background: var(--whatsapp);
    color: white;
    border: none;
}
.btn-whatsapp:hover { background: #22bd5a; color: white; transform: translateY(-2px); }

/* Button glow effect */
.btn-glow {
    box-shadow: var(--shadow-gold);
}
.btn-glow:hover {
    box-shadow: var(--shadow-gold-lg);
}

/* ==============================================
   PRODUCT CARDS — Premium 3D Design
   ============================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    perspective: 1000px;
}

.product-card {
    position: relative;
    background: linear-gradient(145deg, rgba(15,42,26,0.95), rgba(10,31,18,0.95));
    border: 1px solid rgba(201,160,61,0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    cursor: pointer;
    transform-style: preserve-3d;
    will-change: transform;
}

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(201,160,61,0.2), transparent 40%, transparent 60%, rgba(201,160,61,0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: var(--transition);
    z-index: 1;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3), 0 0 30px rgba(201,160,61,0.08);
}

.product-card:hover::before {
    background: linear-gradient(135deg, rgba(201,160,61,0.5), rgba(201,160,61,0.1) 40%, rgba(201,160,61,0.05) 60%, rgba(201,160,61,0.3));
}

.product-card.hidden { display: none; }

/* Badge */
.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.badge-new     { background: rgba(34,197,94,0.85);  color: #fff; }
.badge-popular { background: rgba(249,115,22,0.85); color: #fff; }
.badge-limited { background: rgba(234,179,8,0.85);  color: #0a1f12; }
.badge-premium { background: linear-gradient(135deg, #a855f7, #7c3aed); color: #fff; }
.badge-soldout { background: rgba(239,68,68,0.85);  color: #fff; }

/* Product Image */
.product-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--weed-leaf), var(--weed-forest));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(10,31,18,0.8), transparent);
    pointer-events: none;
}

.product-big-emoji { font-size: 5rem; filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3)); }

/* Stock Badge */
.product-stock-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 3;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--accent-green);
    border: 1px solid rgba(34,197,94,0.2);
}
.stock-out {
    color: var(--accent-red);
    border-color: rgba(239,68,68,0.2);
}

/* In-stock pulse dot */
.product-stock-badge::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    margin-right: 5px;
    animation: pulse-dot 2s ease infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.5); }
}

/* Product Info */
.product-info {
    padding: 1.5rem;
    position: relative;
}

.product-category-tag {
    display: inline-block;
    background: var(--weed-gold-dim);
    color: var(--weed-gold);
    padding: 3px 12px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 0.4rem;
    font-weight: 500;
}

.product-stars {
    font-size: 0.82rem;
    color: var(--weed-gold);
    margin-bottom: 0.5rem;
}
.product-stars .rating-num {
    color: var(--text-muted);
    font-size: 0.72rem;
}

.product-desc {
    font-size: 0.8rem;
    color: var(--text-body);
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Effect pills */
.product-effects-row {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 0.75rem;
}

.effect-tag {
    background: rgba(168,184,154,0.08);
    color: #a8b89a;
    border: 1px solid rgba(168,184,154,0.15);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.product-card:hover .effect-tag {
    border-color: rgba(201,160,61,0.2);
    color: var(--weed-gold-light);
}

/* Spec pills */
.product-spec-row {
    display: flex;
    gap: 6px;
    margin-bottom: 0.75rem;
    flex-wrap: wrap;
}

.spec-pill {
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
}

.spec-thc {
    background: rgba(239,68,68,0.1);
    color: var(--accent-red);
    border: 1px solid rgba(239,68,68,0.15);
}

.spec-cbd {
    background: rgba(34,197,94,0.1);
    color: var(--accent-green);
    border: 1px solid rgba(34,197,94,0.15);
}

/* Price */
.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--weed-gold);
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

/* Contact Button */
.product-contact-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--weed-leaf), var(--weed-leaf-light));
    border: 1px solid rgba(201,160,61,0.35);
    color: var(--text-light);
    padding: 0.8rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
    overflow: hidden;
}

.product-contact-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--weed-gold), var(--weed-gold-light));
    opacity: 0;
    transition: opacity 0.35s ease;
}

.product-contact-btn:hover:not([disabled]) {
    color: var(--weed-dark);
    border-color: var(--weed-gold);
    transform: translateY(-1px);
    box-shadow: var(--shadow-gold);
}

.product-contact-btn:hover:not([disabled])::before {
    opacity: 1;
}

.product-contact-btn span {
    position: relative;
    z-index: 1;
}

/* ==============================================
   ARTICLE CARDS
   ============================================== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 1.5rem;
}

.article-card {
    background: linear-gradient(145deg, rgba(15,42,26,0.95), rgba(10,31,18,0.95));
    border: 1px solid rgba(201,160,61,0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.article-card:hover {
    transform: translateY(-5px);
    border-color: rgba(201,160,61,0.3);
    box-shadow: var(--shadow-md);
}

.article-image-link { display: block; }

.article-image {
    height: 200px;
    background: linear-gradient(135deg, var(--weed-leaf), var(--weed-forest));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.article-card:hover .article-image img {
    transform: scale(1.06);
}

.article-emoji { font-size: 3rem; }

.article-content { padding: 1.5rem; }

.article-cats { margin-bottom: 0.5rem; }

.article-cat-pill {
    display: inline-block;
    background: var(--weed-gold-dim);
    color: var(--weed-gold);
    padding: 2px 10px;
    border-radius: var(--radius-full);
    font-size: 0.62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 4px;
}

.article-title {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.article-title a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.article-title a:hover { color: var(--weed-gold); }

.article-meta-row {
    display: flex;
    gap: 1rem;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.article-excerpt {
    font-size: 0.82rem;
    color: var(--text-body);
    line-height: 1.6;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    color: var(--weed-gold);
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-fast);
}

.read-more:hover {
    color: var(--weed-gold-light);
    letter-spacing: 0.03em;
}

/* ==============================================
   FAQ SECTION
   ============================================== */
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: var(--border-subtle);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.2rem 0;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-body);
    transition: color 0.2s;
}

.faq-question:hover { color: var(--weed-gold); }

.faq-question span {
    color: var(--weed-gold);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: var(--text-body);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding-bottom: 1.2rem;
}

.faq-item.active .faq-question span {
    transform: rotate(45deg);
}

/* ==============================================
   NEWSLETTER
   ============================================== */
.newsletter-card {
    background: var(--weed-forest);
    border: var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3rem;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2rem 0;
}

.newsletter-form input {
    flex: 1;
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-full);
    border: var(--border-medium);
    background: rgba(255,255,255,0.04);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.2s;
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--weed-gold);
}

.newsletter-disclaimer {
    font-size: 0.7rem;
    color: var(--text-muted);
}

/* ==============================================
   GLASSMORPHISM UTILITIES
   ============================================== */
.glass {
    background: rgba(15,42,26,0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(201,160,61,0.1);
}

.glass-dark {
    background: rgba(6,14,9,0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.05);
}

/* ==============================================
   GRADIENT TEXT
   ============================================== */
.gradient-text {
    background: linear-gradient(135deg, var(--weed-gold), var(--weed-gold-light), #e8c96a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-green {
    background: linear-gradient(135deg, var(--weed-emerald), var(--accent-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
@media (max-width: 1024px) {
    .primary-nav { display: none; }
    .mobile-toggle { display: block; }
}

@media (max-width: 768px) {
    .container { padding: 0 1.25rem; }

    .products-grid,
    .articles-grid {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    h1 { font-size: 2rem; }
}

/* ==============================================
   ANIMATIONS
   ============================================== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes borderGlow {
    0%, 100% { border-color: rgba(201,160,61,0.15); }
    50% { border-color: rgba(201,160,61,0.4); }
}

/* Scroll Reveal */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ==============================================
   UTILITIES
   ============================================== */
.text-center { text-align: center; }
.text-gold { color: var(--weed-gold); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.p-4 { padding: 1rem; }
.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;
}
/* --- INLINE CSS MOVED FROM TEMPLATES --- */

/* From header.php */
/* ─── Inline critical CSS for above-the-fold ─── */
        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { background: #0a1f12; color: #b0aa9a; font-family: 'DM Sans', sans-serif; overflow-x: hidden; }

        /* Compliance Banner */
        .compliance-banner {
            background: linear-gradient(90deg, #0a1f12, #0f2a1a, #0a1f12);
            border-bottom: 1px solid rgba(201,160,61,0.15);
            padding: 0.4rem 0;
            text-align: center;
            font-size: 0.68rem;
            color: #c9a03d;
            font-weight: 500;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            position: relative;
            z-index: 1001;
        }
        .compliance-banner span { margin: 0 1rem; }

        /* Header */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(10,31,18,0.9);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(201,160,61,0.1);
            padding: 0.9rem 0;
            transition: all 0.4s ease;
        }
        .site-header.scrolled {
            background: rgba(10,31,18,0.98);
            padding: 0.6rem 0;
            border-bottom-color: rgba(201,160,61,0.2);
            box-shadow: 0 4px 30px rgba(0,0,0,0.25);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        /* Logo */
        .site-logo a {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.7rem;
            font-weight: 700;
            color: #f4efe6;
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            transition: color 0.2s;
        }
        .site-logo a:hover { color: #c9a03d; }
        .site-logo span { color: #c9a03d; }
        .site-logo small { font-size: 0.55rem; font-weight: 400; color: #7a7568; font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.15em; align-self: flex-end; margin-bottom: 4px; }

        /* Nav */
        .primary-nav { display: none; }
        @media (min-width: 1024px) { .primary-nav { display: block; } }
        .nav-menu { list-style: none; display: flex; gap: 2.5rem; align-items: center; }
        .nav-menu a { color: #b0aa9a; text-decoration: none; font-size: 0.82rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; transition: color 0.25s; position: relative; padding: 0.25rem 0; }
        .nav-menu a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: #c9a03d; transition: width 0.35s ease; }
        .nav-menu a:hover { color: #f4efe6; }
        .nav-menu a:hover::after { width: 100%; }
        .nav-menu .current-menu-item > a { color: #c9a03d; }
        .nav-menu .current-menu-item > a::after { width: 100%; }

        /* Header Actions */
        .header-actions { display: flex; align-items: center; gap: 1rem; }

        /* Header Social Buttons */
        .header-social-btns { display: none; }
        @media (min-width: 768px) { .header-social-btns { display: flex; gap: 0.6rem; } }
        .header-social-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            padding: 0.45rem 1rem;
            border-radius: 50px;
            font-size: 0.72rem;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.25s;
            border: 1px solid transparent;
        }
        .h-tg  { background: rgba(0,136,204,0.12); border-color: rgba(0,136,204,0.2); color: #0088cc; }
        .h-tg:hover  { background: #0088cc; color: white; }
        .h-wa  { background: rgba(37,211,102,0.12); border-color: rgba(37,211,102,0.2); color: #25D366; }
        .h-wa:hover  { background: #25D366; color: white; }
        .h-sig { background: rgba(58,118,240,0.12); border-color: rgba(58,118,240,0.2); color: #3a76f0; }
        .h-sig:hover { background: #3a76f0; color: white; }

        /* Mobile Toggle */
        .mobile-nav-toggle { display: flex; background: none; border: 1px solid rgba(201,160,61,0.2); color: #f4efe6; cursor: pointer; padding: 0.5rem 0.75rem; border-radius: 10px; transition: all 0.2s; }
        @media (min-width: 1024px) { .mobile-nav-toggle { display: none; } }
        .mobile-nav-toggle:hover { background: rgba(201,160,61,0.1); border-color: rgba(201,160,61,0.4); }

        /* Mobile Drawer */
        .mobile-menu-drawer { position: fixed; inset: 0; z-index: 9999; visibility: hidden; opacity: 0; transition: all 0.4s ease; pointer-events: none; }
        .mobile-menu-drawer.active { visibility: visible; opacity: 1; pointer-events: all; }
        .mobile-menu-overlay { position: absolute; inset: 0; background: rgba(10,31,18,0.9); backdrop-filter: blur(6px); }
        .mobile-menu-panel { position: absolute; top: 0; right: 0; width: min(340px, 88vw); height: 100%; background: #0a1f12; border-left: 1px solid rgba(201,160,61,0.12); padding: 2rem; transform: translateX(100%); transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94); overflow-y: auto; display: flex; flex-direction: column; }
        .mobile-menu-drawer.active .mobile-menu-panel { transform: translateX(0); }
        .mobile-menu-header { display: flex; justify-content: space-between; align-items: center; padding-bottom: 1.5rem; border-bottom: 1px solid rgba(201,160,61,0.1); margin-bottom: 1.5rem; }
        .mobile-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 700; color: #f4efe6; }
        .mobile-logo span { color: #c9a03d; }
        .mobile-menu-close { background: rgba(255,255,255,0.07); border: none; color: #b0aa9a; cursor: pointer; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .mobile-menu-close:hover { background: rgba(239,68,68,0.2); color: #ef4444; }
        .mobile-menu-nav { list-style: none; display: flex; flex-direction: column; gap: 0; }
        .mobile-menu-nav li { border-bottom: 1px solid rgba(201,160,61,0.06); }
        .mobile-menu-nav a { display: block; padding: 1.1rem 0; color: #f4efe6; font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; text-decoration: none; transition: all 0.2s; }
        .mobile-menu-nav a:hover { color: #c9a03d; padding-left: 0.5rem; }
        .mobile-social-section { margin-top: auto; padding-top: 1.5rem; border-top: 1px solid rgba(201,160,61,0.1); display: flex; flex-direction: column; gap: 0.75rem; }

        /* Age Gate */
        #age-gate {
            position: fixed;
            inset: 0;
            z-index: 999999;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.5rem;
            background: radial-gradient(ellipse 800px 600px at 30% 40%, rgba(30,58,42,0.4) 0%, transparent 70%), radial-gradient(ellipse 600px 800px at 70% 60%, rgba(95,111,82,0.15) 0%, transparent 70%), rgba(10,31,18,0.98);
            backdrop-filter: blur(30px);
        }
        #age-gate.hidden { opacity: 0; pointer-events: none; transition: opacity 0.6s ease; }
        .age-gate-box {
            background: linear-gradient(135deg, #0f2a1a, #0a1f12);
            border: 1px solid rgba(201,160,61,0.2);
            border-radius: 24px;
            max-width: 520px;
            width: 100%;
            padding: 3.5rem 3rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .age-gate-box::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #1e4a2e, #c9a03d, #1e4a2e); }
        .age-gate-leaf { font-size: 3.5rem; display: block; margin-bottom: 0.5rem; }
        .age-gate-brand { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: #f4efe6; font-weight: 500; }
        .age-gate-brand span { color: #c9a03d; }
        .age-gate-tagline { font-size: 0.65rem; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.25em; margin: 0.25rem 0 2rem; display: block; }
        .age-gate-divider { width: 40px; height: 1px; background: rgba(201,160,61,0.3); margin: 0 auto 2rem; }
        .age-gate-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: #f4efe6; margin-bottom: 0.75rem; font-weight: 400; }
        .age-gate-desc { color: #b0aa9a; font-size: 0.88rem; margin-bottom: 2.5rem; line-height: 1.7; }
        .age-gate-actions { display: flex; gap: 1rem; margin-bottom: 2rem; flex-wrap: wrap; }
        .age-gate-enter { flex: 1; min-width: 140px; padding: 1rem 1.5rem; background: linear-gradient(135deg, #1e4a2e, #2a6040); border: 1px solid rgba(201,160,61,0.4); color: #f4efe6; border-radius: 50px; font-size: 0.9rem; font-weight: 700; cursor: pointer; transition: all 0.3s; font-family: inherit; }
        .age-gate-enter:hover { background: #c9a03d; border-color: #c9a03d; color: #0a1f12; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,160,61,0.25); }
        .age-gate-leave { flex: 1; min-width: 140px; padding: 1rem 1.5rem; background: transparent; border: 1px solid rgba(185,178,166,0.2); color: #b0aa9a; border-radius: 50px; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s; font-family: inherit; }
        .age-gate-leave:hover { border-color: rgba(185,178,166,0.4); color: #f4efe6; }
        .age-gate-footer { border-top: 1px solid rgba(201,160,61,0.08); padding-top: 1.5rem; font-size: 0.72rem; color: #7a7568; line-height: 1.6; }

        /* Spacer for fixed header */
        .header-spacer { height: 100px; }
        @media (max-width: 768px) { .header-spacer { height: 80px; } }

        /* Main content wrapper */
        #main-content { flex: 1; }

/* From footer.php */
/* ─── Footer ─── */
        .site-footer {
            background: #06140b;
            border-top: 1px solid rgba(201,160,61,0.12);
            padding: 4rem 0 2rem;
            margin-top: 4rem;
        }
        .footer-container { max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }

        /* Brand */
        .footer-logo { font-size: 1.5rem; font-weight: 800; color: #f4efe6; font-family: 'Cormorant Garamond',serif; margin-bottom: 0.25rem; }
        .footer-logo span { color: #c9a03d; }
        .footer-tagline { font-size: 0.7rem; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 0.75rem; }
        .footer-desc { color: #7a7568; font-size: 0.78rem; line-height: 1.7; margin-bottom: 1rem; }
        .footer-social-icons { display: flex; gap: 0.75rem; }
        .footer-social-icon { font-size: 1.4rem; text-decoration: none; transition: transform 0.2s; display: inline-block; }
        .footer-social-icon:hover { transform: scale(1.2) translateY(-2px); }

        /* Columns */
        .footer-col-title { color: #c9a03d; font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1rem; }
        .footer-links { list-style: none; padding: 0; }
        .footer-links li { margin-bottom: 0.6rem; }
        .footer-links a { color: #7a7568; font-size: 0.82rem; text-decoration: none; transition: color 0.2s; }
        .footer-links a:hover { color: #c9a03d; }
        .footer-age-badge { display: inline-block; background: rgba(201,160,61,0.1); border: 1px solid rgba(201,160,61,0.2); color: #c9a03d; padding: 4px 12px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-top: 1rem; }
        .footer-legal-note { font-size: 0.68rem; color: #4a4a4a; margin-top: 1rem; line-height: 1.5; }

        /* Compliance */
        .footer-compliance { border-top: 1px solid rgba(201,160,61,0.08); padding-top: 2rem; margin-bottom: 2rem; text-align: center; }
        .footer-compliance p { color: #4a4a4a; font-size: 0.7rem; line-height: 1.7; max-width: 800px; margin: 0 auto 1.25rem; }
        .footer-badges { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
        .footer-badges span { color: #c9a03d; font-size: 0.68rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }

        /* Bottom */
        .footer-bottom { border-top: 1px solid rgba(255,255,255,0.03); padding-top: 1.5rem; text-align: center; }
        .footer-bottom p { color: #4a4a4a; font-size: 0.7rem; }
        .footer-built { margin-top: 0.25rem; }

        /* Legal Modal */
        .legal-modal { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.85); backdrop-filter: blur(12px); z-index: 99999; align-items: center; justify-content: center; padding: 2rem; }
        .legal-modal.open { display: flex; }
        .legal-modal-content { background: #0f2a1a; border: 1px solid rgba(201,160,61,0.25); border-radius: 20px; max-width: 540px; width: 100%; padding: 2.5rem; position: relative; max-height: 80vh; overflow-y: auto; }
        .modal-close { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.07); border: none; color: #b0aa9a; font-size: 1.2rem; width: 32px; height: 32px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
        .modal-close:hover { background: rgba(239,68,68,0.2); color: #ef4444; }
        #legal-modal-body { color: #b0aa9a; font-size: 0.88rem; line-height: 1.7; }
        #legal-modal-body h3 { color: #c9a03d; font-size: 1.1rem; margin-bottom: 1rem; }
        #legal-modal-body p { margin-bottom: 0.75rem; }
        #legal-modal-body strong { color: #f4efe6; }

        @media (max-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }
        @media (max-width: 640px)  { .footer-grid { grid-template-columns: 1fr; } .footer-badges { gap: 1rem; } }

/* From front-page.php */
/* ============================================================
   FRONT PAGE PREMIUM STYLES
   ============================================================ */

/* Hero */
.fp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #060e09 0%, #0c1f14 40%, #091810 100%);
}
.fp-hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 900px 700px at 20% 30%, rgba(30,74,46,0.3) 0%, transparent 70%),
        radial-gradient(ellipse 700px 900px at 80% 70%, rgba(14,45,26,0.15) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 50% 50%, rgba(201,160,61,0.03) 0%, transparent 60%);
    pointer-events: none;
}

/* Cannabis Leaf SVG Animations */
.fp-hero-leaves { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-leaf { position: absolute; opacity: 0.5; }
.leaf-1 { width: 300px; top: 5%; right: -5%; animation: leafFloat1 25s ease-in-out infinite; }
.leaf-2 { width: 200px; bottom: 10%; left: -3%; animation: leafFloat2 30s ease-in-out infinite; }
.leaf-3 { width: 150px; top: 40%; right: 10%; animation: leafFloat3 20s ease-in-out infinite; }

@keyframes leafFloat1 {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    25% { transform: rotate(8deg) translate(-10px, 15px); }
    50% { transform: rotate(-3deg) translate(5px, -10px); }
    75% { transform: rotate(5deg) translate(-5px, 8px); }
}
@keyframes leafFloat2 {
    0%, 100% { transform: rotate(0deg) translate(0, 0); }
    33% { transform: rotate(-10deg) translate(15px, -12px); }
    66% { transform: rotate(6deg) translate(-8px, 10px); }
}
@keyframes leafFloat3 {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(15deg) scale(1.1); }
}

/* Particles */
.fp-hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.particle {
    position: absolute;
    width: 3px; height: 3px;
    background: rgba(201,160,61,0.4);
    border-radius: 50%;
    animation: float-particle linear infinite;
}
.particle:nth-child(odd) { width: 2px; height: 2px; background: rgba(201,160,61,0.2); }
.particle:nth-child(1)  { left:5%;  top:80%; animation-duration:18s; animation-delay:-4s; }
.particle:nth-child(2)  { left:15%; top:60%; animation-duration:22s; animation-delay:-8s; }
.particle:nth-child(3)  { left:25%; top:90%; animation-duration:16s; animation-delay:-2s; }
.particle:nth-child(4)  { left:35%; top:70%; animation-duration:20s; animation-delay:-6s; }
.particle:nth-child(5)  { left:45%; top:85%; animation-duration:24s; animation-delay:-10s; }
.particle:nth-child(6)  { left:55%; top:55%; animation-duration:19s; animation-delay:-3s; }
.particle:nth-child(7)  { left:65%; top:75%; animation-duration:23s; animation-delay:-7s; }
.particle:nth-child(8)  { left:75%; top:65%; animation-duration:17s; animation-delay:-1s; }
.particle:nth-child(9)  { left:85%; top:80%; animation-duration:21s; animation-delay:-5s; }
.particle:nth-child(10) { left:92%; top:40%; animation-duration:15s; animation-delay:-9s; }
.particle:nth-child(11) { left:10%; top:30%; animation-duration:25s; animation-delay:-12s; }
.particle:nth-child(12) { left:50%; top:20%; animation-duration:14s; animation-delay:-11s; }
.particle:nth-child(13) { left:70%; top:30%; animation-duration:18s; animation-delay:-4s; }
.particle:nth-child(14) { left:30%; top:45%; animation-duration:22s; animation-delay:-8s; }
.particle:nth-child(15) { left:80%; top:15%; animation-duration:16s; animation-delay:-2s; }
.particle:nth-child(16) { left:20%; top:15%; animation-duration:20s; animation-delay:-6s; }
.particle:nth-child(17) { left:60%; top:90%; animation-duration:24s; animation-delay:-10s; }
.particle:nth-child(18) { left:40%; top:10%; animation-duration:19s; animation-delay:-3s; }
.particle:nth-child(19) { left:88%; top:70%; animation-duration:23s; animation-delay:-7s; }
.particle:nth-child(20) { left:3%;  top:50%; animation-duration:17s; animation-delay:-1s; }
.particle:nth-child(21) { left:48%; top:35%; animation-duration:26s; animation-delay:-13s; }
.particle:nth-child(22) { left:72%; top:50%; animation-duration:18s; animation-delay:-6s; }
.particle:nth-child(23) { left:12%; top:72%; animation-duration:20s; animation-delay:-9s; }
.particle:nth-child(24) { left:58%; top:8%;  animation-duration:22s; animation-delay:-4s; }
.particle:nth-child(25) { left:95%; top:55%; animation-duration:15s; animation-delay:-11s; }

@keyframes float-particle {
    0%   { transform: translateY(0) scale(1); opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.5; }
    100% { transform: translateY(-100vh) scale(1.5); opacity: 0; }
}

/* Hero Content */
.fp-hero-inner { position: relative; z-index: 2; padding-top: 8rem; padding-bottom: 6rem; }
.fp-hero-badge {
    display: inline-block;
    background: rgba(201,160,61,0.1);
    border: 1px solid rgba(201,160,61,0.25);
    color: #c9a03d;
    padding: 0.45rem 1.3rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
    animation: fadeInDown 0.8s ease both;
    backdrop-filter: blur(8px);
}
.fp-hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 500;
    color: #f4efe6;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.8s ease 0.2s both;
}
.fp-hero-title em { color: #c9a03d; font-style: italic; }
.fp-hero-sub {
    font-size: 1.15rem;
    color: #b8b2a6;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.fp-hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 4rem; animation: fadeInUp 0.8s ease 0.6s both; }
.fp-btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.9rem 2.2rem; border-radius: 50px;
    font-weight: 600; font-size: 0.9rem;
    text-decoration: none; transition: all 0.35s ease;
    cursor: pointer; border: none; font-family: 'DM Sans', sans-serif;
}
.fp-btn-primary  { background: linear-gradient(135deg, #1a3d28, #25553a); border: 1px solid rgba(201,160,61,0.4); color: #f4efe6; }
.fp-btn-primary:hover  { background: linear-gradient(135deg, #c9a03d, #dcb85a); color: #060e09; transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,160,61,0.3); }
.fp-btn-outline  { background: transparent; border: 1px solid rgba(201,160,61,0.3); color: #c9a03d; }
.fp-btn-outline:hover  { background: rgba(201,160,61,0.08); transform: translateY(-2px); color: #c9a03d; }
.fp-btn-telegram { background: #0088cc; color: white; border: none; }
.fp-btn-telegram:hover { background: #0099dd; transform: translateY(-2px); color: white; box-shadow: 0 8px 25px rgba(0,136,204,0.25); }

.fp-hero-stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 2rem; border-top: 1px solid rgba(201,160,61,0.1);
    padding-top: 2.5rem; animation: fadeInUp 0.8s ease 0.8s both;
}
.fp-stat { text-align: left; }
.fp-stat-num { display: block; font-size: 2.2rem; font-weight: 700; color: #c9a03d; font-family: 'Cormorant Garamond', serif; }
.fp-stat-lbl { font-size: 0.68rem; color: #7a7568; text-transform: uppercase; letter-spacing: 0.08em; }

/* Trust Bar */
.fp-trust-bar { background: rgba(6,14,9,0.95); border-bottom: 1px solid rgba(201,160,61,0.08); padding: 0.8rem 0; }
.fp-trust-inner { display: flex; flex-wrap: wrap; justify-content: center; gap: 2rem; max-width: 1320px; margin: 0 auto; padding: 0 2rem; }
.fp-trust-inner span { font-size: 0.7rem; font-weight: 500; color: #b8b2a6; white-space: nowrap; }

/* Sections */
.fp-section { padding: 6rem 0; position: relative; z-index: 2; }
.fp-how-section     { background: linear-gradient(180deg, #060e09, #0c1f14); }
.fp-products-section { background: linear-gradient(180deg, #0c1f14, #091810); }
.fp-strain-section  { background: #060e09; }
.fp-articles-section { background: linear-gradient(180deg, #091810, #0c1f14); }
.fp-legal-section { background: linear-gradient(135deg, #0c1f14, #060e09); }
.fp-community-section { background: #060e09; }
.fp-faq-section { background: linear-gradient(180deg, #0c1f14, #060e09); }
.fp-newsletter-section { background: #060e09; }

.fp-section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
.fp-eyebrow { display: inline-block; font-size: 0.68rem; font-weight: 700; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.fp-section-title { font-size: clamp(2rem, 4vw, 3rem); color: #f4efe6; margin-bottom: 1rem; }
.fp-section-sub { color: #b8b2a6; font-size: 1rem; line-height: 1.7; }

/* How It Works */
.fp-steps-grid { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.fp-step {
    text-align: center; padding: 2.5rem 2rem;
    background: rgba(15,42,26,0.4); border: 1px solid rgba(201,160,61,0.1);
    border-radius: 20px; max-width: 300px; flex: 1; min-width: 240px;
    transition: all 0.35s ease; position: relative;
}
.fp-step:hover { border-color: rgba(201,160,61,0.3); transform: translateY(-5px); box-shadow: 0 15px 40px rgba(0,0,0,0.2); }
.fp-step-num { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: linear-gradient(135deg, #c9a03d, #dcb85a); color: #060e09; font-size: 0.65rem; font-weight: 800; padding: 4px 14px; border-radius: 50px; letter-spacing: 0.1em; }
.fp-step-icon { font-size: 2.5rem; margin-bottom: 1rem; display: block; }
.fp-step h3 { color: #f4efe6; font-size: 1.15rem; margin-bottom: 0.5rem; }
.fp-step p { color: #b8b2a6; font-size: 0.85rem; line-height: 1.6; }
.fp-step-connector { padding: 0 0.5rem; flex-shrink: 0; }

/* Strain Guide */
.fp-strain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.fp-strain-card {
    background: rgba(15,42,26,0.5); border: 1px solid rgba(201,160,61,0.1);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    transition: all 0.35s ease; position: relative; overflow: hidden;
}
.fp-strain-card:hover { border-color: rgba(201,160,61,0.3); transform: translateY(-5px); }
.fp-strain-featured { border-color: rgba(201,160,61,0.25); background: rgba(201,160,61,0.05); }
.fp-strain-featured::before { content: '⭐ Most Popular'; position: absolute; top: 12px; right: 12px; background: rgba(201,160,61,0.2); color: #c9a03d; padding: 3px 12px; border-radius: 50px; font-size: 0.65rem; font-weight: 700; }
.fp-strain-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.fp-strain-card h3 { color: #f4efe6; font-size: 1.3rem; margin-bottom: 0.5rem; }
.fp-strain-tag { display: inline-block; background: rgba(201,160,61,0.12); color: #c9a03d; padding: 3px 14px; border-radius: 50px; font-size: 0.68rem; font-weight: 600; margin-bottom: 1rem; }
.fp-strain-card p { color: #b8b2a6; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.fp-strain-effects { display: flex; gap: 6px; justify-content: center; flex-wrap: wrap; }
.fp-strain-effects span { background: rgba(168,184,154,0.08); color: #a8b89a; border: 1px solid rgba(168,184,154,0.15); padding: 3px 12px; border-radius: 50px; font-size: 0.65rem; font-weight: 500; }

/* Category Filters */
.fp-cat-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.fp-cat-btn {
    padding: 0.5rem 1.2rem; border-radius: 50px;
    border: 1px solid rgba(201,160,61,0.15); background: rgba(255,255,255,0.02);
    color: #b8b2a6; font-size: 0.82rem; font-weight: 500;
    cursor: pointer; transition: all 0.25s ease; font-family: 'DM Sans', sans-serif;
}
.fp-cat-btn:hover, .fp-cat-btn.active {
    background: rgba(201,160,61,0.1); border-color: #c9a03d; color: #c9a03d;
}

/* Legal */
.fp-legal-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.fp-legal-content h2 { font-size: clamp(2rem,4vw,3rem); color: #f4efe6; margin-bottom: 1rem; }
.fp-legal-content h2 em { color: #c9a03d; font-style: italic; }
.fp-legal-content p { color: #b8b2a6; margin-bottom: 1.5rem; line-height: 1.7; }
.fp-legal-list { list-style: none; padding: 0; margin-bottom: 1.5rem; }
.fp-legal-list li { color: #b8b2a6; padding: 0.4rem 0; font-size: 0.95rem; }
.fp-legal-warning { background: rgba(234,179,8,0.06); border-left: 3px solid #eab308; padding: 0.8rem 1.2rem; border-radius: 0 10px 10px 0; font-size: 0.85rem; color: #b8b2a6; margin-bottom: 1.5rem; }
.fp-legal-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.fp-legal-card { background: rgba(255,255,255,0.025); border: 1px solid rgba(201,160,61,0.08); border-radius: 16px; padding: 1.75rem; text-align: center; transition: all 0.35s ease; }
.fp-legal-card:hover { border-color: rgba(201,160,61,0.3); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,0.15); }
.fp-legal-icon { font-size: 2.5rem; display: block; margin-bottom: 0.5rem; }
.fp-legal-detail strong { display: block; color: #f4efe6; font-size: 1.3rem; font-family: 'Cormorant Garamond', serif; }
.fp-legal-detail small { color: #7a7568; font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.06em; }

/* Community */
.fp-community-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 1.5rem; margin-bottom: 2rem; }
.fp-comm-card {
    background: rgba(15,42,26,0.5); border: 1px solid rgba(201,160,61,0.08);
    border-radius: 20px; padding: 2.5rem 2rem; text-align: center;
    transition: all 0.35s ease; position: relative; overflow: hidden;
}
.fp-comm-card:hover { transform: translateY(-6px); border-color: rgba(201,160,61,0.3); }
.comm-glow { position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; border-radius: 50%; opacity: 0; transition: opacity 0.5s; pointer-events: none; }
.comm-telegram .comm-glow { background: radial-gradient(circle, rgba(0,136,204,0.08) 0%, transparent 60%); }
.comm-whatsapp .comm-glow { background: radial-gradient(circle, rgba(37,211,102,0.08) 0%, transparent 60%); }
.comm-signal .comm-glow   { background: radial-gradient(circle, rgba(58,118,240,0.08) 0%, transparent 60%); }
.fp-comm-card:hover .comm-glow { opacity: 1; }
.comm-icon { font-size: 3rem; margin-bottom: 1rem; display: block; }
.fp-comm-card h3 { color: #f4efe6; font-size: 1.25rem; margin-bottom: 0.5rem; }
.fp-comm-card p { color: #b8b2a6; font-size: 0.85rem; margin-bottom: 1rem; line-height: 1.6; }
.comm-stats { display: flex; gap: 0.5rem; justify-content: center; flex-wrap: wrap; margin-bottom: 1.5rem; }
.comm-stats span { background: rgba(255,255,255,0.04); padding: 3px 12px; border-radius: 50px; font-size: 0.68rem; color: #b8b2a6; }
.fp-btn-comm { display: inline-block; padding: 0.75rem 2rem; border-radius: 50px; font-weight: 600; font-size: 0.85rem; text-decoration: none; transition: all 0.3s ease; }
.btn-tg  { background: #0088cc; color: white; }
.btn-tg:hover  { background: #0099dd; transform: translateY(-2px); color: white; box-shadow: 0 8px 25px rgba(0,136,204,0.25); }
.btn-wa  { background: #25D366; color: white; }
.btn-wa:hover  { background: #22bd5a; transform: translateY(-2px); color: white; box-shadow: 0 8px 25px rgba(37,211,102,0.25); }
.btn-sig { background: #3a76f0; color: white; }
.btn-sig:hover { background: #4488ff; transform: translateY(-2px); color: white; box-shadow: 0 8px 25px rgba(58,118,240,0.25); }

.fp-safety-box { display: flex; gap: 1rem; align-items: flex-start; background: rgba(234,179,8,0.05); border: 1px solid rgba(234,179,8,0.15); border-radius: 16px; padding: 1.25rem 1.5rem; max-width: 800px; margin: 0 auto; font-size: 0.85rem; color: #b8b2a6; line-height: 1.6; }
.fp-safety-box strong { color: #eab308; }
.safety-icon { font-size: 1.4rem; flex-shrink: 0; }

/* FAQ */
.fp-faq-grid { max-width: 750px; margin: 0 auto; }
.fp-faq-item { border-bottom: 1px solid rgba(201,160,61,0.06); }
.fp-faq-q {
    width: 100%; background: none; border: none; text-align: left;
    padding: 1.25rem 0; font-size: 0.95rem; font-weight: 600;
    color: #f4efe6; cursor: pointer; display: flex;
    justify-content: space-between; align-items: center; gap: 1rem;
    font-family: inherit; transition: color 0.2s;
}
.fp-faq-q:hover { color: #c9a03d; }
.faq-toggle { color: #c9a03d; font-size: 1.3rem; flex-shrink: 0; transition: transform 0.35s ease; }
.fp-faq-item.open .faq-toggle { transform: rotate(45deg); }
.fp-faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.fp-faq-item.open .fp-faq-a { max-height: 300px; }
.fp-faq-a p { padding-bottom: 1.2rem; color: #b8b2a6; font-size: 0.88rem; line-height: 1.7; }

/* Newsletter */
.fp-newsletter-card { background: rgba(15,42,26,0.5); border: 1px solid rgba(201,160,61,0.12); border-radius: 28px; padding: 3.5rem; text-align: center; max-width: 650px; margin: 0 auto; position: relative; overflow: hidden; }
.fp-newsletter-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, transparent, #c9a03d, transparent); }
.fp-newsletter-card h2 { color: #f4efe6; font-size: 2rem; margin-bottom: 0.75rem; }
.fp-newsletter-card p { color: #b8b2a6; margin-bottom: 1.5rem; }
.fp-newsletter-form { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.fp-newsletter-form input { flex: 1; min-width: 200px; padding: 0.85rem 1.25rem; border-radius: 50px; border: 1px solid rgba(201,160,61,0.2); background: rgba(255,255,255,0.04); color: #f4efe6; font-size: 0.9rem; font-family: 'DM Sans', sans-serif; }
.fp-newsletter-form input:focus { outline: none; border-color: #c9a03d; box-shadow: 0 0 0 3px rgba(201,160,61,0.1); }
.fp-newsletter-form button { padding: 0.85rem 2rem; border-radius: 50px; background: linear-gradient(135deg, #c9a03d, #dcb85a); color: #060e09; border: none; font-weight: 700; cursor: pointer; font-size: 0.9rem; transition: all 0.3s; font-family: 'DM Sans', sans-serif; }
.fp-newsletter-form button:hover { transform: translateY(-1px); box-shadow: 0 8px 20px rgba(201,160,61,0.3); }
.fp-newsletter-disclaimer { font-size: 0.68rem; color: #7a7568; margin-top: 1rem !important; }

/* Contact Modal */
.contact-modal {
    display: none; position: fixed; inset: 0; z-index: 99999;
    background: rgba(6,14,9,0.92); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
    align-items: center; justify-content: center; padding: 1.5rem;
}
.contact-modal.open { display: flex; animation: modalIn 0.35s ease; }
@keyframes modalIn { from { opacity:0; } to { opacity:1; } }
.contact-modal-inner {
    background: linear-gradient(135deg, #0c1f14, #060e09);
    border: 1px solid rgba(201,160,61,0.25);
    border-radius: 24px; padding: 2.5rem; max-width: 420px;
    width: 100%; text-align: center; position: relative;
    animation: modalSlideIn 0.35s ease;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
@keyframes modalSlideIn { from { opacity:0; transform:translateY(20px) scale(0.97); } to { opacity:1; transform:translateY(0) scale(1); } }
.modal-close-btn { position: absolute; top: 1rem; right: 1rem; background: rgba(255,255,255,0.06); border: none; color: #b8b2a6; font-size: 1.2rem; width: 34px; height: 34px; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all 0.2s; }
.modal-close-btn:hover { background: rgba(239,68,68,0.15); color: #ef4444; }
.modal-brand { font-size: 2.5rem; margin-bottom: 0.5rem; }
.contact-modal-inner h3 { color: #f4efe6; font-size: 1.4rem; margin-bottom: 0.25rem; }
.modal-subtitle { color: #b8b2a6; font-size: 0.85rem; margin-bottom: 1.5rem; }
.modal-options { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.modal-option { display: flex; align-items: center; gap: 1rem; padding: 1rem 1.25rem; border-radius: 16px; text-decoration: none; transition: all 0.25s; border: 1px solid transparent; }
.modal-option > div { flex: 1; text-align: left; }
.modal-option strong { display: block; color: #f4efe6; font-size: 0.9rem; }
.modal-option small { color: #b8b2a6; font-size: 0.75rem; }
.modal-opt-icon { font-size: 1.8rem; }
.modal-arrow { color: #c9a03d; font-size: 1.1rem; transition: transform 0.2s; }
.modal-option:hover .modal-arrow { transform: translateX(4px); }
.tg-option  { background: rgba(0,136,204,0.08); border-color: rgba(0,136,204,0.15); }
.tg-option:hover  { background: rgba(0,136,204,0.15); border-color: #0088cc; }
.wa-option  { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.15); }
.wa-option:hover  { background: rgba(37,211,102,0.15); border-color: #25D366; }
.sig-option { background: rgba(58,118,240,0.08); border-color: rgba(58,118,240,0.15); }
.sig-option:hover { background: rgba(58,118,240,0.15); border-color: #3a76f0; }
.modal-disclaimer { font-size: 0.7rem; color: #7a7568; }

/* Responsive */
@media (max-width: 1024px) {
    .fp-legal-grid { grid-template-columns: 1fr; }
    .fp-legal-visual { margin-top: 2rem; }
    .fp-steps-grid { flex-direction: column; }
    .fp-step-connector { transform: rotate(90deg); margin: 0.5rem 0; }
}
@media (max-width: 768px) {
    .fp-hero-stats { grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
    .fp-section { padding: 4rem 0; }
    .products-grid, .articles-grid { grid-template-columns: 1fr; }
    .fp-newsletter-card { padding: 2rem 1.5rem; }
    .fp-legal-visual { grid-template-columns: 1fr 1fr; }
    .container { padding: 0 1.25rem; }
    .fp-strain-grid { grid-template-columns: 1fr; }
}

/* From archive.php */
/* Archive Page */
.archive-page { background: #0a1f12; min-height: 100vh; padding: 6rem 0 4rem; }

/* Header */
.arch-header { text-align: center; margin-bottom: 3rem; }
.arch-eyebrow { display: inline-block; font-size: 0.7rem; font-weight: 600; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 0.75rem; }
.arch-title { font-size: clamp(2rem,5vw,3.5rem); color: #f4efe6; margin-bottom: 0.75rem; }
.arch-subtitle { color: #b0aa9a; font-size: 1rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

/* Filter Tabs */
.arch-filter-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 2rem; }
.arch-tab { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.5rem 1.2rem; border-radius: 50px; border: 1px solid rgba(201,160,61,0.2); background: rgba(255,255,255,0.03); color: #b0aa9a; font-size: 0.82rem; font-weight: 500; text-decoration: none; transition: all 0.25s; }
.arch-tab:hover, .arch-tab.active { background: rgba(201,160,61,0.12); border-color: #c9a03d; color: #c9a03d; }
.arch-tab-count { background: rgba(201,160,61,0.15); color: #c9a03d; font-size: 0.65rem; padding: 1px 6px; border-radius: 50px; margin-left: 2px; }

/* Search */
.arch-search { max-width: 480px; margin: 0 auto 2.5rem; }
.arch-search-inner { display: flex; }
.arch-search input { flex: 1; padding: 0.8rem 1.25rem; border-radius: 50px 0 0 50px; border: 1px solid rgba(201,160,61,0.2); border-right: none; background: rgba(255,255,255,0.04); color: #f4efe6; font-size: 0.9rem; }
.arch-search input:focus { outline: none; border-color: rgba(201,160,61,0.5); }
.arch-search button { padding: 0.8rem 1.5rem; border-radius: 0 50px 50px 0; border: 1px solid rgba(201,160,61,0.3); background: rgba(201,160,61,0.12); color: #c9a03d; font-size: 0.85rem; font-weight: 600; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.arch-search button:hover { background: #c9a03d; color: #0a1f12; }

/* Count */
.arch-count { font-size: 0.8rem; color: #7a7568; margin-bottom: 1.5rem; }
.arch-count strong { color: #c9a03d; }

/* Product Grid (reuses styles from front-page.php) */
.arch-products-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(300px,1fr)); gap: 1.5rem; }

/* Article Cards */
.articles-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(340px,1fr)); gap: 1.5rem; }
.article-card { background: #0f2a1a; border: 1px solid rgba(201,160,61,0.1); border-radius: 20px; overflow: hidden; transition: all 0.35s; }
.article-card:hover { transform: translateY(-5px); border-color: rgba(201,160,61,0.35); }
.article-image-link { display: block; }
.article-image { height: 220px; background: linear-gradient(135deg,#1e4a2e,#0f2a1a); display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.article-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.article-card:hover .article-image img { transform: scale(1.05); }
.article-emoji { font-size: 3rem; }
.article-read-overlay { position: absolute; inset: 0; background: rgba(10,31,18,0.7); display: flex; align-items: center; justify-content: center; color: #c9a03d; font-weight: 700; font-size: 1rem; opacity: 0; transition: opacity 0.3s; }
.article-card:hover .article-read-overlay { opacity: 1; }
.article-content { padding: 1.5rem; }
.article-cats { margin-bottom: 0.5rem; }
.article-cat-pill { display: inline-block; background: rgba(201,160,61,0.1); color: #c9a03d; padding: 2px 10px; border-radius: 50px; font-size: 0.65rem; font-weight: 600; text-decoration: none; }
.article-title { font-size: 1.05rem; margin-bottom: 0.5rem; }
.article-title a { color: #f4efe6; text-decoration: none; }
.article-title a:hover { color: #c9a03d; }
.article-meta-row { display: flex; gap: 1rem; font-size: 0.7rem; color: #7a7568; margin-bottom: 0.75rem; flex-wrap: wrap; }
.article-excerpt { font-size: 0.83rem; color: #b0aa9a; line-height: 1.55; margin-bottom: 1rem; }
.read-more { color: #c9a03d; font-size: 0.8rem; font-weight: 600; text-decoration: none; }
.read-more:hover { color: #dcb85a; }

/* Pagination */
.arch-pagination { text-align: center; margin-top: 3rem; }
.arch-pagination .nav-links { display: inline-flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; }
.arch-pagination .page-numbers { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 0.75rem; border-radius: 10px; background: rgba(255,255,255,0.05); color: #b0aa9a; text-decoration: none; font-size: 0.85rem; font-weight: 500; transition: all 0.25s; border: 1px solid rgba(201,160,61,0.08); }
.arch-pagination .page-numbers.current { background: #c9a03d; color: #0a1f12; border-color: #c9a03d; }
.arch-pagination .page-numbers:hover:not(.current) { background: rgba(201,160,61,0.1); color: #c9a03d; border-color: rgba(201,160,61,0.3); }

/* No Results */
.arch-no-results { text-align: center; padding: 5rem 2rem; background: rgba(15,42,26,0.4); border-radius: 24px; border: 1px solid rgba(201,160,61,0.08); }
.no-results-icon { font-size: 3.5rem; display: block; margin-bottom: 1rem; }
.arch-no-results h2 { color: #f4efe6; margin-bottom: 0.75rem; }
.arch-no-results p { color: #b0aa9a; margin-bottom: 2rem; max-width: 400px; margin-left: auto; margin-right: auto; }
.arch-back-btn { display: inline-block; padding: 0.8rem 2rem; background: linear-gradient(135deg,#1e4a2e,#2a6040); border: 1px solid rgba(201,160,61,0.3); color: #f4efe6; border-radius: 50px; font-weight: 600; text-decoration: none; transition: all 0.25s; }
.arch-back-btn:hover { background: #c9a03d; color: #0a1f12; border-color: #c9a03d; transform: translateY(-2px); color: #0a1f12; }

/* CTA */
.arch-cta { display: flex; gap: 1.5rem; background: linear-gradient(135deg,#1e4a2e,#0f2a1a); border: 1px solid rgba(201,160,61,0.15); border-radius: 24px; padding: 2rem; margin-top: 4rem; align-items: center; }
.arch-cta-icon { font-size: 3rem; flex-shrink: 0; }
.arch-cta-body h3 { color: #f4efe6; font-size: 1.2rem; margin-bottom: 0.4rem; }
.arch-cta-body p { color: #b0aa9a; font-size: 0.85rem; margin-bottom: 1rem; }
.arch-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.arch-cta-btn { padding: 0.65rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.82rem; text-decoration: none; display: inline-block; transition: all 0.25s; }
.arch-cta-btn.tg { background: #0088cc; color: white; }
.arch-cta-btn.tg:hover { background: #0099dd; transform: translateY(-2px); color: white; }
.arch-cta-btn.wa { background: #25D366; color: white; }
.arch-cta-btn.wa:hover { background: #22bd5a; transform: translateY(-2px); color: white; }

/* Responsive */
@media (max-width: 768px) {
    .archive-page { padding: 5rem 0 3rem; }
    .arch-products-grid, .articles-grid { grid-template-columns: 1fr; }
    .arch-cta { flex-direction: column; gap: 1rem; }
    .container { padding: 0 1.25rem; }
}

/* From single.php */
/* Reading Progress */
#reading-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    z-index: 99998;
    background: linear-gradient(90deg, #1e4a2e, #c9a03d, #dcb85a);
    transition: width 0.1s linear;
    pointer-events: none;
}

/* Layout */
.single-guide { padding: 6rem 0 4rem; background: #0a1f12; min-height: 100vh; }
.sg-layout { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
@media (max-width: 1100px) { .sg-layout { grid-template-columns: 1fr; } .sg-sidebar { order: 2; } }

/* Breadcrumb */
.sg-breadcrumb { font-size: 0.75rem; color: #7a7568; margin-bottom: 2.5rem; display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem; }
.sg-breadcrumb a { color: #c9a03d; text-decoration: none; transition: color 0.2s; }
.sg-breadcrumb a:hover { color: #dcb85a; }
.sg-breadcrumb span { color: #7a7568; }

/* Article header */
.sg-header { margin-bottom: 2.5rem; }
.sg-cats { margin-bottom: 0.75rem; }
.sg-cat-pill { display: inline-block; background: rgba(201,160,61,0.12); color: #c9a03d; border: 1px solid rgba(201,160,61,0.25); padding: 3px 14px; border-radius: 50px; font-size: 0.7rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; text-decoration: none; margin-right: 6px; transition: background 0.2s; }
.sg-cat-pill:hover { background: rgba(201,160,61,0.2); color: #c9a03d; }
.sg-title { font-size: clamp(1.8rem, 4vw, 3rem); color: #f4efe6; line-height: 1.2; margin: 0.75rem 0 1rem; font-weight: 500; }
.sg-meta { display: flex; flex-wrap: wrap; gap: 1.5rem; font-size: 0.75rem; color: #7a7568; border-bottom: 1px solid rgba(201,160,61,0.08); padding-bottom: 1.25rem; margin-bottom: 1.5rem; }

/* Hero Image */
.sg-hero-image { border-radius: 20px; overflow: hidden; margin-bottom: 1.5rem; }
.sg-hero-image img { width: 100%; height: auto; display: block; }
.sg-hero-placeholder { background: linear-gradient(135deg, #1e4a2e, #0f2a1a); border-radius: 20px; height: 280px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; margin-bottom: 1.5rem; }
.sg-hero-placeholder span { font-size: 4rem; }
.sg-hero-title-overlay { color: rgba(244,239,230,0.4); font-size: 1.2rem; font-family: 'Cormorant Garamond', serif; text-align: center; padding: 0 2rem; }

/* Intro */
.sg-intro { background: rgba(201,160,61,0.05); border-left: 3px solid #c9a03d; border-radius: 0 12px 12px 0; padding: 1.25rem 1.5rem; margin-bottom: 1.5rem; }
.sg-intro p { color: #b0aa9a; font-size: 1.05rem; line-height: 1.7; margin: 0; }

/* Table of Contents */
.sg-toc { background: rgba(15,42,26,0.8); border: 1px solid rgba(201,160,61,0.12); border-radius: 16px; padding: 1.25rem 1.5rem; margin-bottom: 2rem; }
.sg-toc-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.sg-toc-header span { font-size: 0.8rem; font-weight: 700; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.08em; }
.sg-toc-header button { background: none; border: 1px solid rgba(201,160,61,0.2); color: #7a7568; font-size: 0.7rem; padding: 2px 10px; border-radius: 50px; cursor: pointer; transition: all 0.2s; }
.sg-toc-header button:hover { color: #c9a03d; border-color: #c9a03d; }
#toc-list { list-style: none; padding: 0; margin: 0; }
#toc-list.toc-hidden { display: none; }
#toc-list li { border-bottom: 1px solid rgba(255,255,255,0.04); }
#toc-list li:last-child { border: none; }
#toc-list a { display: block; padding: 0.4rem 0; color: #b0aa9a; font-size: 0.82rem; text-decoration: none; transition: color 0.2s, padding-left 0.2s; }
#toc-list a:hover { color: #c9a03d; padding-left: 0.5rem; }
#toc-list li.sub a { padding-left: 1rem; font-size: 0.78rem; }

/* Article Body */
.sg-body { color: #b0aa9a; font-size: 1rem; line-height: 1.85; }
.sg-body h2 { font-size: 1.7rem; color: #f4efe6; margin: 2.5rem 0 1rem; padding-top: 2rem; border-top: 1px solid rgba(201,160,61,0.08); }
.sg-body h2:first-child { border-top: none; padding-top: 0; }
.sg-body h3 { font-size: 1.25rem; color: #e8e0d2; margin: 2rem 0 0.75rem; }
.sg-body p { margin-bottom: 1.5rem; }
.sg-body ul, .sg-body ol { margin: 0 0 1.5rem 1.5rem; }
.sg-body li { margin-bottom: 0.5rem; }
.sg-body strong { color: #f4efe6; font-weight: 600; }
.sg-body a { color: #c9a03d; text-decoration: underline; }
.sg-body a:hover { color: #dcb85a; }
.sg-body blockquote { border-left: 3px solid #c9a03d; padding: 1rem 1.5rem; margin: 1.5rem 0; background: rgba(201,160,61,0.05); border-radius: 0 12px 12px 0; font-style: italic; color: #c8bfb0; }
.sg-body img { max-width: 100%; border-radius: 16px; margin: 1.5rem 0; display: block; }
.sg-body table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: 12px; overflow: hidden; }
.sg-body table th { background: rgba(201,160,61,0.1); color: #c9a03d; padding: 0.75rem 1rem; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; text-align: left; }
.sg-body table td { padding: 0.75rem 1rem; border-bottom: 1px solid rgba(255,255,255,0.05); font-size: 0.88rem; }
.sg-body table tr:last-child td { border-bottom: none; }
.sg-body table tr:hover td { background: rgba(201,160,61,0.03); }
.sg-body code { background: rgba(255,255,255,0.07); padding: 0.15rem 0.5rem; border-radius: 4px; font-size: 0.85rem; color: #c9a03d; }

/* Tags */
.sg-tags { display: flex; flex-wrap: wrap; gap: 0.5rem; align-items: center; margin: 2rem 0; padding-top: 1.5rem; border-top: 1px solid rgba(201,160,61,0.08); }
.sg-tags-label { font-size: 0.8rem; color: #7a7568; margin-right: 0.5rem; }
.sg-tag { background: rgba(255,255,255,0.05); padding: 4px 12px; border-radius: 50px; font-size: 0.72rem; color: #b0aa9a; text-decoration: none; border: 1px solid rgba(255,255,255,0.08); transition: all 0.2s; }
.sg-tag:hover { background: rgba(201,160,61,0.1); color: #c9a03d; border-color: rgba(201,160,61,0.2); }

/* Share */
.sg-share { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; margin: 1.5rem 0; padding: 1.25rem; background: rgba(15,42,26,0.5); border-radius: 16px; border: 1px solid rgba(201,160,61,0.08); }
.sg-share-label { font-size: 0.8rem; color: #7a7568; font-weight: 500; }
.sg-share-btn { padding: 0.45rem 1rem; border-radius: 50px; font-size: 0.78rem; font-weight: 600; text-decoration: none; transition: all 0.2s; }
.sg-tg { background: rgba(0,136,204,0.15); color: #0088cc; border: 1px solid rgba(0,136,204,0.25); }
.sg-tg:hover { background: #0088cc; color: white; }
.sg-wa { background: rgba(37,211,102,0.15); color: #25D366; border: 1px solid rgba(37,211,102,0.25); }
.sg-wa:hover { background: #25D366; color: white; }
.sg-tw { background: rgba(29,155,240,0.15); color: #1d9bf0; border: 1px solid rgba(29,155,240,0.25); }
.sg-tw:hover { background: #1d9bf0; color: white; }

/* CTA */
.sg-cta { display: flex; gap: 1.5rem; background: linear-gradient(135deg,#1e4a2e,#0f2a1a); border: 1px solid rgba(201,160,61,0.15); border-radius: 24px; padding: 2rem; margin-top: 2.5rem; }
.sg-cta-icon { font-size: 3rem; flex-shrink: 0; }
.sg-cta-body h3 { color: #f4efe6; font-size: 1.2rem; margin-bottom: 0.5rem; }
.sg-cta-body p { color: #b0aa9a; font-size: 0.85rem; line-height: 1.6; margin-bottom: 1rem; }
.sg-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.sg-cta-btn { padding: 0.65rem 1.5rem; border-radius: 50px; font-weight: 600; font-size: 0.82rem; text-decoration: none; display: inline-block; transition: all 0.25s; }
.sg-cta-btn.tg { background: #0088cc; color: white; }
.sg-cta-btn.tg:hover { background: #0099dd; transform: translateY(-2px); color: white; }
.sg-cta-btn.wa { background: #25D366; color: white; }
.sg-cta-btn.wa:hover { background: #22bd5a; transform: translateY(-2px); color: white; }

/* Sidebar */
.sg-sidebar { position: sticky; top: 90px; }
.sg-widget { background: #0f2a1a; border: 1px solid rgba(201,160,61,0.1); border-radius: 20px; padding: 1.5rem; margin-bottom: 1.5rem; }
.sg-widget-title { font-size: 0.85rem; font-weight: 700; color: #c9a03d; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1.25rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(201,160,61,0.1); }
.sg-widget-desc { font-size: 0.82rem; color: #b0aa9a; margin-bottom: 1.25rem; line-height: 1.6; }
.sg-related-list { display: flex; flex-direction: column; gap: 0.75rem; }
.sg-related-item { display: flex; gap: 0.75rem; text-decoration: none; align-items: center; padding: 0.5rem; border-radius: 12px; transition: background 0.2s; }
.sg-related-item:hover { background: rgba(201,160,61,0.05); }
.sg-related-img { width: 56px; height: 56px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: rgba(30,74,46,0.5); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.sg-related-img img { width: 100%; height: 100%; object-fit: cover; }
.sg-related-info { display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.sg-related-title { color: #e8e0d2; font-size: 0.8rem; font-weight: 500; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.sg-related-meta { font-size: 0.68rem; color: #7a7568; }
.sg-legal-widget p { font-size: 0.78rem; color: #7a7568; line-height: 1.6; margin: 0; }

@media (max-width: 768px) {
    .sg-cta { flex-direction: column; gap: 1rem; }
    .sg-share { flex-direction: column; align-items: flex-start; }
    .single-guide { padding: 5rem 0 3rem; }
    .container { padding: 0 1.25rem; }
}

/* ==============================================
   BACK TO TOP BUTTON & MOBILE PARTICLES
   ============================================== */
.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background: var(--weed-gold);
    color: var(--weed-dark);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 99;
    box-shadow: 0 4px 15px rgba(201,160,61,0.3);
}
.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: var(--weed-gold-light);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .particle.hide-mobile { display: none !important; }
}
