/* Good Vibes Dispensary - Dark Tropical Theme
   Updated: 2026-04-06 */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: rgba(10, 10, 20, 0.85);
    --bg-tertiary: rgba(20, 20, 30, 0.80);
    --bg-card: rgba(15, 15, 25, 0.90);
    --text-primary: #ffffff;
    --text-secondary: #ffffff;
    --text-muted: #ffffff;
    --accent-green: #39FF14;
    --accent-green-hover: #50ff33;
    --accent-gold: #c9a227;
    --accent-yellow: #f4d85d;
    --border-color: #2a2a2a;
    --success: #4caf50;
    --error: #f44336;
    --font-primary: 'Roboto', sans-serif;
    --font-heading: 'Roboto Condensed', sans-serif;
    --transition: all 0.3s ease;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    --radius: 8px;
    --radius-lg: 16px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-primary);
    background-image: url('../images/bg-main.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--accent-green);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent-green-hover);
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--accent-green);
    color: var(--bg-primary);
}

.btn-primary:hover {
    background: var(--accent-green-hover);
    color: var(--bg-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(109, 167, 56, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-secondary:hover {
    background: var(--text-primary);
    color: var(--bg-primary);
}

.btn-large {
    padding: 16px 40px;
    font-size: 16px;
}

/* Age Gate */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    display: flex; /* Shown by default, JS hides if verified */
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.5s ease;
}

.age-gate.hidden {
    opacity: 0;
    pointer-events: none;
}

.age-gate-content {
    text-align: center;
    padding: 60px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    max-width: 500px;
}

.age-gate-logo h1 {
    font-family: var(--font-heading);
    font-size: 36px;
    letter-spacing: 4px;
    margin-bottom: 30px;
    color: var(--accent-green);
}

.age-gate-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

.age-gate-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.logo a {
    text-decoration: none;
}

.logo h1 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--text-primary);
    transition: var(--transition);
}

.logo a:hover h1 {
    color: var(--accent-green);
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 40px;
}

.main-nav a {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 10px 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-green);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(10, 10, 20, 0.7) 0%, rgba(10, 10, 20, 0.5) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 140px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(109, 167, 56, 0.1) 0%, transparent 70%);
}

.hero-slide {
    text-align: center;
    z-index: 1;
}

.hero-content h2 {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-heading {
    font-size: clamp(18px, 5.5vw, 72px);
    text-align: center;
    width: 100%;
}

.hero-content p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.view-all {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Promotional Banner */
.promo-banner-section {
    padding: 0;
}

.promo-banner {
    display: block;
    background: linear-gradient(135deg, #2d5016 0%, #6da738 100%);
    border-radius: 12px;
    padding: 30px 40px;
    text-decoration: none;
    color: white;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
    margin: 30px auto;
    max-width: 1000px;
}

.promo-banner:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(109, 167, 56, 0.3);
}

.promo-banner-content {
    position: relative;
}

.promo-badge {
    display: inline-block;
    background: rgba(255,255,255,0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.promo-banner h3 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px;
}

.promo-banner p {
    font-size: 16px;
    margin: 0;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .promo-banner {
        padding: 25px 20px;
        margin: 20px 15px;
        border-radius: 10px;
    }

    .promo-banner h3 {
        font-size: 22px;
    }

    .promo-banner p {
        font-size: 14px;
    }
}

/* Featured/Newest Products */
.featured-section {
    background: var(--bg-secondary);
}

/* Products Carousel */
.carousel-wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 0 20px;
}

.products-carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding: 10px 0 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-carousel::-webkit-scrollbar {
    display: none;
}

.carousel-product-card {
    flex: 0 0 180px;
    background: var(--bg-primary);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
    border: 1px solid var(--border-color);
    scroll-snap-align: start;
}

.carousel-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.carousel-product-card .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.carousel-product-card .badge.sale {
    background: #dc3545;
    color: white;
}

.carousel-product-image {
    width: 100%;
    height: 140px;
    overflow: hidden;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.carousel-product-image.no-image img {
    width: 60%;
    height: auto;
    object-fit: contain;
    opacity: 0.5;
}

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

.carousel-product-info {
    padding: 12px;
}

.carousel-product-info h4 {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.carousel-product-info .thc {
    display: block;
    font-size: 11px;
    color: var(--accent-green);
    margin-bottom: 4px;
}

.carousel-product-info .price {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-primary);
}

.carousel-product-info .price.on-sale {
    color: #dc3545;
}

.carousel-product-info .price s {
    color: var(--text-secondary);
    font-weight: 400;
    font-size: 12px;
    margin-right: 4px;
}

/* Location Toggle */
.newest-location-toggle {
    display: flex;
    gap: 8px;
}

.newest-location-toggle .location-btn {
    padding: 8px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
}

.newest-location-toggle .location-btn:hover {
    border-color: var(--accent-green);
    color: var(--text-primary);
}

.newest-location-toggle .location-btn.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: var(--bg-primary);
}

@media (max-width: 768px) {
    .carousel-product-card {
        flex: 0 0 150px;
    }

    .carousel-product-image {
        height: 120px;
    }

    .carousel-product-info {
        padding: 10px;
    }

    .carousel-product-info h4 {
        font-size: 13px;
    }

    .carousel-product-info .price {
        font-size: 14px;
    }
}

/* Location toggle for newest products */
/* Swipe hint */
.swipe-hint {
    text-align: center;
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 20px;
    opacity: 0.7;
}

/* Category Rows - Horizontal Scrolling */
.category-row {
    margin-bottom: 30px;
}

.category-row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 0 4px;
}

.category-row-header h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-row-header .cat-icon {
    font-size: 22px;
}

.category-row-header .see-all {
    color: var(--accent-green);
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
}

.category-row-header .see-all:hover {
    text-decoration: underline;
}

.category-scroll-wrapper {
    position: relative;
}

.category-scroll {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0 12px;
    /* Safari fallback: use margin instead of gap */
    margin-left: -8px;
}

.category-scroll > * {
    margin-left: 16px;
}

/* Modern browsers: use gap (overrides margin approach) */
@supports (gap: 16px) {
    .category-scroll {
        gap: 16px;
        margin-left: 0;
    }
    .category-scroll > * {
        margin-left: 0;
    }
}

.category-scroll::-webkit-scrollbar {
    display: none;
}


/* Scroll Product Cards */
.scroll-product-card {
    flex: 0 0 160px;
    background: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--border-color);
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.scroll-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
    border-color: var(--accent-green);
}

.scroll-product-card .badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #e53935;
    color: white;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 6px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 1;
}

.scroll-product-image {
    width: 100%;
    height: 120px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.scroll-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.scroll-product-image.no-image {
    background: var(--bg-secondary);
    padding: 15px;
}

.scroll-product-image.no-image img {
    object-fit: contain;
    opacity: 0.5;
}

.scroll-product-info {
    padding: 10px;
}

.scroll-product-info h4 {
    font-size: 13px;
    font-weight: 500;
    margin: 0 0 4px;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 34px;
}

.scroll-product-info .thc {
    display: block;
    font-size: 11px;
    color: var(--accent-green);
    margin-bottom: 4px;
}

.scroll-product-info .price {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
}

.scroll-product-info .price.on-sale {
    color: #e53935;
}

.scroll-product-info .price s {
    color: var(--text-secondary);
    font-size: 12px;
    font-weight: 400;
}

/* Mobile adjustments for scroll cards */
@media (max-width: 600px) {
    .scroll-product-card {
        flex: 0 0 220px;
    }

    .scroll-product-image {
        height: 160px;
    }

    .scroll-product-info {
        padding: 12px;
    }

    .scroll-product-info h4 {
        font-size: 14px;
        min-height: 36px;
        -webkit-line-clamp: 2;
    }

    .scroll-product-info .thc {
        font-size: 12px;
    }

    .scroll-product-info .price {
        font-size: 16px;
    }

    .category-row-header h3 {
        font-size: 18px;
    }

    .category-row-header .see-all {
        font-size: 13px;
    }

    .category-scroll {
        gap: 12px;
    }

    .category-row {
        margin-bottom: 28px;
    }

    .swipe-hint {
        font-size: 12px;
        margin-bottom: 16px;
    }
}

.newest-location-toggle {
    display: flex;
    gap: 8px;
}

.newest-location-toggle .location-btn {
    padding: 8px 16px;
    border: 1px solid var(--border-color);
    background: transparent;
    color: var(--text-secondary);
    border-radius: 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s ease;
}

.newest-location-toggle .location-btn:hover {
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.newest-location-toggle .location-btn.active {
    background: var(--accent-green);
    border-color: var(--accent-green);
    color: white;
}

/* Loading spinner for products */
.loading-spinner {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.no-products,
.error-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

/* Product card link styling */
a.product-card {
    text-decoration: none;
    color: inherit;
    display: block;
}

/* Product price styling */
.product-price {
    margin-top: 8px;
    font-size: 16px;
}

.product-price .original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: 14px;
    margin-right: 8px;
}

.product-price .current-price {
    color: var(--text-primary);
    font-weight: 600;
}

.product-price .sale-price {
    color: #e53935;
}

/* Product brand and THC */
.product-brand {
    font-size: 12px;
    color: var(--text-secondary);
    margin: 4px 0;
}

.product-thc {
    font-size: 12px;
    color: var(--accent-green);
    font-weight: 500;
}

/* Sale badge */
.product-badge.sale {
    background: #e53935;
}

.product-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

@media (max-width: 1200px) {
    .product-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Hide mobile-only items on desktop */
.mobile-only {
    display: none;
}

/* Medium screens - tighten header spacing */
@media (max-width: 1100px) {
    .main-nav ul {
        gap: 20px;
    }

    .header-actions {
        gap: 10px;
    }

    .header-actions .btn {
        padding: 8px 16px;
        font-size: 12px;
    }
}

/* Switch to mobile nav earlier to prevent overlap */
@media (max-width: 900px) {
    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        display: none;
        overflow-y: auto;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 16px;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }

    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
    }

    .header-actions .btn {
        display: none;
    }

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

    /* Show mobile-only nav items */
    .mobile-only {
        display: block;
    }

    .mobile-only a {
        color: var(--accent-green);
    }

    .mobile-order-btn {
        background: var(--accent-green);
        color: var(--bg-primary) !important;
        text-align: center;
        border-radius: var(--radius-sm);
        margin-top: 8px;
    }

    .product-slider {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Keep user menu visible on mobile */
    .user-menu {
        display: block;
    }
}

@media (max-width: 600px) {
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-image {
        height: 140px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 14px;
        margin: 4px 0;
    }

    .product-category {
        font-size: 10px;
    }

    .product-price {
        font-size: 14px;
    }

    .product-badge {
        font-size: 9px;
        padding: 3px 6px;
    }

    .newest-location-toggle .location-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
}

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

.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid var(--border-color);
    position: relative;
    opacity: 0;
    transform: translateY(15px);
}

.product-card.product-card-visible {
    opacity: 1;
    transform: translateY(0);
}

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

.product-card.skeleton {
    opacity: 1;
    transform: none;
}

.product-card.product-card-visible:hover {
    box-shadow: var(--shadow);
    border-color: var(--accent-green);
}

.product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--accent-green);
    color: var(--bg-primary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 1;
}

.product-badge.new {
    background: var(--accent-gold);
}

.product-image {
    height: 180px;
    background: var(--bg-tertiary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-image.no-image {
    background: var(--bg-secondary);
    padding: 20px;
}

.product-image.no-image img {
    object-fit: contain;
}

.product-placeholder {
    width: 80%;
    height: 80%;
    border: 2px dashed var(--border-color);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 14px;
}

.product-info {
    padding: 15px;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--accent-green);
    letter-spacing: 1px;
    font-weight: 600;
}

.product-info h3 {
    font-size: 16px;
    margin: 8px 0;
    font-weight: 600;
}

.product-strain {
    font-size: 13px;
    color: var(--text-secondary);
}

/* Categories Section */
.categories-section {
    background: var(--bg-primary);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.category-card:hover .category-icon {
    color: var(--accent-green);
}

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--text-secondary);
    transition: var(--transition);
}

.category-icon svg {
    width: 100%;
    height: 100%;
}

.category-card h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

/* Locations Section */
.locations-section {
    background: var(--bg-secondary);
}

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

.location-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
    transition: var(--transition);
}

.location-card:hover {
    border-color: var(--accent-green);
    box-shadow: var(--shadow);
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.location-header h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.location-status {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.location-status.open {
    background: rgba(76, 175, 80, 0.2);
    color: var(--success);
}

.location-status.closed {
    background: rgba(244, 67, 54, 0.2);
    color: var(--error);
}

.location-info {
    margin-bottom: 25px;
}

.location-address,
.location-phone {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.location-address svg,
.location-phone svg {
    flex-shrink: 0;
    margin-top: 4px;
    color: var(--accent-green);
}

.location-phone a {
    color: var(--text-secondary);
}

.location-phone a:hover {
    color: var(--accent-green);
}

.location-hours {
    background: var(--bg-tertiary);
    padding: 15px 20px;
    border-radius: var(--radius);
    margin-top: 20px;
}

.location-hours p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 5px;
}

.location-hours p:last-child {
    margin-bottom: 0;
}

/* Why Section */
.why-section {
    background: var(--bg-primary);
}

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

.why-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}

.why-card:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
}

.why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 25px;
    color: var(--accent-green);
}

.why-icon svg {
    width: 100%;
    height: 100%;
}

.why-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.why-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Social Links */
.social-links a {
    transition: opacity 0.3s ease;
}

.social-links a:hover {
    opacity: 0.8;
}

/* Footer */
.footer {
    background: rgba(10, 10, 20, 0.90);
    border-top: 1px solid var(--border-color);
    padding: 80px 0 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 16px;
}

.footer h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--text-primary);
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: var(--text-secondary);
    font-size: 14px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--accent-green);
}

.footer-locations p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.footer-locations strong {
    color: var(--text-primary);
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-bottom p {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px !important;
    color: var(--text-muted) !important;
    max-width: 800px;
    margin: 0 auto;
}

/* ==========================================================================
   RESPONSIVE - MOBILE OPTIMIZATIONS
   ========================================================================== */

/* Tablet and below */
@media (max-width: 1200px) {
    .product-slider {
        grid-template-columns: repeat(3, 1fr);
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content h2 {
        font-size: 48px;
    }

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

/* Mobile - Primary breakpoint */
@media (max-width: 768px) {
    /* Base mobile adjustments */
    :root {
        --radius-sm: 6px;
    }

    body {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }

    .container {
        padding: 0 16px;
    }

    /* Header - Mobile optimized */
    .header-container {
        padding: 12px 16px;
    }

    .logo img {
        height: 50px !important;
        width: auto !important;
    }

    .main-nav {
        position: fixed;
        top: 74px;
        left: 0;
        width: 100%;
        height: calc(100vh - 74px);
        background: var(--bg-primary);
        border-bottom: 1px solid var(--border-color);
        display: none;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
        padding: 8px 16px;
    }

    .main-nav li {
        border-bottom: 1px solid var(--border-color);
    }

    /* Touch-friendly nav links (min 48px touch target) */
    .main-nav a {
        display: block;
        padding: 16px 0;
        font-size: 16px;
        min-height: 48px;
    }

    .header-actions {
        gap: 8px;
    }

    .header-actions .btn {
        display: none;
    }

    /* Mobile menu toggle - larger touch target */
    .mobile-menu-toggle {
        display: flex;
        width: 44px;
        height: 44px;
        align-items: center;
        justify-content: center;
        padding: 10px;
    }

    .mobile-menu-toggle span {
        width: 24px;
        height: 3px;
        border-radius: 2px;
    }

    /* Cart toggle - larger touch target */
    .cart-toggle {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Hero - Mobile optimized */
    .hero {
        padding-top: 100px;
        min-height: calc(100vh - 74px);
    }

    .hero-slide {
        padding: 0 16px;
    }

    .hero-content h2 {
        font-size: 28px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-content p {
        font-size: 15px;
        line-height: 1.6;
        margin-bottom: 28px;
        padding: 0 8px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    /* Buttons - Touch optimized (min 48px height) */
    .btn {
        padding: 14px 24px;
        font-size: 14px;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .btn-large {
        padding: 16px 32px;
        min-height: 52px;
    }

    /* Sections - Better mobile spacing */
    section {
        padding: 48px 0;
    }

    .section-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
        margin-bottom: 32px;
    }

    .section-header h2 {
        font-size: 24px;
        letter-spacing: 1px;
    }

    .view-all {
        font-size: 13px;
    }

    /* Product grid - 2 columns on mobile */
    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .product-card {
        border-radius: var(--radius);
    }

    .product-info {
        padding: 12px;
    }

    .product-info h3 {
        font-size: 14px;
        line-height: 1.3;
    }

    .product-category {
        font-size: 10px;
    }

    .product-strain {
        font-size: 12px;
    }

    /* Categories grid */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .category-card {
        padding: 24px 16px;
    }

    .category-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 12px;
    }

    .category-card h3 {
        font-size: 14px;
    }

    /* Why grid */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .why-card {
        padding: 28px 20px;
    }

    .why-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 16px;
    }

    .why-card h3 {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .why-card p {
        font-size: 14px;
    }

    /* Location cards */
    .locations-grid {
        gap: 16px;
    }

    .location-card {
        padding: 24px;
    }

    .location-header h3 {
        font-size: 22px;
    }

    .location-status {
        font-size: 11px;
        padding: 5px 10px;
    }

    /* Footer - Mobile optimized */
    .footer {
        padding: 48px 0 32px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-brand {
        margin-bottom: 8px;
    }

    .footer-brand img {
        max-width: 180px !important;
    }

    .footer h4 {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .footer-links ul,
    .footer-legal ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 8px 16px;
    }

    .footer-links li,
    .footer-legal li {
        margin-bottom: 0;
    }

    /* Footer links - touch friendly */
    .footer-links a,
    .footer-legal a {
        padding: 8px 0;
        display: inline-block;
        min-height: 44px;
        line-height: 28px;
    }

    .footer-locations p {
        font-size: 13px;
        line-height: 1.7;
        margin-bottom: 16px;
    }

    .footer-bottom {
        padding-top: 24px;
    }

    .footer-bottom p {
        font-size: 13px;
    }

    .disclaimer {
        font-size: 11px !important;
        padding: 0 8px;
    }

    /* Social links */
    .social-links {
        justify-content: center !important;
    }

    .social-links a {
        width: 44px;
        height: 44px;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
    }

    .social-links svg {
        width: 28px !important;
        height: 28px !important;
    }

    /* Age Gate - Mobile optimized */
    .age-gate-content {
        padding: 32px 24px;
        margin: 16px;
        border-radius: var(--radius);
        max-width: calc(100vw - 32px);
    }

    .age-gate-logo img {
        width: 250px !important;
        max-width: 100% !important;
    }

    .age-gate-content p {
        font-size: 15px;
        margin-bottom: 24px;
        line-height: 1.5;
    }

    .age-gate-buttons {
        flex-direction: column;
        gap: 12px;
    }

    .age-gate-buttons .btn {
        width: 100%;
    }

    /* Page header - Mobile */
    .page-header {
        padding: 100px 0 48px;
    }

    .page-header h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .page-header p {
        font-size: 15px;
        padding: 0 16px;
    }
}

/* Small phones */
@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }

    .hero-content h2 {
        font-size: 24px;
    }

    .hero-content p {
        font-size: 14px;
    }

    .product-slider {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-info {
        padding: 10px;
    }

    .product-info h3 {
        font-size: 13px;
    }

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

    .category-card {
        padding: 20px 12px;
    }

    .category-card h3 {
        font-size: 13px;
    }

    .age-gate-content {
        padding: 28px 20px;
        margin: 12px;
    }

    .age-gate-logo img {
        width: 200px !important;
    }

    .location-card {
        padding: 20px;
    }

    .location-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .location-header h3 {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 22px;
    }

    .page-header h1 {
        font-size: 24px;
    }
}

/* Very small phones (iPhone SE, etc.) */
@media (max-width: 375px) {
    .hero-content h2 {
        font-size: 22px;
    }

    .btn {
        padding: 12px 20px;
        font-size: 13px;
    }

    .product-slider {
        gap: 8px;
    }

    .product-info {
        padding: 8px;
    }

    .product-info h3 {
        font-size: 12px;
    }

    .product-category {
        font-size: 9px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Remove hover effects that don't work well on touch */
    .product-card.product-card-visible:hover {
        transform: none;
    }

    .category-card:hover {
        transform: none;
    }

    .why-card:hover {
        transform: none;
    }

    .btn-primary:hover {
        transform: none;
    }

    /* Add active states instead */
    .product-card.product-card-visible:active {
        transform: scale(0.98);
        opacity: 0.9;
    }

    .category-card:active {
        transform: scale(0.98);
    }

    .btn:active {
        transform: scale(0.97);
        opacity: 0.9;
    }
}

/* Landscape phones */
@media (max-width: 812px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }

    .age-gate {
        overflow-y: auto;
    }

    .age-gate-content {
        margin: 20px auto;
    }
}

/* Page Specific Styles */
.page-header {
    padding: 150px 0 80px;
    background: rgba(10, 10, 20, 0.80);
    text-align: center;
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Shop Page */
.shop-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 60px 0;
}

.shop-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.filter-group {
    margin-bottom: 30px;
}

.filter-group h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.filter-group ul {
    list-style: none;
}

.filter-group li {
    margin-bottom: 10px;
}

.filter-group a {
    color: var(--text-secondary);
    font-size: 14px;
    display: block;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

.filter-group a:hover,
.filter-group a.active {
    color: var(--accent-green);
}

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

.menu-embed-placeholder {
    background: var(--bg-card);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    padding: 80px;
    text-align: center;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.menu-embed-placeholder h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.menu-embed-placeholder p {
    color: var(--text-secondary);
    max-width: 400px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-green);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 30px;
    margin-bottom: 25px;
}

.contact-info-card h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-green);
}

/* About Page */
.about-content {
    padding: 80px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--accent-green);
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 800px;
}

/* Location Page Map Placeholder */
.map-placeholder {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    margin-top: 25px;
}

@media (max-width: 992px) {
    .shop-container {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
    }

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

@media (max-width: 768px) {
    .shop-products {
        grid-template-columns: repeat(2, 1fr);
    }

    .page-header h1 {
        font-size: 32px;
    }
}

/* ==========================================================================
   Mobile/Android Rendering Fixes
   ========================================================================== */

/* Logo optimization for sharp rendering */
.logo img,
.age-gate-logo img,
.footer-brand img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: smooth;
    -webkit-font-smoothing: antialiased;
}

/* Prevent header logo from causing layout shifts */
.header .logo img {
    width: auto;
    max-width: 200px;
    contain: layout style;
}

/* GPU acceleration for smooth scrolling on mobile */
.header {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Fix for Android Chrome touch scrolling */
@media (hover: none) and (pointer: coarse) {
    body {
        -webkit-overflow-scrolling: touch;
    }

    .header {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

/* ==========================================================================
   Newsletter Footer Section
   ========================================================================== */

.footer-newsletter {
    text-align: left;
}

.footer-newsletter h4 {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.footer-newsletter p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.5;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.newsletter-form input[type="email"] {
    flex: 1;
    min-width: 180px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.newsletter-form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(109, 167, 56, 0.2);
}

.newsletter-form input[type="email"]::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.newsletter-form button {
    padding: 12px 24px;
    background: var(--accent-green);
    color: var(--bg-primary);
    border: none;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: var(--accent-green-hover);
    transform: translateY(-1px);
}

.newsletter-form button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.newsletter-message {
    margin-top: 12px;
    font-size: 14px;
    padding: 10px 15px;
    border-radius: var(--radius);
}

.newsletter-message.success {
    background: rgba(109, 167, 56, 0.15);
    color: var(--accent-green);
    border: 1px solid rgba(109, 167, 56, 0.3);
}

.newsletter-message.error {
    background: rgba(220, 53, 69, 0.15);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .footer-newsletter {
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .newsletter-form input[type="email"] {
        width: 100%;
    }

    .newsletter-form button {
        width: 100%;
    }
}

/* ============================================
   Smoke Drift Background Effect
   ============================================ */

.smoke-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
    overflow: hidden;
}

.smoke-particle {
    position: absolute;
    bottom: -200px;
    width: 300px;
    height: 300px;
    background: radial-gradient(ellipse at center,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.2) 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    animation: smokeDrift linear infinite;
    opacity: 0;
}

.smoke-particle:nth-child(1) {
    left: 5%;
    width: 250px;
    height: 250px;
    animation-duration: 20s;
    animation-delay: 0s;
}

.smoke-particle:nth-child(2) {
    left: 20%;
    width: 350px;
    height: 350px;
    animation-duration: 25s;
    animation-delay: 3s;
}

.smoke-particle:nth-child(3) {
    left: 40%;
    width: 280px;
    height: 280px;
    animation-duration: 22s;
    animation-delay: 7s;
}

.smoke-particle:nth-child(4) {
    left: 60%;
    width: 320px;
    height: 320px;
    animation-duration: 28s;
    animation-delay: 2s;
}

.smoke-particle:nth-child(5) {
    left: 75%;
    width: 260px;
    height: 260px;
    animation-duration: 24s;
    animation-delay: 5s;
}

.smoke-particle:nth-child(6) {
    left: 90%;
    width: 300px;
    height: 300px;
    animation-duration: 26s;
    animation-delay: 10s;
}

.smoke-particle:nth-child(7) {
    left: 10%;
    width: 220px;
    height: 220px;
    animation-duration: 18s;
    animation-delay: 12s;
}

.smoke-particle:nth-child(8) {
    left: 50%;
    width: 380px;
    height: 380px;
    animation-duration: 30s;
    animation-delay: 8s;
}

@keyframes smokeDrift {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    50% {
        opacity: 0.4;
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) translateX(50px) scale(1.5);
        opacity: 0;
    }
}

/* Subtle horizontal sway for more natural movement */
.smoke-particle:nth-child(odd) {
    animation-name: smokeDriftLeft;
}

.smoke-particle:nth-child(even) {
    animation-name: smokeDriftRight;
}

@keyframes smokeDriftLeft {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30vh) translateX(-30px) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-60vh) translateX(20px) scale(1.2);
    }
    75% {
        transform: translateY(-90vh) translateX(-40px) scale(1.3);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) translateX(30px) scale(1.5);
        opacity: 0;
    }
}

@keyframes smokeDriftRight {
    0% {
        transform: translateY(0) translateX(0) scale(0.8);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30vh) translateX(40px) scale(1);
    }
    50% {
        opacity: 0.4;
        transform: translateY(-60vh) translateX(-25px) scale(1.2);
    }
    75% {
        transform: translateY(-90vh) translateX(50px) scale(1.3);
    }
    90% {
        opacity: 0.2;
    }
    100% {
        transform: translateY(-120vh) translateX(-20px) scale(1.5);
        opacity: 0;
    }
}

/* Reduce motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
    .smoke-container {
        display: none;
    }
}
