/**
 * Plant Medicine Mafia - Ha! Sheesh! Root Beer
 * "Smoking Joint" Theme Styles
 */

/* =====================================================
   CSS Variables
   ===================================================== */
:root {
    /* Brand Colors */
    --color-primary: #1a472a;
    --color-primary-light: #2d5a3f;
    --color-primary-dark: #0f2d1a;
    --color-accent: #e07020;
    --color-accent-dark: #cc5500;
    --color-accent-glow: rgba(224, 112, 32, 0.5);
    --color-cream: #f5e6c8;
    --color-cream-dark: #e8d4a8;
    --color-ash: #888888;
    --color-ash-dark: #666666;

    /* Background Colors */
    --bg-dark: #0d0d0d;
    --bg-dark-alt: #141414;
    --bg-card: #1a1a1a;
    --bg-card-hover: #222222;

    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #9a9a9a;

    /* Smoke Colors */
    --smoke-color: rgba(200, 200, 200, 0.35);
    --smoke-color-light: rgba(255, 255, 255, 0.25);

    /* Typography */
    --font-heading: 'Bebas Neue', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --section-padding-sm: 60px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* =====================================================
   Base Styles
   ===================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-dark);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

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

a:hover {
    color: var(--color-cream);
}

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

/* =====================================================
   Smoke Animations
   ===================================================== */
@keyframes smoke-rise {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg) scaleX(1);
        opacity: 0;
    }
    10% {
        opacity: 0.5;
        transform: translateY(-20px) translateX(5px) scale(1.1) rotate(5deg) scaleX(1.1);
    }
    30% {
        transform: translateY(-60px) translateX(-10px) scale(1.3) rotate(-8deg) scaleX(1.3);
        opacity: 0.45;
    }
    60% {
        transform: translateY(-120px) translateX(15px) scale(1.6) rotate(12deg) scaleX(1.5);
        opacity: 0.3;
    }
    100% {
        transform: translateY(-200px) translateX(-5px) scale(2.2) rotate(-5deg) scaleX(2);
        opacity: 0;
    }
}

@keyframes smoke-rise-alt {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg) scaleX(1);
        opacity: 0;
    }
    15% {
        opacity: 0.45;
        transform: translateY(-25px) translateX(-8px) scale(1.15) rotate(-6deg) scaleX(1.2);
    }
    40% {
        transform: translateY(-70px) translateX(12px) scale(1.4) rotate(10deg) scaleX(1.4);
        opacity: 0.35;
    }
    70% {
        transform: translateY(-130px) translateX(-15px) scale(1.7) rotate(-8deg) scaleX(1.6);
        opacity: 0.2;
    }
    100% {
        transform: translateY(-190px) translateX(8px) scale(2) rotate(5deg) scaleX(1.8);
        opacity: 0;
    }
}

@keyframes smoke-drift {
    0% {
        transform: translateY(0) translateX(0) scale(1) rotate(0deg) scaleX(1);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
        transform: translateY(-15px) translateX(20px) scale(1.2) rotate(8deg) scaleX(1.3);
    }
    50% {
        transform: translateY(-50px) translateX(40px) scale(1.5) rotate(-5deg) scaleX(1.6);
        opacity: 0.25;
    }
    100% {
        transform: translateY(-100px) translateX(60px) scale(2) rotate(10deg) scaleX(2);
        opacity: 0;
    }
}

@keyframes ember-glow {
    0%, 100% {
        box-shadow: 0 0 10px var(--color-accent-glow),
                    0 0 20px var(--color-accent-glow),
                    0 0 30px var(--color-accent-glow);
    }
    50% {
        box-shadow: 0 0 15px var(--color-accent-glow),
                    0 0 30px var(--color-accent-glow),
                    0 0 45px var(--color-accent-glow);
    }
}

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

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Smoke Particles - Wispy smoke effect */
.smoke-particle {
    position: absolute;
    bottom: 0;
    width: 100px;
    height: 40px;
    background: radial-gradient(ellipse at center, var(--smoke-color) 0%, transparent 60%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    pointer-events: none;
    filter: blur(8px);
}

.smoke-particle::before,
.smoke-particle::after {
    content: '';
    position: absolute;
    background: radial-gradient(ellipse at center, var(--smoke-color-light) 0%, transparent 70%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    filter: blur(6px);
}

.smoke-particle::before {
    width: 70%;
    height: 80%;
    top: -20%;
    left: 15%;
}

.smoke-particle::after {
    width: 50%;
    height: 60%;
    top: 10%;
    right: -10%;
}

.smoke-particle:nth-child(1) {
    animation: smoke-rise 5s ease-out infinite;
    left: 20%;
    width: 120px;
    height: 50px;
}

.smoke-particle:nth-child(2) {
    animation: smoke-rise-alt 6s ease-out infinite 0.8s;
    left: 40%;
    width: 150px;
    height: 60px;
    filter: blur(12px);
}

.smoke-particle:nth-child(3) {
    animation: smoke-rise 7s ease-out infinite 1.5s;
    left: 55%;
    width: 100px;
    height: 45px;
    filter: blur(10px);
}

.smoke-particle:nth-child(4) {
    animation: smoke-rise-alt 5.5s ease-out infinite 2s;
    left: 75%;
    width: 130px;
    height: 55px;
    filter: blur(9px);
}

.smoke-particle:nth-child(5) {
    animation: smoke-drift 6.5s ease-out infinite 2.5s;
    left: 30%;
    width: 160px;
    height: 65px;
    filter: blur(14px);
}

/* =====================================================
   Age Gate
   ===================================================== */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--bg-dark) 100%);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    padding: 20px;
}

.age-gate-smoke {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
}

.age-gate-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 50px 40px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.age-gate-logo {
    width: 100px;
    height: auto;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-gate-logo img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 0 20px var(--color-accent-glow));
}

.age-gate-box h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.age-gate-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.age-gate-buttons .btn {
    padding: 15px 30px;
}

/* Age Denied */
.age-denied {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}

.age-denied-content {
    text-align: center;
    padding: 40px;
    color: var(--text-secondary);
}

.age-denied-content h2 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin-bottom: 15px;
}

/* =====================================================
   Main Content Wrapper
   ===================================================== */
.main-content {
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.main-content.visible {
    opacity: 1;
}

/* =====================================================
   Navigation
   ===================================================== */
.navbar {
    background: var(--color-cream);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-primary) !important;
}

.navbar-brand .brand-logo {
    height: 40px;
    width: auto;
}

.navbar-brand .brand-text {
    letter-spacing: 0.1em;
}

.navbar-nav .nav-link {
    color: var(--color-primary) !important;
    font-weight: 500;
    padding: 8px 16px !important;
    transition: color var(--transition-fast);
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--color-accent) !important;
}

.navbar-nav .nav-cta {
    padding: 10px 20px !important;
}

/* Navbar toggler for mobile - dark icon on light bg */
.navbar-toggler {
    border-color: rgba(0, 0, 0, 0.2);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 71, 42, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* FL Banner */
.fl-banner {
    background: var(--color-primary);
    color: var(--color-cream);
    text-align: center;
    padding: 10px;
    font-size: 0.875rem;
    margin-top: 76px;
}

/* =====================================================
   Buttons
   ===================================================== */
.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-color: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px var(--color-accent-glow);
}

.btn-outline-primary {
    background: transparent;
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-outline-primary:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
}

.btn-outline-light {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--text-primary);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

.btn-light {
    background: var(--color-cream);
    border-color: var(--color-cream);
    color: var(--color-primary-dark);
}

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

.btn-lg {
    padding: 15px 32px;
    font-size: 1.1rem;
}

/* =====================================================
   Hero Section
   ===================================================== */
.hero {
    position: relative;
    min-height: auto;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-primary-dark) 50%, var(--bg-dark) 100%);
    overflow: hidden;
    padding-top: 90px;
    padding-bottom: 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></svg>');
    background-size: 50px 50px;
    pointer-events: none;
}

.hero-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -30%);
    width: 100%;
    height: 300px;
    z-index: 1;
    pointer-events: none;
}

.hero-smoke .smoke-particle {
    bottom: auto;
    top: 40%;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: rgba(224, 112, 32, 0.2);
    color: var(--color-accent);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(224, 112, 32, 0.3);
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1;
    margin-bottom: 20px;
}

/* Title smoke - emanates from the heading */
.title-smoke-wrapper {
    position: relative;
    display: block;
}

.title-smoke {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.title-smoke .smoke-particle {
    bottom: auto;
    top: 20%;
}

.title-smoke .smoke-particle:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
}

.title-smoke .smoke-particle:nth-child(2) {
    left: 40%;
    animation-delay: 0.5s;
}

.title-smoke .smoke-particle:nth-child(3) {
    left: 70%;
    animation-delay: 1s;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 15px;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Hero Product */
.hero-product {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse-glow 3s ease-in-out infinite;
}

.product-can {
    position: relative;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.can-placeholder {
    width: 200px;
    height: 300px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    border: 3px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.can-placeholder.large {
    width: 250px;
    height: 380px;
}

.can-placeholder.xlarge {
    width: 300px;
    height: 450px;
}

/* Real Product Images */
.product-image {
    max-width: 280px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.product-image-large {
    max-width: 350px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.product-image-xlarge {
    max-width: 100%;
    max-height: 500px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

/* About Page Logo */
.about-logo-image {
    max-width: 200px;
    height: auto;
}

.product-smoke {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
    pointer-events: none;
}

.product-smoke .smoke-particle {
    bottom: auto;
    top: 50%;
}

.product-smoke .smoke-particle:nth-child(1) {
    left: 20%;
    animation-delay: 0s;
}

.product-smoke .smoke-particle:nth-child(2) {
    left: 45%;
    animation-delay: 0.7s;
}

.product-smoke .smoke-particle:nth-child(3) {
    left: 70%;
    animation-delay: 1.4s;
}

/* Hero Scroll Indicator */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.hero-scroll a {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    animation: float 2s ease-in-out infinite;
}

.hero-scroll a:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

/* =====================================================
   Sections
   ===================================================== */
.section-padding {
    padding: var(--section-padding) 0;
}

.bg-dark-alt {
    background-color: var(--bg-dark-alt);
}

.section-header {
    margin-bottom: 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(224, 112, 32, 0.15);
    color: var(--color-accent);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.text-accent {
    color: var(--color-accent);
}

/* =====================================================
   Feature Cards - Flip Effect
   ===================================================== */
.flip-card {
    perspective: 1000px;
    height: 280px;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner,
.flip-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.flip-card-front {
    background: var(--bg-card);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.flip-card-back {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-cream);
}

.flip-card-back h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--color-cream);
}

.flip-card-back ul {
    list-style: none;
    padding: 0;
    margin: 0 0 15px 0;
    text-align: left;
}

.flip-card-back ul li {
    padding: 5px 0;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.flip-card-back ul li::before {
    content: '✓';
    color: var(--color-accent);
    font-weight: bold;
}

.flip-card-back .flip-cta {
    margin-top: auto;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    color: var(--color-accent);
    font-size: 0.9rem;
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--color-cream);
}

.flip-card-front h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.flip-card-front p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Hint to flip */
.flip-card-front::after {
    content: 'Hover for details';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: var(--text-muted);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.flip-card:hover .flip-card-front::after {
    opacity: 0;
}

.flip-card .flip-card-front::after {
    opacity: 0.7;
}

/* =====================================================
   Product Preview
   ===================================================== */
.product-preview-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.preview-can {
    animation: float 5s ease-in-out infinite;
}

.preview-smoke {
    position: absolute;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 250px;
}

.product-features-list {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.product-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.product-features-list li i {
    margin-top: 4px;
}

.product-price {
    margin-bottom: 25px;
}

.product-price .price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--color-accent);
}

.product-price .price-unit {
    font-size: 1rem;
    color: var(--text-muted);
    margin-left: 5px;
}

/* =====================================================
   Brand Story
   ===================================================== */
.story-stats {
    padding: 20px;
}

.story-stat-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.story-stat-card .stat-icon {
    display: block;
    font-size: 24px;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.story-stat-card .stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
}

.story-stat-card .stat-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* =====================================================
   CTA Section
   ===================================================== */
.cta {
    position: relative;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    overflow: hidden;
}

.cta-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Page Hero
   ===================================================== */
.page-hero {
    position: relative;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-primary-dark) 100%);
    padding: 180px 0 100px;
    text-align: center;
    overflow: hidden;
}

.page-hero-sm {
    padding: 150px 0 60px;
}

.page-hero .hero-smoke {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    max-width: 600px;
    height: 200px;
    z-index: 0;
    pointer-events: none;
}

.page-hero .hero-smoke .smoke-particle {
    bottom: auto;
    top: 50%;
}

.page-title {
    font-size: 3.5rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
}

/* =====================================================
   Product Page
   ===================================================== */
.product-gallery {
    position: relative;
}

.product-main-image {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.product-badge {
    background: var(--bg-card);
    color: var(--color-cream);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-badge i {
    color: var(--color-accent);
}

.product-info .product-category {
    color: var(--color-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.product-info .product-name {
    font-size: 2.5rem;
    margin: 10px 0 20px;
}

.product-rating {
    margin-bottom: 20px;
    color: var(--color-accent);
}

.product-rating .rating-count {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-left: 10px;
}

.product-price-box {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
    display: inline-block;
}

.product-price-box .current-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--color-accent);
}

.product-price-box .price-unit {
    color: var(--text-muted);
    margin-left: 5px;
}

.product-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.8;
}

.product-specs {
    margin-bottom: 30px;
}

.product-specs h4,
.product-ingredients h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--color-cream);
}

.specs-table {
    width: 100%;
}

.specs-table tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.specs-table th,
.specs-table td {
    padding: 12px 0;
}

.specs-table th {
    color: var(--text-muted);
    font-weight: 500;
    width: 40%;
}

.specs-table th i {
    margin-right: 10px;
    color: var(--color-accent);
}

.specs-table td {
    color: var(--text-primary);
}

.product-ingredients {
    margin-bottom: 30px;
}

.product-ingredients p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* How To Section */
.how-to-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.how-to-number {
    width: 50px;
    height: 50px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: white;
}

.how-to-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.how-to-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-primary-dark) 50%, var(--bg-dark) 100%);
}

.order-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.order-form .form-section-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-cream);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Warning Section */
.warning-box {
    background: rgba(224, 112, 32, 0.1);
    border-radius: var(--radius-lg);
    padding: 30px;
    border: 1px solid rgba(224, 112, 32, 0.3);
}

.warning-box h4 {
    color: var(--color-accent);
    margin-bottom: 15px;
}

.warning-box ul {
    color: var(--text-secondary);
    padding-left: 20px;
}

.warning-box li {
    margin-bottom: 8px;
}

/* =====================================================
   About Page
   ===================================================== */
.about-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-placeholder {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-cream);
    border: 5px solid rgba(255, 255, 255, 0.1);
}

.about-image-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--color-accent);
    color: white;
    padding: 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.about-image-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    line-height: 1;
}

.about-image-badge .badge-text {
    font-size: 0.75rem;
    text-transform: uppercase;
}

/* Partnership Logos */
.partnership-image {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.partnership-logos {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo-box {
    width: 120px;
    height: 120px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-box i {
    font-size: 2.5rem;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.logo-box span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.logo-connector {
    color: var(--text-muted);
    font-size: 1.5rem;
}

/* Value Cards */
.value-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    height: 100%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all var(--transition-normal);
}

.value-card:hover {
    border-color: rgba(224, 112, 32, 0.3);
    transform: translateY(-5px);
}

.value-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.value-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Mission Section */
.mission .quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.mission .quote-author {
    color: var(--color-accent);
    margin-top: 15px;
}

.mission-divider {
    margin: 40px 0;
    color: var(--color-accent);
    font-size: 1.5rem;
}

/* =====================================================
   FAQ Page
   ===================================================== */
.faq-category {
    margin-bottom: 50px;
}

.faq-category-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--color-cream);
    padding-bottom: 15px;
    border-bottom: 2px solid var(--color-accent);
}

.accordion-item {
    background: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    margin-bottom: 10px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
}

.accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    padding: 20px 25px;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--color-accent);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    background: var(--bg-card);
    color: var(--text-secondary);
    padding: 0 25px 20px;
    line-height: 1.8;
}

.faq-cta {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-cta h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-cta p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* =====================================================
   Contact Page
   ===================================================== */
.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-methods {
    margin: 30px 0;
}

.contact-method {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.method-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.method-details h5 {
    font-size: 1rem;
    margin-bottom: 5px;
    font-family: var(--font-body);
}

.method-details a,
.method-details p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin: 0;
}

.contact-social h5 {
    font-size: 1rem;
    margin-bottom: 15px;
    font-family: var(--font-body);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: var(--bg-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: all var(--transition-fast);
}

.social-links a:hover {
    background: var(--color-accent);
    color: white;
}

.contact-form-box {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.faq-cta-section {
    text-align: center;
}

.faq-cta-section h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.faq-cta-section p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* =====================================================
   Legal Pages
   ===================================================== */
.legal-document {
    background: var(--bg-card);
    border-radius: var(--radius-xl);
    padding: 50px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-notice {
    background: rgba(224, 112, 32, 0.1);
    border: 1px solid rgba(224, 112, 32, 0.3);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 40px;
}

.legal-notice h3 {
    color: var(--color-accent);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.legal-notice p {
    color: var(--text-secondary);
    margin: 0;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 1.5rem;
    color: var(--color-cream);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-section h3 {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin: 25px 0 15px;
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul {
    color: var(--text-secondary);
    padding-left: 25px;
    line-height: 1.8;
}

.legal-section li {
    margin-bottom: 8px;
}

/* =====================================================
   404 Page
   ===================================================== */
.error-page {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--bg-dark) 0%, var(--color-primary-dark) 100%);
    padding: 120px 0;
    overflow: hidden;
}

.error-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 300px;
}

.error-content {
    position: relative;
    z-index: 2;
}

.error-icon {
    font-size: 4rem;
    color: var(--color-accent);
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.error-code {
    font-size: 8rem;
    line-height: 1;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.error-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.error-message {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.error-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

/* =====================================================
   Forms
   ===================================================== */
.form-label {
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control,
.form-select {
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.form-control:focus,
.form-select:focus {
    background: var(--bg-dark);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-glow);
    color: var(--text-primary);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-check-input {
    background-color: var(--bg-dark);
    border-color: rgba(255, 255, 255, 0.2);
}

.form-check-input:checked {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

.form-check-label {
    color: var(--text-secondary);
}

/* =====================================================
   Alerts
   ===================================================== */
.alert {
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 25px;
}

.alert-success {
    background: rgba(40, 167, 69, 0.15);
    border: 1px solid rgba(40, 167, 69, 0.3);
    color: #7dcea0;
}

.alert-danger {
    background: rgba(220, 53, 69, 0.15);
    border: 1px solid rgba(220, 53, 69, 0.3);
    color: #f1948a;
}

.alert-danger ul {
    padding-left: 20px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
    position: relative;
    background: var(--bg-dark-alt);
    padding: 80px 0 30px;
    overflow: hidden;
}

.footer-smoke {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.4;
    z-index: 0;
    pointer-events: none;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.footer-brand .footer-logo {
    height: 45px;
    width: auto;
}

.footer-tagline {
    color: var(--color-accent);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--color-accent);
    color: white;
}

.footer-heading {
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: color var(--transition-fast);
}

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

.footer-divider {
    border-color: rgba(255, 255, 255, 0.05);
    margin: 40px 0 20px;
}

/* Footer text override - make text readable */
.footer .text-muted {
    color: var(--text-secondary) !important;
}

.footer .small.text-muted {
    color: #a0a0a0 !important;
}

/* =====================================================
   Responsive
   ===================================================== */
@media (max-width: 991px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 25px;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .order-box {
        padding: 30px;
    }

    .legal-document {
        padding: 30px;
    }
}

@media (max-width: 767px) {
    :root {
        --section-padding: 60px;
    }

    /* Flip cards - tap to flip on mobile */
    .flip-card {
        height: 260px;
    }

    .flip-card-front::after {
        content: 'Tap for details';
    }

    /* Smoke - more visible on mobile */
    .smoke-particle {
        filter: blur(3px);
        background: radial-gradient(ellipse at center, rgba(220, 220, 220, 0.6) 0%, transparent 60%);
    }

    .smoke-particle::before,
    .smoke-particle::after {
        background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
        filter: blur(3px);
    }

    .smoke-particle:nth-child(1),
    .smoke-particle:nth-child(2),
    .smoke-particle:nth-child(3),
    .smoke-particle:nth-child(4),
    .smoke-particle:nth-child(5) {
        filter: blur(4px);
    }

    .cta-smoke,
    .footer-smoke {
        opacity: 0.85;
    }

    .hero-smoke,
    .page-hero .hero-smoke,
    .error-smoke,
    .age-gate-smoke {
        opacity: 1;
    }

    .hero {
        padding-top: 75px;
        padding-bottom: 40px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hero-stats {
        justify-content: center;
    }

    .section-title {
        font-size: 2rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }

    .age-gate-box {
        padding: 40px 25px;
    }

    .age-gate-buttons {
        gap: 10px;
    }

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

    .about-image-placeholder {
        width: 250px;
        height: 250px;
    }

    .partnership-logos {
        flex-direction: column;
    }

    .logo-connector {
        transform: rotate(90deg);
    }

    .error-code {
        font-size: 5rem;
    }

    .error-title {
        font-size: 1.8rem;
    }

    .error-actions {
        flex-direction: column;
    }

    .error-actions .btn {
        width: 100%;
    }
}

@media (max-width: 575px) {
    .navbar-brand .brand-text {
        font-size: 1.1rem;
    }

    .fl-banner {
        font-size: 0.75rem;
    }

    .can-placeholder {
        width: 150px;
        height: 230px;
    }

    .can-placeholder.large {
        width: 180px;
        height: 280px;
    }

    .can-placeholder.xlarge {
        width: 200px;
        height: 300px;
    }

    .order-box,
    .contact-form-box {
        padding: 25px 20px;
    }

    .legal-document {
        padding: 25px 20px;
    }
}
