@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@400;700;900&family=Cinzel:wght@400;500;600;700;800;900&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&display=swap');

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

:root {
    --truphoria-gold: #c9a84c;
    --truphoria-gold-light: #e8d48b;
    --truphoria-purple: #6b46c1;
    --truphoria-purple-dark: #4a2d8a;
    --truphoria-purple-light: #a78bfa;
    --truphoria-pink: #ec4899;
    --truphoria-dark: #0a0a0f;
    --truphoria-dark-card: #111118;
    --truphoria-dark-surface: #1a1a25;
    --truphoria-text: #e8e6f0;
    --truphoria-text-muted: #9994b8;
    --font-display: 'Cinzel Decorative', 'Georgia', serif;
    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-body: 'Cormorant Garamond', 'Georgia', serif;
}

html {
    scroll-behavior: smooth;
}

.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;
}

body {
    font-family: var(--font-body);
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    background: var(--truphoria-dark);
    color: var(--truphoria-text);
}

/* ==========================================
   NAVIGATION
   ========================================== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transition: all 0.4s ease;
    overflow: visible;
}

.main-nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.8rem 2rem;
    overflow: visible;
}

.nav-brand {
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
    overflow: visible;
}

.nav-brand-img {
    height: 210px;
    width: auto;
    object-fit: contain;
    margin: -80px 0;
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
    position: relative;
    z-index: 10;
}

.nav-brand:hover .nav-brand-img {
    filter: drop-shadow(0 0 18px rgba(201, 168, 76, 0.5));
    transform: scale(1.03);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    list-style: none;
}

.nav-links > li {
    position: relative;
}

.nav-links > li > a {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--truphoria-text);
    text-decoration: none;
    padding: 0.7rem 1.1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.nav-links > li > a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--truphoria-gold), var(--truphoria-purple-light));
    transition: width 0.3s ease;
}

.nav-links > li > a:hover,
.nav-links > li > a.active {
    color: var(--truphoria-gold);
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.nav-links > li > a:hover::after,
.nav-links > li > a.active::after {
    width: 70%;
}

.dropdown-arrow {
    font-size: 0.6rem;
    transition: transform 0.3s ease;
}

.nav-links > li:hover .dropdown-arrow {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: rgba(17, 17, 24, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 0 0 12px 12px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    list-style: none;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.nav-links > li:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--truphoria-text-muted);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    letter-spacing: 0.06em;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu li a:hover {
    color: var(--truphoria-gold);
    background: rgba(201, 168, 76, 0.08);
    border-left-color: var(--truphoria-gold);
    padding-left: 1.8rem;
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--truphoria-gold);
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================
   HERO SECTION (Home Page)
   ========================================== */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 2rem;
    padding-bottom: 3rem;
    padding-top: 80px;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: 0;
    object-fit: cover;
}

.video-fade-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0);
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.video-fade-overlay.fade-in {
    opacity: 1;
    background: rgba(255, 255, 255, 1);
    animation: whiteFade 0.8s ease-in-out;
}

@keyframes whiteFade {
    0% { opacity: 0; background: rgba(255, 255, 255, 0); }
    50% { opacity: 1; background: rgba(255, 255, 255, 1); }
    100% { opacity: 0; background: rgba(255, 255, 255, 0); }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    width: 100%;
}

.coming-soon-messages {
    margin-top: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.3s ease-out;
}

.product-release-text {
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    text-shadow:
        3px 3px 6px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(139, 69, 19, 0.5),
        0 0 40px rgba(147, 51, 234, 0.4),
        0 0 60px rgba(236, 72, 153, 0.3),
        0 0 80px rgba(255, 255, 255, 0.2);
    letter-spacing: 0.1em;
    line-height: 1.3;
    font-family: var(--font-heading);
    position: relative;
    animation: glowPulse 3s ease-in-out infinite 0.5s;
}

@keyframes glowPulse {
    0%, 100% {
        text-shadow:
            4px 4px 8px rgba(0, 0, 0, 0.9),
            0 0 30px rgba(139, 69, 19, 0.6),
            0 0 50px rgba(147, 51, 234, 0.5),
            0 0 70px rgba(236, 72, 153, 0.4),
            0 0 100px rgba(255, 255, 255, 0.3);
    }
    50% {
        text-shadow:
            4px 4px 8px rgba(0, 0, 0, 0.9),
            0 0 40px rgba(139, 69, 19, 0.8),
            0 0 65px rgba(147, 51, 234, 0.7),
            0 0 90px rgba(236, 72, 153, 0.6),
            0 0 120px rgba(255, 255, 255, 0.4);
    }
}

/* PDF Cards */
.pdf-container {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1.2s ease-out;
    margin-top: 0;
}

.pdf-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    width: 140px;
    min-height: 200px;
    cursor: pointer;
}

.pdf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    background: rgba(255, 255, 255, 1);
}

.pdf-preview {
    width: 80px;
    height: 100px;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    margin-bottom: 0.3rem;
}

.pdf-thumbnail {
    width: 100%;
    height: 100%;
    border: none;
    pointer-events: none;
}

.pdf-icon {
    width: 28px;
    height: 28px;
    color: #6b46c1;
}

.pdf-card span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
    word-wrap: break-word;
}

/* PDF Modal */
.pdf-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    animation: fadeIn 0.3s ease-out;
}

.pdf-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pdf-modal-content {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    max-width: 90%;
    max-height: 90vh;
    width: 800px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pdf-modal-close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 2rem;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
    transition: color 0.3s ease;
}

.pdf-modal-close:hover {
    color: var(--truphoria-purple);
}

.pdf-modal-title {
    color: #333;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin: 0;
    padding-top: 0.5rem;
}

.pdf-modal-iframe {
    width: 100%;
    height: 70vh;
    border: none;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* ==========================================
   PAGE HERO (Inner Pages)
   ========================================== */
.page-hero {
    position: relative;
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 3rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--truphoria-dark) 0%, #1a0f2e 50%, #0f0a1a 100%);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(107, 70, 193, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(201, 168, 76, 0.1) 0%, transparent 60%);
    z-index: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.page-hero-logo {
    width: 550px;
    max-width: 85%;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.3));
}

.page-title {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--truphoria-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-shadow:
        0 0 30px rgba(201, 168, 76, 0.4),
        0 0 60px rgba(201, 168, 76, 0.2);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1.4rem;
    color: var(--truphoria-text-muted);
    font-weight: 400;
    font-style: italic;
    letter-spacing: 0.04em;
    line-height: 1.6;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-section {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-grid.reverse {
    direction: rtl;
}

.about-grid.reverse > * {
    direction: ltr;
}

.about-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 16px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    z-index: 1;
    pointer-events: none;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.03);
}

.about-image-wrapper.no-container {
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper.no-container::before {
    display: none;
}

.about-image-wrapper.no-container img {
    width: 200%;
    max-width: 900px;
    margin: -25% -50%;
    filter: drop-shadow(0 0 40px rgba(201, 168, 76, 0.25));
    pointer-events: none;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
}

.about-text p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--truphoria-text-muted);
    margin-bottom: 1.2rem;
}

.about-text .highlight {
    color: var(--truphoria-gold-light);
    font-weight: 600;
}

.about-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--truphoria-dark-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
}

.value-card:hover {
    border-color: rgba(201, 168, 76, 0.35);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.value-icon {
    display: block;
    margin-bottom: 1.2rem;
    color: var(--truphoria-gold);
}

.value-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--truphoria-gold);
    filter: drop-shadow(0 0 8px rgba(201, 168, 76, 0.3));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.value-card:hover .value-icon svg {
    filter: drop-shadow(0 0 14px rgba(201, 168, 76, 0.5));
    transform: scale(1.1);
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--truphoria-text-muted);
}

/* ==========================================
   5 GRAM CHOCOLATE BAR PAGE
   ========================================== */
.product-intro {
    padding: 4rem 2rem 2rem;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.product-intro h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.product-intro p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--truphoria-text-muted);
    font-style: italic;
}

/* Customizer Section */
.customizer-section {
    padding: 3rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.customizer-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.customizer-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.customizer-header p {
    font-size: 1.15rem;
    color: var(--truphoria-text-muted);
    font-style: italic;
}

.step-label {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--truphoria-gold), var(--truphoria-purple));
    color: white;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 700;
}

/* Strain Selector */
.strain-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem 1rem;
    margin-bottom: 2.5rem;
    align-items: center;
}

.strain-card {
    background: transparent;
    border: none;
    padding: 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border-radius: 8px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.strain-card::before {
    display: none;
}

.strain-card:hover {
    transform: translateY(-3px);
}

.strain-card.active {
    background: rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.strain-card .strain-icon {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 4px rgba(201, 168, 76, 0.15));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.strain-card:hover .strain-icon,
.strain-card.active .strain-icon {
    filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.5));
    transform: scale(1.08);
}

/* Flavor Selector */
.flavor-section {
    margin-bottom: 3rem;
    display: none;
}

.flavor-section.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.flavor-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0.6rem 1rem;
    align-items: center;
}

.flavor-card {
    background: transparent;
    border: none;
    padding: 0.4rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.flavor-card:hover {
    transform: translateY(-3px);
}

.flavor-card.active {
    background: rgba(201, 168, 76, 0.08);
    border-radius: 8px;
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.15);
}

.flavor-card .flavor-icon {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    filter: drop-shadow(0 0 3px rgba(201, 168, 76, 0.1));
    transition: filter 0.3s ease, transform 0.3s ease;
}

.flavor-card:hover .flavor-icon,
.flavor-card.active .flavor-icon {
    filter: drop-shadow(0 0 10px rgba(201, 168, 76, 0.4));
    transform: scale(1.08);
}

/* Product Viewer */
.product-viewer {
    display: none;
    margin-bottom: 4rem;
}

.product-viewer.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.viewer-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.viewer-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.viewer-main-image {
    position: relative;
    background: var(--truphoria-dark-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    width: 100%;
    max-width: 500px;
    aspect-ratio: 3/4;
    margin: 0 auto;
}

.viewer-main-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s ease;
}

.viewer-main-image:hover img {
    transform: scale(1.03);
}

.viewer-toggle {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
}

.toggle-btn {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.7rem 1.5rem;
    border: 2px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: transparent;
    color: var(--truphoria-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.toggle-btn:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--truphoria-text);
}

.toggle-btn.active {
    background: var(--truphoria-gold);
    color: var(--truphoria-dark);
    border-color: var(--truphoria-gold);
}

.viewer-details {
    padding: 1rem 0;
}

.viewer-details h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.06em;
    margin-bottom: 0.3rem;
}

.viewer-details .detail-flavor {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--truphoria-purple-light);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}



.viewer-details .detail-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--truphoria-text-muted);
    margin-bottom: 1.5rem;
}

.viewer-details .detail-dosage {
    background: var(--truphoria-dark-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-dosage h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.detail-dosage p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--truphoria-text-muted);
}

.viewer-details .detail-ingredients {
    background: var(--truphoria-dark-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.detail-ingredients h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.detail-ingredients p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--truphoria-text-muted);
}

/* Strain Descriptions Section */
.strains-breakdown {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.strains-breakdown > h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--truphoria-gold);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 3rem;
}

.strain-detail-card {
    background: var(--truphoria-dark-card);
    border: 1px solid rgba(201, 168, 76, 0.1);
    border-radius: 16px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    align-items: center;
    transition: all 0.4s ease;
}

.strain-detail-card:hover {
    border-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.strain-detail-image {
    border-radius: 12px;
    overflow: hidden;
    background: var(--truphoria-dark-surface);
}

.strain-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.strain-detail-info h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.06em;
    margin-bottom: 0.5rem;
}


.strain-detail-info p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--truphoria-text-muted);
}

.strain-tagline {
    font-style: italic;
    font-size: 1.25rem !important;
    color: var(--truphoria-gold) !important;
    margin-bottom: 0.6rem;
}

.strain-great-for {
    margin-top: 0.8rem;
    font-size: 1rem !important;
}

.strain-great-for strong {
    color: var(--truphoria-gold);
}

/* ==========================================
   WHOLESALE PAGE
   ========================================== */
.wholesale-gallery {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wholesale-gallery h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--truphoria-gold);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.case-renders-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.case-render-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.12);
    transition: all 0.4s ease;
    background: var(--truphoria-dark-card);
}

.case-render-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.case-render-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.case-render-label {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    color: var(--truphoria-text);
    text-align: center;
    padding: 1rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Video Montage */
.video-montage {
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.video-montage h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--truphoria-gold);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.video-montage > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--truphoria-text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.montage-container {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.15);
    background: #000;
    aspect-ratio: 16/9;
    margin-bottom: 1.5rem;
}

.montage-container video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.montage-controls {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 4rem;
}

.montage-btn {
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 8px;
    background: transparent;
    color: var(--truphoria-text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.montage-btn:hover {
    border-color: var(--truphoria-gold);
    color: var(--truphoria-gold);
}

.montage-btn.active {
    background: var(--truphoria-gold);
    color: var(--truphoria-dark);
    border-color: var(--truphoria-gold);
}

/* Inquiry Form */
.inquiry-form-section {
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.inquiry-form-section h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--truphoria-gold);
    text-align: center;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.inquiry-form-section > p {
    text-align: center;
    font-size: 1.15rem;
    color: var(--truphoria-text-muted);
    margin-bottom: 2.5rem;
    font-style: italic;
}

.inquiry-form {
    background: var(--truphoria-dark-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 16px;
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    font-family: var(--font-body);
    font-size: 1.05rem;
    padding: 0.9rem 1.2rem;
    background: var(--truphoria-dark-surface);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
    color: var(--truphoria-text);
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--truphoria-gold);
    box-shadow: 0 0 15px rgba(201, 168, 76, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.submit-btn {
    width: 100%;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--truphoria-gold), #d4a843);
    color: var(--truphoria-dark);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--truphoria-gold-light), var(--truphoria-gold));
    box-shadow: 0 8px 25px rgba(201, 168, 76, 0.3);
    transform: translateY(-2px);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success.show {
    display: block;
    animation: fadeInUp 0.5s ease-out;
}

.form-success h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--truphoria-gold);
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--truphoria-text-muted);
    font-size: 1.1rem;
}

/* ==========================================
   FAN ART & COMING SOON PAGES
   ========================================== */
.coming-soon-section {
    text-align: center;
    padding: 4rem 2rem;
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.coming-soon-section h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(201, 168, 76, 0.3);
}

.coming-soon-section p {
    font-size: 1.3rem;
    color: var(--truphoria-text-muted);
    font-style: italic;
    max-width: 600px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: var(--truphoria-dark-card);
    border-top: 1px solid rgba(201, 168, 76, 0.12);
    padding: 3rem 2rem;
    text-align: center;
}

.footer-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--truphoria-gold);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    text-shadow: 0 0 15px rgba(201, 168, 76, 0.3);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    list-style: none;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    color: var(--truphoria-text-muted);
    text-decoration: none;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.footer-email {
    color: var(--truphoria-purple-light);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1rem;
}

.footer-email:hover {
    color: var(--truphoria-gold-light);
}

.footer-copyright {
    font-size: 0.9rem;
    color: rgba(153, 148, 184, 0.5);
}

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

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

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.7s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */
@media (max-width: 1024px) {
    .strain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

    .viewer-container {
        grid-template-columns: 1fr;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-grid.reverse {
        direction: ltr;
    }

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

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(10, 10, 15, 0.98);
        flex-direction: column;
        padding: 5rem 2rem 2rem;
        transition: right 0.4s ease;
        gap: 0;
        border-left: 1px solid rgba(201, 168, 76, 0.15);
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links > li > a {
        padding: 1rem 0;
        font-size: 1.1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0 0 0 1.5rem;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .dropdown-menu.mobile-open {
        max-height: 300px;
    }

    .dropdown-menu li a {
        padding: 0.6rem 0;
        border-left: none;
    }

    .nav-toggle {
        display: flex;
    }

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

    .page-subtitle {
        font-size: 1.15rem;
    }

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

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

    .case-renders-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .strain-detail-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-section {
        height: 100vh;
        padding-bottom: 2rem;
    }

    .product-release-text {
        font-size: 1.5rem;
        letter-spacing: 0.08em;
    }

    .pdf-container {
        flex-direction: row;
        align-items: center;
        gap: 0.8rem;
    }

    .pdf-card {
        width: 120px;
        min-height: 180px;
        padding: 0.6rem 1rem;
    }

    .pdf-preview {
        width: 70px;
        height: 90px;
    }

    .pdf-icon { width: 24px; height: 24px; }

    .pdf-card span { font-size: 0.75rem; }

    .pdf-modal-content {
        width: 95%;
        max-height: 85vh;
    }

    .pdf-modal-iframe {
        height: 60vh;
    }

    .montage-controls {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .nav-brand-img {
        height: 45px;
    }

    .hero-section {
        height: 100vh;
        padding-bottom: 1.5rem;
    }

    .product-release-text {
        font-size: 1.1rem;
        letter-spacing: 0.05em;
    }

    .pdf-card {
        width: 100px;
        min-height: 160px;
        padding: 0.5rem 0.8rem;
    }

    .pdf-preview { width: 60px; height: 75px; }
    .pdf-icon { width: 20px; height: 20px; }
    .pdf-card span { font-size: 0.65rem; }

    .pdf-modal-content { padding: 1.5rem; }
    .pdf-modal-iframe { height: 50vh; }

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

    .strain-grid,
    .flavor-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .customizer-header h2 {
        font-size: 1.5rem;
    }

    .inquiry-form {
        padding: 1.5rem;
    }
}

/* Mobile nav overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999;
}

.nav-overlay.show {
    display: block;
}
