/* CTB Main Styles */

:root {
    --ctb-black: #000000;
    --ctb-royal-purple: #6B2C91;
    --ctb-deep-purple: #4A1B6B;
    --ctb-electric-purple: #8B3FBF;
    --ctb-dark-green: #1B4D3E;
    --ctb-emerald: #2ECC71;
    --ctb-forest-green: #0F3D2E;
    --ctb-lime-green: #7FFF00;
    --ctb-gold: #FFD700;
    --ctb-orange: #FF8C00;
    --ctb-electric-blue: #00D4FF;
    --ctb-white: #FFFFFF;
    --ctb-off-white: #F8F8F8;
    --ctb-light-gray: #E0E0E0;
    --ctb-medium-gray: #808080;

    --gradient-purple-green: linear-gradient(135deg, var(--ctb-royal-purple) 0%, var(--ctb-dark-green) 100%);
    --gradient-purple-blue: linear-gradient(135deg, var(--ctb-deep-purple) 0%, var(--ctb-electric-blue) 100%);
    --gradient-green-gold: linear-gradient(135deg, var(--ctb-emerald) 0%, var(--ctb-gold) 100%);
    --gradient-animated: linear-gradient(270deg, var(--ctb-royal-purple), var(--ctb-electric-purple), var(--ctb-dark-green), var(--ctb-emerald));

    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.25);
    --shadow-glow-purple: 0 0 30px rgba(107, 44, 145, 0.5);
    --shadow-glow-green: 0 0 30px rgba(46, 204, 113, 0.5);
}

body {
    font-family: var(--ctb-font-body);
    overflow-x: hidden;
    background: var(--ctb-black);
    color: var(--ctb-white);
}

/* Background Animation */
.animated-bg {
    position: fixed;
    /* Fixed to cover entire viewport */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(270deg, var(--ctb-royal-purple), var(--ctb-electric-purple), var(--ctb-deep-purple), var(--ctb-dark-green), var(--ctb-forest-green), var(--ctb-emerald));
    background-size: 1200% 1200%;
    animation: gradientShift 60s ease infinite;
    /* Slowed down to 60s */
    opacity: 0.7;
    z-index: -2;
    /* Behind everything */
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Organic Shapes */
.organic-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
    /* Behind content */
}

.organic-blob {
    position: absolute;
    filter: blur(80px);
    opacity: 0.25;
    animation: organicFloat 20s ease-in-out infinite;
}

.blob-purple {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--ctb-electric-purple) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    animation: organicMorph 15s ease-in-out infinite;
}

.blob-green {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--ctb-emerald) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    animation: organicMorph 18s ease-in-out infinite;
    animation-delay: 2s;
}

.blob-gold {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, var(--ctb-gold) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    animation: organicMorph 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes organicFloat {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(20px, -20px);
    }
}

@keyframes organicMorph {

    0%,
    100% {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transform: rotate(0deg) scale(1);
    }

    25% {
        border-radius: 60% 40% 50% 50% / 30% 60% 40% 70%;
        transform: rotate(90deg) scale(1.1);
    }

    50% {
        border-radius: 50% 60% 30% 70% / 50% 40% 60% 50%;
        transform: rotate(180deg) scale(0.9);
    }

    75% {
        border-radius: 70% 30% 60% 40% / 60% 50% 40% 50%;
        transform: rotate(270deg) scale(1.05);
    }
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Behind content, in front of bg */
    pointer-events: none;
}

/* Typography & Readability */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ctb-font-heading);
    color: var(--ctb-white);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

p,
li,
span,
a {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

/* Glassmorphism Cards for Readability */
.description,
.category-card,
.content-card,
.woocommerce-product-details__short-description {
    background: rgba(0, 0, 0, 0.6) !important;
    /* Darker background for better contrast */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    color: var(--ctb-white);
}

.description strong {
    color: var(--ctb-emerald);
    font-weight: 600;
}

/* Buttons */
.btn,
.button,
button,
input[type="submit"] {
    font-family: var(--ctb-font-body);
    font-weight: 600;
    border-radius: 50px !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary,
.button.alt,
button.alt,
input[type="submit"].alt {
    background: linear-gradient(135deg, var(--ctb-emerald) 0%, var(--ctb-dark-green) 100%) !important;
    color: var(--ctb-white) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
}

.btn-primary:hover,
.button.alt:hover,
button.alt:hover,
input[type="submit"].alt:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

/* Navigation */
.main-navigation {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    width: 100%;
}

.main-navigation ul {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.main-navigation li {
    margin: 0 15px;
}

.main-navigation a {
    color: var(--ctb-white) !important;
    font-weight: 600;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 10px;
    display: block;
    text-decoration: none;
}

.main-navigation a:hover {
    color: var(--ctb-gold) !important;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
}

/* =========================================
   Layout & Grid Systems
   ========================================= */

/* Welcome Home Layout */
.main-layout {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr;
    gap: 80px;
    align-items: center;
    max-width: 2000px;
    margin: 0 auto;
    padding: 0 40px;
}

.left-column,
.right-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.center-content {
    text-align: center;
    padding: 0 15px;
}

/* Whole Stash Layout */
.main-container {
    display: flex;
    flex: 1;
}

.sidebar-menu {
    width: 280px;
    background: rgba(0, 0, 0, 0.8);
    border-right: 2px solid rgba(139, 63, 191, 0.4);
    padding: 30px 20px;
    position: sticky;
    top: 0;
    height: 100vh;
    overflow-y: auto;
}

.categories-container {
    flex: 1;
    max-width: 1800px;
    margin: 60px auto;
    padding: 0 40px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* =========================================
   Components
   ========================================= */

/* Product Images & Badges */
.product-image {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.3);
}

.product-image:hover {
    border-color: rgba(46, 204, 113, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.badge {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    max-width: 380px;
    width: 100%;
}

.badge img {
    width: 100%;
    height: auto;
    display: block;
}

.badge:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

/* Age Badges */
.age-badge-inline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(22px);
    border: 3px solid rgba(255, 215, 0, 0.75);
    border-radius: 50px;
    padding: 12px 28px;
    box-shadow: 0 8px 40px rgba(255, 215, 0, 0.35);
}

.age-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ctb-gold) 0%, var(--ctb-orange) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 20px;
    color: var(--ctb-black);
    flex-shrink: 0;
}

.age-text {
    font-size: 18px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.95);
}

.age-badge-bottom {
    text-align: center;
    margin-top: 30px;
}

/* Page Header */
.page-header {
    position: relative;
    padding: 60px 280px 60px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--ctb-royal-purple) 0%, var(--ctb-emerald) 100%);
    overflow: hidden;
    z-index: 100;
}

.page-header .logo {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    height: calc(100% - 20px);
    width: auto;
    z-index: 101;
}

.header-content {
    text-align: center;
}

.page-title {
    font-family: var(--ctb-font-heading);
    font-size: 96px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--ctb-gold) 0%, var(--ctb-orange) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

/* Category Cards */
.category-card {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 63, 191, 0.4);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 63, 191, 0.8);
    box-shadow: 0 20px 60px rgba(139, 63, 191, 0.4);
}

.category-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.category-content {
    padding: 30px;
    text-align: center;
}

.category-title {
    font-family: var(--ctb-font-heading);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
    background: linear-gradient(135deg, var(--ctb-gold) 0%, var(--ctb-emerald) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.category-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 15px;
}

.category-badge {
    display: inline-block;
    padding: 8px 18px;
    background: rgba(255, 215, 0, 0.2);
    border: 1px solid rgba(255, 215, 0, 0.4);
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--ctb-gold);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Flower Grades Card */
.flower-grades-card {
    grid-column: 1 / -1;
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 215, 0, 0.5);
}

.flower-grades-card:hover {
    border-color: rgba(255, 215, 0, 0.9);
    box-shadow: 0 20px 60px rgba(255, 215, 0, 0.3);
}

.flower-grades-card .category-content {
    padding: 50px;
}

.flower-grades-card .category-title {
    font-size: 56px;
    margin-bottom: 20px;
    display: inline-block;
    margin-right: 20px;
}

.flower-grades-card .category-badge {
    display: inline-block;
    vertical-align: middle;
    margin-bottom: 20px;
    font-size: 18px;
    padding: 10px 22px;
}

.flower-grades-card .category-description {
    font-size: 22px;
    margin-bottom: 30px;
}

.grades-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
    justify-content: center;
}

.grade-item {
    background: rgba(139, 63, 191, 0.2);
    border: 1px solid rgba(139, 63, 191, 0.4);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    flex: 0 0 calc(16.666% - 17px);
    min-width: 150px;
}

.grade-item:hover {
    background: rgba(139, 63, 191, 0.4);
    border-color: rgba(139, 63, 191, 0.8);
    transform: scale(1.05);
}

.grade-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.grade-name {
    font-family: var(--ctb-font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--ctb-gold);
    margin-bottom: 10px;
}

.grade-description {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Sidebar Menu */
.menu-title {
    font-family: var(--ctb-font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--ctb-gold);
    margin-bottom: 25px;
    text-align: center;
}

.menu-category {
    margin-bottom: 10px;
}

.menu-category-link {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: var(--ctb-emerald);
    text-decoration: none;
    padding: 12px 15px;
    border-radius: 8px;
    background: rgba(139, 63, 191, 0.2);
    border: 1px solid rgba(139, 63, 191, 0.4);
    transition: all 0.3s ease;
    margin-bottom: 0;
    cursor: pointer;
    position: relative;
}

.menu-category-link:hover {
    background: rgba(139, 63, 191, 0.4);
    border-color: rgba(139, 63, 191, 0.8);
    transform: translateX(5px);
}

.menu-subcategories {
    margin-left: 15px;
    margin-top: 8px;
    /* max-height: 0; overflow: hidden; - removed for simplicity unless JS is added */
}

.menu-subcategory {
    display: block;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 8px 12px;
    border-left: 2px solid rgba(255, 215, 0, 0.3);
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.menu-subcategory:hover {
    color: var(--ctb-gold);
    border-left-color: var(--ctb-gold);
    padding-left: 18px;
}

/* Responsive */
@media (max-width: 1200px) {
    .main-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .left-column,
    .right-column {
        flex-direction: row;
        gap: 15px;
        justify-content: center;
    }

    .sidebar-menu {
        display: none;
        /* Hide sidebar on smaller screens for now */
    }

    .page-header {
        padding: 40px 20px;
    }

    .page-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {

    .left-column,
    .right-column {
        flex-direction: column;
    }

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

    .btn {
        width: 100%;
        text-align: center;
    }
}/* Header Styles */

.site-header {

    position: fixed;

    top: 0;

    left: 0;

    right: 0;

    z-index: 1000;

    background: rgba(0, 0, 0, 0.95);

    backdrop-filter: blur(20px);

    border-bottom: 2px solid rgba(139, 63, 191, 0.5);

    box-shadow: 0 4px 30px rgba(139, 63, 191, 0.3);

}



.header-decorative-top {

    height: 4px;

    background: linear-gradient(90deg, var(--ctb-royal-purple), var(--ctb-emerald), var(--ctb-gold), var(--ctb-orange), var(--ctb-electric-blue), var(--ctb-royal-purple));

    background-size: 200% 100%;

    animation: rainbowShift 8s linear infinite;

}



@keyframes rainbowShift {

    0% {

        background-position: 0% 50%;

    }



    100% {

        background-position: 200% 50%;

    }

}



.header-content {

    max-width: 1800px;

    margin: 0 auto;

    padding: 15px 40px;

    display: flex;

    align-items: center;

    justify-content: space-between;

    position: relative;

}



.header-logo-container {

    display: flex;

    align-items: center;

    gap: 15px;

    z-index: 10;

}



.header-logo {

    height: 60px;

    width: auto;

    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));

    transition: all 0.3s ease;

}



.header-logo:hover {

    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));

    transform: scale(1.05);

}



.header-leaf-decoration {

    position: absolute;

    opacity: 0.15;

    pointer-events: none;

    z-index: 1;

}



.header-leaf-left {

    left: 10px;

    top: 50%;

    transform: translateY(-50%) rotate(-15deg);

    width: 80px;

    height: auto;

}



.header-leaf-right {

    right: 10px;

    top: 50%;

    transform: translateY(-50%) rotate(15deg);

    width: 80px;

    height: auto;

}



.main-nav {

    display: flex;

    align-items: center;

    gap: 35px;

    z-index: 10;

}



.nav-link {

    position: relative;

    color: rgba(255, 255, 255, 0.9);

    text-decoration: none;

    font-weight: 500;

    font-size: 16px;

    padding: 8px 0;

    transition: all 0.3s ease;

}



.nav-link::after {

    content: '';

    position: absolute;

    bottom: 0;

    left: 0;

    width: 0;

    height: 2px;

    background: linear-gradient(90deg, var(--ctb-gold), var(--ctb-orange));

    transition: width 0.3s ease;

}



.nav-link:hover {

    color: var(--ctb-gold);

}



.nav-link:hover::after {

    width: 100%;

}



.nav-dropdown {

    position: relative;

}



.nav-dropdown-toggle {

    display: flex;

    align-items: center;

    gap: 5px;

    cursor: pointer;

}



.nav-dropdown-toggle::before {

    content: ' ';

    font-size: 10px;

    transition: transform 0.3s ease;

}



.nav-dropdown:hover .nav-dropdown-toggle::before {

    transform: rotate(180deg);

}



.nav-dropdown-menu {

    position: absolute;

    top: 100%;

    left: 50%;

    transform: translateX(-50%);

    margin-top: 10px;

    background: rgba(0, 0, 0, 0.95);

    backdrop-filter: blur(20px);

    border: 2px solid rgba(139, 63, 191, 0.5);

    border-radius: 12px;

    padding: 15px;

    min-width: 220px;

    opacity: 0;

    visibility: hidden;

    transition: all 0.3s ease;

    box-shadow: 0 8px 40px rgba(139, 63, 191, 0.4);

}



.nav-dropdown:hover .nav-dropdown-menu {

    opacity: 1;

    visibility: visible;

    margin-top: 15px;

}



.nav-dropdown-item {

    display: block;

    color: rgba(255, 255, 255, 0.85);

    text-decoration: none;

    padding: 10px 15px;

    border-radius: 8px;

    font-size: 14px;

    transition: all 0.3s ease;

    background: rgba(139, 63, 191, 0.1);

    margin-bottom: 8px;

}



.nav-dropdown-item:last-child {

    margin-bottom: 0;

}



.nav-dropdown-item:hover {

    background: rgba(139, 63, 191, 0.3);

    color: var(--ctb-gold);

    transform: translateX(5px);

}



.header-cta {

    display: inline-block;

    padding: 12px 28px;

    background: linear-gradient(135deg, var(--ctb-emerald), var(--ctb-emerald));

    color: var(--ctb-white);

    text-decoration: none;

    border-radius: 25px;

    font-weight: 600;

    font-size: 15px;

    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);

    transition: all 0.3s ease;

    border: 2px solid transparent;

}



.header-cta:hover {

    background: linear-gradient(135deg, var(--ctb-emerald), var(--ctb-emerald));

    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.6);

    transform: translateY(-2px);

    border-color: rgba(255, 215, 0, 0.5);

}



.mobile-menu-toggle {

    display: none;

    flex-direction: column;

    gap: 5px;

    cursor: pointer;

    padding: 10px;

    z-index: 10;

}



.mobile-menu-toggle span {

    width: 30px;

    height: 3px;

    background: linear-gradient(90deg, var(--ctb-gold), var(--ctb-orange));

    border-radius: 2px;

    transition: all 0.3s ease;

}



@media (max-width: 1024px) {

    .main-nav {

        position: fixed;

        top: 0;

        right: -100%;

        width: 320px;

        height: 100vh;

        background: rgba(0, 0, 0, 0.98);

        backdrop-filter: blur(30px);

        flex-direction: column;

        align-items: flex-start;

        padding: 100px 30px 30px;

        gap: 20px;

        transition: right 0.4s ease;

        border-left: 2px solid rgba(139, 63, 191, 0.5);

        overflow-y: auto;

    }



    .main-nav.active {

        right: 0;

    }



    .mobile-menu-toggle {

        display: flex;

    }



    .nav-dropdown-menu {

        position: static;

        transform: none;

        margin-top: 10px;

        opacity: 1;

        visibility: visible;

        max-height: 0;

        overflow: hidden;

        padding: 0;

        border: none;

    }



    .nav-dropdown.active .nav-dropdown-menu {

        max-height: 500px;

        padding: 15px;

        border: 2px solid rgba(139, 63, 191, 0.5);

    }



    .header-leaf-left,

    .header-leaf-right {

        display: none;

    }

}



@media (max-width: 768px) {

    .header-content {

        padding: 12px 20px;

    }



    .header-logo {

        height: 50px;

    }

}



/* Footer Styles */

.warning-bar {

    background: linear-gradient(90deg,

            #FF0000 0%,

            var(--ctb-orange) 14%,

            #FFFF00 28%,

            #00FF00 42%,

            #0000FF 57%,

            #4B0082 71%,

            var(--ctb-electric-purple) 85%,

            #FF0000 100%);

    background-size: 200% 100%;

    animation: gradientSlide 8s linear infinite;

    padding: 35px 40px;

    text-align: center;

    position: relative;

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;

    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);

}



@keyframes gradientSlide {

    0% {

        background-position: 0% 50%;

    }



    100% {

        background-position: 200% 50%;

    }

}



.warning-star {

    width: 80px;

    height: 80px;

    flex-shrink: 0;

    filter: drop-shadow(0 0 10px rgba(255, 0, 0, 0.6));

}



.warning-banner-image {

    width: 200px;

    height: 80px;

    background: rgba(0, 0, 0, 0.3);

    border: 2px solid rgba(255, 215, 0, 0.4);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.6);

    flex-shrink: 0;

}



.warning-content {

    flex: 1;

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

}



.warning-title {

    font-weight: 800;

    font-size: 24px;

    color: var(--ctb-black);

    letter-spacing: 1px;

    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.3);

}



.warning-text {

    font-weight: 500;

    font-size: 13px;

    color: var(--ctb-black);

    line-height: 1.6;

    max-width: 900px;

}



.warning-button {

    background: rgba(0, 0, 0, 0.7);

    border: 3px solid var(--ctb-emerald);

    border-radius: 12px;

    padding: 18px 35px;

    color: var(--ctb-emerald);

    font-weight: 700;

    font-size: 18px;

    text-decoration: none;

    transition: all 0.3s ease;

    flex-shrink: 0;

    text-align: center;

    line-height: 1.3;

}



.warning-button:hover {

    background: var(--ctb-emerald);

    color: var(--ctb-black);

    transform: scale(1.05);

}



.warning-picture-placeholder {

    width: 250px;

    height: 100px;

    background: rgba(0, 0, 0, 0.3);

    border: 2px dashed rgba(255, 215, 0, 0.4);

    border-radius: 10px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 12px;

    color: rgba(255, 255, 255, 0.5);

    flex-shrink: 0;

}



.footer-section {

    background: var(--ctb-black);

    border-top: 2px solid rgba(139, 63, 191, 0.5);

    padding: 80px 40px 40px;

    position: relative;

    overflow: hidden;

}



.footer-section::before {

    content: '';

    position: absolute;

    top: 0;

    left: 0;

    right: 0;

    bottom: 0;

    background:

        radial-gradient(ellipse at 20% 30%, rgba(107, 44, 145, 0.2) 0%, transparent 50%),

        radial-gradient(ellipse at 80% 70%, rgba(46, 204, 113, 0.15) 0%, transparent 50%),

        radial-gradient(ellipse at 50% 50%, rgba(255, 215, 0, 0.1) 0%, transparent 50%);

    animation: footerGlow 30s ease-in-out infinite;

    pointer-events: none;

    opacity: 0.6;

}



@keyframes footerGlow {



    0%,

    100% {

        opacity: 0.6;

    }



    50% {

        opacity: 0.8;

    }

}



.footer-content {

    max-width: 1600px;

    margin: 0 auto;

    position: relative;

    z-index: 10;

}



.footer-grid {

    display: grid;

    grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;

    gap: 60px;

    margin-bottom: 60px;

}



.footer-brand {

    display: flex;

    flex-direction: column;

}



.footer-logo {

    width: 180px;

    height: auto;

    margin-bottom: 25px;

    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));

}



.footer-description {

    font-size: 14px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.7);

    margin-bottom: 30px;

}



.footer-social {

    display: flex;

    gap: 15px;

}



.social-icon {

    width: 45px;

    height: 45px;

    background: rgba(139, 63, 191, 0.3);

    border: 2px solid rgba(139, 63, 191, 0.6);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    color: var(--ctb-gold);

    font-size: 20px;

    text-decoration: none;

    transition: all 0.3s ease;

}



.social-icon:hover {

    background: rgba(139, 63, 191, 0.6);

    border-color: var(--ctb-gold);

    transform: translateY(-3px);

    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);

}



.footer-column h3 {

    font-family: var(--ctb-font-heading);

    font-size: 22px;

    font-weight: 700;

    color: var(--ctb-gold);

    margin-bottom: 25px;

    text-shadow: 0 2px 10px rgba(255, 215, 0, 0.3);

    border-bottom: 3px solid var(--ctb-gold);

    padding-bottom: 10px;

    display: inline-block;

}



.footer-links {

    list-style: none;

    padding: 0;

    margin: 0;

}



.footer-links li {

    margin-bottom: 14px;

}



.footer-links a {

    color: rgba(255, 255, 255, 0.75);

    text-decoration: none;

    font-size: 15px;

    transition: all 0.3s ease;

    display: inline-block;

}



.footer-links a:hover {

    color: var(--ctb-emerald);

    transform: translateX(5px);

}



.footer-column-contact {

    background: rgba(46, 204, 113, 0.1);

    border: 2px solid rgba(46, 204, 113, 0.3);

    border-radius: 15px;

    padding: 30px;

}



.contact-item {

    display: flex;

    align-items: flex-start;

    gap: 15px;

    margin-bottom: 25px;

}



.contact-icon {

    font-size: 24px;

    flex-shrink: 0;

}



.contact-details {

    flex: 1;

}



.contact-label {

    font-weight: 700;

    font-size: 16px;

    color: var(--ctb-gold);

    margin-bottom: 5px;

}



.contact-value {

    font-size: 16px;

    color: rgba(255, 255, 255, 0.85);

    line-height: 1.6;

}



.contact-button {

    width: 100%;

    background: rgba(46, 204, 113, 0.2);

    border: 2px solid var(--ctb-emerald);

    border-radius: 10px;

    padding: 15px;

    color: var(--ctb-emerald);

    font-weight: 700;

    font-size: 16px;

    text-align: center;

    text-decoration: none;

    display: block;

    transition: all 0.3s ease;

    margin-top: 20px;

}



.contact-button:hover {

    background: var(--ctb-emerald);

    color: var(--ctb-black);

}



.footer-divider {

    height: 1px;

    background: linear-gradient(90deg, transparent, rgba(139, 63, 191, 0.5), transparent);

    margin: 50px 0 35px;

}



.footer-bottom {

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 25px;

}



.footer-copyright {

    font-size: 14px;

    color: rgba(255, 255, 255, 0.6);

}



.footer-badges {

    display: flex;

    gap: 20px;

    align-items: center;

}



.footer-badge {

    background: rgba(139, 63, 191, 0.3);

    border: 2px solid rgba(139, 63, 191, 0.5);

    border-radius: 25px;

    padding: 10px 20px;

    font-size: 13px;

    color: rgba(255, 255, 255, 0.8);

    display: flex;

    align-items: center;

    gap: 8px;

}



@media (max-width: 1200px) {

    .footer-grid {

        grid-template-columns: 1fr 1fr 1fr;

        gap: 40px;

    }

}



@media (max-width: 768px) {

    .warning-bar {

        flex-direction: column;

        padding: 25px 20px;

    }



    .footer-grid {

        grid-template-columns: 1fr;

        gap: 30px;

    }



    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }



    .footer-badges {

        flex-direction: column;

    }

}


/* =========================================
   Placeholder Styles
   ========================================= */
.image-placeholder {
    background: rgba(255, 255, 255, 0.1);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(5px);
}

.product-image.image-placeholder {
    aspect-ratio: 1/1;
    width: 100%;
    max-width: 380px;
    border-radius: 15px;
}


/* =========================================
   Refined Placeholder Styles
   ========================================= */
.image-placeholder {
    background: rgba(255, 255, 255, 0.05); /* More transparent */
    border: 2px dashed rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    backdrop-filter: blur(2px);
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: rgba(255, 255, 255, 0.8);
}

/* Specific Placeholder Sizes */
.category-image.image-placeholder {
    height: 450px;
    width: 100%;
    border-radius: 0; /* Reset if needed */
}

.grade-image.image-placeholder {
    height: 220px;
    width: 100%;
    border-radius: 8px;
}

.faq-image.image-placeholder {
    height: 500px;
    width: 100%;
    border-radius: 16px;
}

.parallax-section .image-placeholder {
    border: none;
    background: rgba(255, 255, 255, 0.05);
}


.product-image.image-placeholder {
    width: 100%;
    max-width: 380px;
    aspect-ratio: 1/1;
    margin: 0 auto 20px;
    border-radius: 12px;
}

.asset-overlay-placeholder {
    width: 100%;
    height: 800px; /* Approximate height for the background asset */
    opacity: 0.3;
    border: 2px dashed rgba(255, 255, 255, 0.1);
}


/* =========================================
   Footer & Disclaimer Refinements
   ========================================= */

/* Disclaimer Section */
.disclaimer-section {
    background: var(--ctb-black);
    border-top: 2px solid rgba(139, 63, 191, 0.5);
    border-bottom: 2px solid rgba(139, 63, 191, 0.5);
    padding: 80px 40px;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    animation: flashColors 2.2s linear infinite;
    color: var(--ctb-white);
}

.disclaimer-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 30%, rgba(107, 44, 145, 0.25) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 70%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 40% 80%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 20%, rgba(255, 140, 0, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.15) 0%, transparent 50%),
        var(--ctb-black);
    animation: fluidMix 180s ease-in-out infinite;
    pointer-events: none;
    mix-blend-mode: screen;
    opacity: 0.7;
    filter: blur(40px) saturate(1.2);
}

.disclaimer-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 60% 40%, rgba(139, 63, 191, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 30% 60%, rgba(46, 204, 113, 0.2) 0%, transparent 50%),
        radial-gradient(ellipse at 90% 50%, rgba(255, 215, 0, 0.15) 0%, transparent 50%);
    animation: fluidMix 240s ease-in-out infinite reverse;
    pointer-events: none;
    mix-blend-mode: overlay;
    opacity: 0.6;
    filter: blur(45px) saturate(1.1);
}

@keyframes fluidMix {
    0% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%; filter: blur(40px) saturate(1.2); }
    25% { background-position: 100% 50%, 0% 50%, 80% 20%, 20% 80%, 50% 50%; filter: blur(50px) saturate(1.4); }
    50% { background-position: 50% 100%, 50% 0%, 20% 80%, 80% 20%, 100% 0%; filter: blur(45px) saturate(1.3); }
    75% { background-position: 0% 50%, 100% 50%, 50% 50%, 50% 50%, 0% 100%; filter: blur(55px) saturate(1.5); }
    100% { background-position: 0% 0%, 100% 100%, 50% 50%, 80% 20%, 20% 80%; filter: blur(40px) saturate(1.2); }
}

@keyframes flashColors {
    0% { background-color: var(--ctb-emerald); color: var(--ctb-white); }
    25% { background-color: var(--ctb-orange); color: var(--ctb-black); }
    50% { background-color: var(--ctb-black); color: var(--ctb-white); }
    75% { background-color: var(--ctb-gold); color: var(--ctb-black); }
    100% { background-color: var(--ctb-emerald); color: var(--ctb-white); }
}

.disclaimer-content {
    max-width: 1600px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 30px;
}

.disclaimer-side-image {
    width: 200px;
    height: 200px;
    border: 3px solid rgba(255, 215, 0, 0.6);
    border-radius: 15px;
    flex-shrink: 0;
    z-index: 15;
}

.disclaimer-text-content {
    flex: 1;
    text-align: left;
    position: relative;
    z-index: 5;
}

.disclaimer-icon {
    font-size: 56px;
    margin-bottom: 15px;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.disclaimer-title {
    font-family: var(--ctb-font-heading);
    font-size: 36px;
    font-weight: 700;
    color: inherit;
    margin-bottom: 20px;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.4);
}

.disclaimer-text {
    font-size: 18px;
    line-height: 1.8;
    color: inherit;
    margin-bottom: 15px;
}

.disclaimer-text strong {
    color: inherit;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.18);
    padding: 0 4px;
}

.disclaimer-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 28px;
    border: 2px solid currentColor;
    border-radius: 25px;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.disclaimer-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Footer Styles */
.site-footer {
    background-color: var(--ctb-black);
    color: var(--ctb-white);
    padding: 60px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer-decorative-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--ctb-gold), var(--ctb-orange));
}

.footer-leaf-decoration {
    position: absolute;
    opacity: 0.05;
    pointer-events: none;
}

.footer-leaf-1 { top: 50px; left: 50px; width: 150px; height: auto; transform: rotate(-25deg); }
.footer-leaf-2 { bottom: 50px; right: 50px; width: 120px; height: auto; transform: rotate(35deg); }

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

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

.footer-logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.3));
}

.footer-description {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 25px;
}

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

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 63, 191, 0.2);
    border: 2px solid rgba(139, 63, 191, 0.4);
    border-radius: 50%;
    color: var(--ctb-gold);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: rgba(139, 63, 191, 0.4);
    border-color: var(--ctb-gold);
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 15px;
}

.footer-links a::before {
    content: '?';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--ctb-gold);
}

.footer-links a:hover {
    color: var(--ctb-gold);
    padding-left: 20px;
}

.footer-links a:hover::before {
    opacity: 1;
}

.fine-print-links {
    background: rgba(139, 63, 191, 0.1);
    border: 2px solid rgba(139, 63, 191, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.contact-info {
    background: rgba(46, 204, 113, 0.1);
    border: 2px solid rgba(46, 204, 113, 0.3);
    border-radius: 12px;
    padding: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.6;
}

.contact-item-icon {
    color: var(--ctb-emerald);
    font-size: 20px;
    margin-top: 2px;
}

.contact-item a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid rgba(139, 63, 191, 0.3);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-badges {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(139, 63, 191, 0.2);
    border: 1px solid rgba(139, 63, 191, 0.4);
    border-radius: 20px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-badge-icon {
    font-size: 16px;
    color: var(--ctb-emerald);
}

@media (max-width: 1200px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .disclaimer-content {
        flex-direction: column;
    }
    .disclaimer-side-image {
        display: none; /* Hide side images on mobile if needed, or adjust */
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    .footer-badges {
        flex-wrap: wrap;
        justify-content: center;
    }
}


/* =========================================
   Header Refinements
   ========================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid rgba(139, 63, 191, 0.5);
    box-shadow: 0 4px 30px rgba(139, 63, 191, 0.3);
}

.header-decorative-top {
    height: 4px;
    background: linear-gradient(90deg, var(--ctb-royal-purple), var(--ctb-emerald), var(--ctb-gold), var(--ctb-orange), var(--ctb-electric-blue), var(--ctb-royal-purple));
    background-size: 200% 100%;
    animation: rainbowShift 8s linear infinite;
}

@keyframes rainbowShift {
    0% { background-position: 0% 50%; }
    100% { background-position: 200% 50%; }
}

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

.header-logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
    z-index: 10;
}

.header-logo {
    height: 60px;
    width: auto;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.5));
    transition: all 0.3s ease;
}

.header-logo:hover {
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.8));
    transform: scale(1.05);
}

.header-leaf-decoration {
    position: absolute;
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.header-leaf-left {
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-15deg);
    width: 80px;
    height: auto;
}

.header-leaf-right {
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(15deg);
    width: 80px;
    height: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 35px;
    z-index: 10;
}

.nav-link {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--ctb-gold), var(--ctb-orange));
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--ctb-gold);
}

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

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-dropdown-toggle::before {
    content: '?';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::before {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(139, 63, 191, 0.5);
    border-radius: 12px;
    padding: 15px;
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 8px 40px rgba(139, 63, 191, 0.4);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    margin-top: 15px;
}

.nav-dropdown-item {
    display: block;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.3s ease;
    background: rgba(139, 63, 191, 0.1);
    margin-bottom: 8px;
}

.nav-dropdown-item:last-child {
    margin-bottom: 0;
}

.nav-dropdown-item:hover {
    background: rgba(139, 63, 191, 0.3);
    color: var(--ctb-gold);
    transform: translateX(5px);
}

.header-cta {
    display: inline-block;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--ctb-emerald), var(--ctb-emerald));
    color: var(--ctb-white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.4);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.header-cta:hover {
    background: linear-gradient(135deg, var(--ctb-emerald), var(--ctb-emerald));
    box-shadow: 0 6px 25px rgba(46, 204, 113, 0.6);
    transform: translateY(-2px);
    border-color: rgba(255, 215, 0, 0.5);
}

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

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--ctb-gold), var(--ctb-orange));
    border-radius: 2px;
    transition: all 0.3s ease;
}

@media (max-width: 1024px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(30px);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 30px 30px;
        gap: 20px;
        transition: right 0.4s ease;
        border-left: 2px solid rgba(139, 63, 191, 0.5);
        overflow-y: auto;
    }

    .main-nav.active {
        right: 0;
    }

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

    .nav-dropdown-menu {
        position: static;
        transform: none;
        margin-top: 10px;
        opacity: 1;
        visibility: visible;
        max-height: 0;
        overflow: hidden;
        padding: 0;
        border: none;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        max-height: 500px;
        padding: 15px;
        border: 2px solid rgba(139, 63, 191, 0.5);
    }

    .header-leaf-left,
    .header-leaf-right {
        display: none;
    }
}

@media (max-width: 768px) {
    .header-content {
        padding: 12px 20px;
    }

    .header-logo {
        height: 50px;
    }
}

/* =========================================
   Sidebar Menu Collapsibility
   ========================================= */
.menu-subcategories {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.menu-category.active .menu-subcategories {
    max-height: 500px;
    transition: max-height 0.4s ease-in;
}

.menu-category-link.has-dropdown::after {
    content: '?';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu-category.active .menu-category-link.has-dropdown::after {
    transform: translateY(-50%) rotate(180deg);
}


/* =========================================
   Single Product Page Styles
   ========================================= */

.single-product-container {
    max-width: 1600px;
    margin: 120px auto 60px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 14px;
}

.woocommerce-breadcrumb a {
    color: var(--ctb-emerald);
    text-decoration: none;
}

/* Product Main Grid */
.product-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 80px;
}

/* Gallery */
.product-gallery-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-main-image {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 20px;
    border: 2px solid rgba(139, 63, 191, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

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

.product-thumb {
    aspect-ratio: 1/1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb:hover {
    border-color: var(--ctb-gold);
    transform: translateY(-2px);
}

/* Product Summary */
.product-summary-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-title {
    font-family: var(--ctb-font-heading);
    font-size: 48px;
    color: var(--ctb-white);
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-meta-badges {
    display: flex;
    gap: 10px;
    margin-bottom: 25px;
}

.meta-badge {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 12px;
    border-radius: 20px;
    background: rgba(46, 204, 113, 0.1);
    border: 1px solid rgba(46, 204, 113, 0.3);
    color: var(--ctb-emerald);
}

.product-price-wrapper {
    font-size: 32px;
    color: var(--ctb-gold);
    font-weight: 700;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-short-description {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 30px;
}

/* Add to Cart Form */
.cart {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.quantity input {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--ctb-white);
    height: 50px;
    width: 80px;
    border-radius: 25px;
    text-align: center;
    font-size: 18px;
}

.single_add_to_cart_button {
    background: linear-gradient(135deg, var(--ctb-emerald), var(--ctb-emerald)) !important;
    color: var(--ctb-white) !important;
    border: none !important;
    padding: 0 40px !important;
    height: 50px;
    border-radius: 25px !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    cursor: pointer;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.4);
}

/* Trust Badges */
.product-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
}

.trust-icon {
    font-size: 24px;
}

/* Product Tabs */
.product-tabs-wrapper {
    margin-bottom: 80px;
}

.woocommerce-tabs ul.tabs {
    display: flex;
    gap: 10px;
    padding: 0;
    margin: 0 0 30px;
    list-style: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.woocommerce-tabs ul.tabs li {
    background: transparent;
    border: none;
    margin: 0;
}

.woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 15px 30px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-tabs ul.tabs li.active a {
    color: var(--ctb-gold);
    border-bottom-color: var(--ctb-gold);
}

.woocommerce-Tabs-panel {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(139, 63, 191, 0.3);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(10px);
}

/* Related Products */
.related-products-wrapper h2 {
    font-family: var(--ctb-font-heading);
    font-size: 36px;
    color: var(--ctb-white);
    margin-bottom: 40px;
    text-align: center;
}

.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .product-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .product-title {
        font-size: 36px;
    }
}


/* =========================================
   Connoisseur's Corner Styles
   ========================================= */

.connoisseur-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 120px;
    position: relative;
    z-index: 2;
}

.connoisseur-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.intro-text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.btn-primary-gradient {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--ctb-gold), var(--ctb-orange));
    color: var(--ctb-black);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.3);
    border: none;
    cursor: pointer;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.5);
    background: linear-gradient(135deg, var(--ctb-orange), var(--ctb-gold));
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 100px;
}

.step-card {
    padding: 40px 30px;
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 215, 0, 0.2);
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: var(--ctb-gold);
    transform: translateY(-5px);
    background: rgba(255, 215, 0, 0.05);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--ctb-gold), var(--ctb-orange));
    color: var(--ctb-black);
    font-weight: 800;
    font-size: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.step-card h3 {
    color: var(--ctb-gold);
    font-size: 24px;
    margin-bottom: 15px;
    font-family: var(--ctb-font-heading);
}

.step-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

.request-form-section {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.section-title {
    font-family: var(--ctb-font-heading);
    font-size: 42px;
    color: var(--ctb-gold);
    text-align: center;
    margin-bottom: 10px;
}

.form-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-size: 18px;
    font-style: italic;
}

.connoisseur-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group label {
    display: block;
    color: var(--ctb-gold);
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px;
    color: var(--ctb-white);
    border-radius: 8px;
    font-family: var(--ctb-font-body);
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ctb-gold);
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.1);
}

.full-width {
    width: 100%;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .request-form-section {
        padding: 30px;
    }
    
    .section-title {
        font-size: 32px;
    }
}


/* =========================================
   Single Product Layout with Sidebar
   ========================================= */
.single-product .main-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    max-width: 1800px;
    margin: 0 auto;
    padding: 0 40px;
}

.single-product-content {
    padding-top: 60px;
    min-width: 0; /* Prevents grid blowout */
}

@media (max-width: 1200px) {
    .single-product .main-container {
        grid-template-columns: 1fr;
    }
    
    .single-product .sidebar-menu {
        display: none; /* Optionally hide sidebar on mobile or make it collapsible */
    }
}


/* =========================================
   Quick View Modal
   ========================================= */
.ctb-quick-view-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.ctb-quick-view-content {
    background: #1a1a1a;
    width: 90%;
    max-width: 900px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    position: relative;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
}

.ctb-close-modal {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    color: var(--ctb-white);
    font-size: 30px;
    cursor: pointer;
    z-index: 10;
}

.ctb-quick-view-content img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.ctb-quick-view-content h2 {
    color: var(--ctb-gold);
    margin-top: 0;
}

.ctb-quick-view-content .price {
    font-size: 24px;
    color: var(--ctb-white);
    margin-bottom: 20px;
}

.ctb-quick-view-btn {
    background: rgba(255,255,255,0.1);
    color: var(--ctb-white);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 10px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 12px;
    margin-top: 10px;
    display: inline-block;
}

.ctb-quick-view-btn:hover {
    background: var(--ctb-gold);
    color: var(--ctb-black);
}

@media (max-width: 768px) {
    .ctb-quick-view-content {
        grid-template-columns: 1fr;
        max-height: 90vh;
        overflow-y: auto;
    }
}


/* =========================================
   Flower Category Page
   ========================================= */
.category-page-content {
    flex: 1;
    min-width: 0;
}

.flower-section {
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    position: relative;
    overflow: hidden;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.1;
    z-index: -1;
    pointer-events: none;
}

/* Specific backgrounds for sections (placeholders) */
#greenhouse::before { background-image: url('../images/greenhouse-bg.jpg'); }
#indoor::before { background-image: url('../images/indoor-bg.jpg'); }
/* Add more as needed */

.section-header {
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.section-header h2 {
    color: var(--ctb-gold);
    margin: 0;
    font-size: 2rem;
}

.section-header p {
    color: var(--ctb-light-gray);
    margin: 5px 0 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.product-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    border-color: var(--ctb-gold);
}

.product-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
}

.product-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.product-image-wrapper .ctb-quick-view-btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ctb-gold);
    color: var(--ctb-black);
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: bold;
    opacity: 0;
    transition: all 0.3s ease;
}

.product-card:hover .product-image-wrapper .ctb-quick-view-btn {
    bottom: 20px;
    opacity: 1;
}

.product-details {
    padding: 20px;
}

.product-title {
    font-size: 1.1rem;
    margin: 0 0 10px;
    color: var(--ctb-white);
}

.product-price {
    color: var(--ctb-gold);
    font-weight: bold;
    margin-bottom: 10px;
}

.product-short-desc {
    font-size: 0.9rem;
    color: var(--ctb-medium-gray);
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.btn-select-options {
    width: 100%;
    text-align: center;
    background: transparent;
    border: 1px solid var(--ctb-gold);
    color: var(--ctb-gold);
}

.btn-select-options:hover {
    background: var(--ctb-gold);
    color: var(--ctb-black);
}


/* =========================================
   Legality Page Styles
   ========================================= */
.legality-page .content-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
}

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

.legality-section.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.lead-text {
    font-size: 1.5rem;
    color: var(--ctb-gold);
    margin-bottom: 20px;
}

.highlight-card {
    border-color: var(--ctb-gold);
    background: rgba(212, 175, 55, 0.1);
}

.reaction-graphic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 20px 0;
    color: var(--ctb-white);
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 8px;
}

.reaction-graphic .arrow {
    color: var(--ctb-gold);
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.compliance-list li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.compliance-list .icon {
    font-size: 2rem;
}

.compliance-list strong {
    display: block;
    color: var(--ctb-gold);
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.compliance-list p {
    margin: 0;
    color: var(--ctb-light-gray);
}

.disclaimer-section {
    text-align: center;
    font-size: 0.9rem;
    color: var(--ctb-medium-gray);
    margin-top: 60px;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
}

.legality-cta {
    text-align: center;
    margin-top: 40px;
}

.btn-large {
    padding: 15px 50px;
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .legality-section.two-col {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   Fine Print Page Styles
   ========================================= */
.fine-print-page .sidebar-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.fine-print-sidebar .sticky-nav {
    position: sticky;
    top: 100px;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.fine-print-sidebar ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fine-print-sidebar li {
    margin-bottom: 15px;
}

.fine-print-sidebar a {
    color: var(--ctb-light-gray);
    text-decoration: none;
    transition: color 0.3s;
    display: block;
}

.fine-print-sidebar a:hover {
    color: var(--ctb-gold);
    padding-left: 5px;
}

.legal-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px; /* For sticky header offset */
}

.legal-section h2 {
    color: var(--ctb-gold);
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.legal-section h3 {
    color: var(--ctb-white);
    margin-top: 30px;
    font-size: 1.2rem;
}

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

.alert-box {
    background: rgba(255, 0, 0, 0.1);
    border-left: 4px solid var(--ctb-orange);
    padding: 20px;
    margin: 20px 0;
}

.coa-grid {
    display: grid;
    gap: 15px;
    margin-top: 20px;
}

.coa-item {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.coa-item .btn-text {
    color: var(--ctb-gold);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .fine-print-page .sidebar-layout {
        grid-template-columns: 1fr;
    }
    
    .fine-print-sidebar {
        display: none; /* Hide sidebar on mobile or make it a dropdown */
    }
}


/* =========================================
   About Page Styles
   ========================================= */
.about-page .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.about-intro {
    text-align: center;
    margin-bottom: 80px;
}

.about-intro .description {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--ctb-light-gray);
}

.about-section {
    margin-bottom: 80px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-section.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.section-title {
    color: var(--ctb-gold);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--ctb-light-gray);
    margin-bottom: 20px;
}

.promise-list {
    list-style: none;
    padding: 0;
}

.promise-list li {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--ctb-light-gray);
}

.promise-list strong {
    display: block;
    color: var(--ctb-gold);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.cta-section.glass-card {
    padding: 60px;
    border: 1px solid var(--ctb-emerald); /* Green accent for CTA */
}

.cta-section h2 {
    font-family: var(--ctb-font-heading);
    font-size: 2.5rem;
    color: var(--ctb-gold);
    margin-bottom: 15px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .about-section.two-col {
        grid-template-columns: 1fr;
    }
    
    .about-section.reverse-mobile {
        display: flex;
        flex-direction: column-reverse;
    }
}


/* =========================================
   Contact Page Styles
   ========================================= */
.contact-page .content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.card-title {
    font-size: 2rem;
    color: var(--ctb-white);
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 15px;
}

.contact-method {
    margin-bottom: 30px;
}

.contact-method h3 {
    color: var(--ctb-gold);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.method-value {
    font-size: 1.1rem;
    color: var(--ctb-white);
    margin: 0;
}

.method-note {
    font-size: 0.9rem;
    color: var(--ctb-medium-gray);
    margin-top: 5px;
}

.connoisseur-card {
    margin-top: 40px;
    border: 1px solid var(--ctb-gold);
}

.connoisseur-card p {
    color: var(--ctb-light-gray);
    margin-bottom: 20px;
}

/* Form Styles */
.ctb-contact-form .form-group {
    margin-bottom: 20px;
}

.ctb-contact-form label {
    display: block;
    color: var(--ctb-gold);
    margin-bottom: 8px;
    font-weight: 600;
}

.ctb-contact-form input,
.ctb-contact-form select,
.ctb-contact-form textarea {
    width: 100%;
    padding: 12px;
    background: rgba(0,0,0,0.5);
    border: 1px solid rgba(139, 63, 191, 0.5);
    border-radius: 8px;
    color: var(--ctb-white);
    font-family: inherit;
}

.ctb-contact-form input:focus,
.ctb-contact-form select:focus,
.ctb-contact-form textarea:focus {
    outline: none;
    border-color: var(--ctb-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.full-width {
    width: 100%;
}

@media (max-width: 768px) {
    .contact-layout {
        grid-template-columns: 1fr;
    }
}


/* =========================================
   FAQ Page Styles
   ========================================= */
.toc-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
    display: none; /* Hidden on mobile by default, shown via media query if needed */
}

@media (min-width: 992px) {
    .content-wrapper {
        display: grid;
        grid-template-columns: 250px 1fr;
        gap: 40px;
    }
    .toc-sidebar {
        display: block;
    }
}

.toc-title {
    color: var(--ctb-gold);
    font-size: 1.2rem;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 10px;
}

.toc-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toc-link {
    color: var(--ctb-light-gray);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.toc-link:hover {
    color: var(--ctb-gold);
    padding-left: 5px;
}

.faq-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
}

.faq-item.reverse {
    direction: rtl;
}

.faq-item.reverse .faq-text {
    direction: ltr;
}

.faq-question {
    color: var(--ctb-gold);
    font-size: 2rem;
    margin-bottom: 20px;
}

.faq-answer p {
    color: var(--ctb-light-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    color: var(--ctb-light-gray);
    margin-bottom: 15px;
    padding-left: 20px;
}

.faq-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.parallax-section {
    height: 300px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    margin: 60px -20px; /* Break out of container slightly */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.parallax-overlay {
    font-size: 4rem;
    background: rgba(0,0,0,0.5);
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 2px solid rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .faq-item, .faq-item.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }
    
    .parallax-section {
        margin: 40px 0;
        height: 200px;
    }
}


/* =========================================
   Global Text Legibility Fixes
   ========================================= */

/* Utility Class for Text Boxes */
.text-box,
.glass-card,
.product-card,
.faq-item,
.about-text,
.contact-info-col > div,
.contact-form-col > div,
.woocommerce-products-header,
.term-description,
.section-header,
.page-header .header-content,
.fine-print-sidebar,
.legal-section,
.toc-sidebar {
    background: rgba(0, 0, 0, 0.7) !important; /* Dark semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    color: var(--ctb-white); /* Ensure text is white */
}

/* Ensure headings inside boxes are visible */
.text-box h1, .text-box h2, .text-box h3, .text-box h4, .text-box h5, .text-box h6,
.glass-card h1, .glass-card h2, .glass-card h3,
.product-card h3,
.faq-item h3,
.about-text h2,
.section-header h2 {
    color: var(--ctb-gold); /* Gold for headings */
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Specific overrides for layout containers that shouldn't have backgrounds themselves */
.content-wrapper,
.main-container,
.products-grid,
.about-section,
.contact-layout,
.fine-print-page .sidebar-layout {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Fix for page titles that might be floating */
.page-title, .page-subtitle {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    /* If they are not in a box, give them a subtle one or strong shadow */
    /* The .header-content is already targeted above to have a box */
}

/* Fix for product loop items */
.product-details {
    padding: 15px; /* Ensure padding inside the card */
}

/* =========================================
   FIXES (11/22/25)
   ========================================= */

/* Fix Page Header Padding & Cut-off */
.page-header {
    padding: 60px 40px !important;
    /* Override existing padding */
    text-align: center;
}

.page-header .logo {
    max-width: 200px;
    /* Limit width */
}

@media (max-width: 1200px) {
    .page-header {
        flex-direction: column;
        padding: 40px 20px !important;
    }

    .page-header .logo {
        position: relative;
        left: auto;
        top: auto;
        transform: none;
        margin-bottom: 20px;
        height: 80px;
    }
}

/* Fix Dropdown Icon (Change ? to Arrow) */
.nav-dropdown-toggle::after {
    content: "" !important;
    font-size: 0.8em;
    margin-left: 8px;
    color: var(--ctb-gold);
    display: inline-block;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .nav-dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Ensure main layout doesn't overflow */
.main-layout,
.header-content {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
}
/* =========================================
   REFINEMENTS (11/22/25 - Round 2)
   ========================================= */

/* 1. Taller Header & Logo Placeholder */
.site-header {
    padding: 20px 0;
    /* Increase vertical padding */
    min-height: 120px;
    /* Ensure it's taller */
}

.header-logo-container {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Circle placeholder */
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--ctb-gold);
    overflow: hidden;
}

.header-logo {
    max-height: 80%;
    max-width: 80%;
}

/* 2. Remove Global '?' Hover Icon */
a,
span,
div,
.nav-link,
.menu-item {
    cursor: pointer !important;
    /* Force pointer instead of help/question */
}

/* 3. Footer Disclaimer Speed */
/* Assuming the animation is on .disclaimer-text or a scrolling container */
.disclaimer-text {
    animation-duration: 60s !important;
    /* Slow it down (was likely faster) */
}

/* 4. Category Cards (Smaller & More Transparent) */
.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
    /* Shrink from 350px */
    gap: 30px !important;
}

.category-card,
.flower-grades-card,
.glass-card,
.text-box {
    background: rgba(0, 0, 0, 0.4) !important;
    /* More transparent (was 0.7 or 0.8) */
    backdrop-filter: blur(8px) !important;
    /* Slightly less blur to see smoke better */
}

.flower-grades-card .category-content {
    background: transparent !important;
    /* Ensure inner content doesn't add more opacity */
}

/* 5. Fix Cut-off Layouts (Global) */
body {
    overflow-x: hidden;
    /* Prevent horizontal scroll */
    width: 100%;
}

.main-container,
.site-header,
.site-footer {
    max-width: 100vw;
    box-sizing: border-box;
}

/* 6. Footer Boxes Alignment */
.footer-column.glass-card {
    height: 100%;
    /* Ensure they stretch evenly */
}
/* =========================================
   ROUND 4 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Remove Persistent '?' Icon */
/* Aggressively target all potential pseudo-elements that might hold an icon */
.nav-link::before,
.nav-link::after,
.footer-links a::before,
.footer-links a::after,
.nav-dropdown-toggle::before,
li::before {
    content: "" !important;
    display: none !important;
}

/* Re-add the arrow for the dropdown specifically */
.nav-dropdown-toggle::after {
    content: "" !important;
    display: inline-block !important;
    margin-left: 8px;
    font-size: 0.8em;
    color: var(--ctb-gold);
}

/* 2. Slow Down Disclaimer Animation */
.disclaimer-text {
    animation-duration: 120s !important;
    /* Extremely slow */
}

/* 3. Fix Layout & Centering */
.site-header,
.site-footer,
.main-container {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding-left: 0;
    padding-right: 0;
    box-sizing: border-box;
}

.header-content,
.footer-content,
.categories-container {
    max-width: 1400px;
    /* Constrain content width */
    margin: 0 auto;
    padding: 0 20px;
}

/* 4. Shrink Category Cards */
.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)) !important;
    /* Much smaller cards */
    gap: 20px !important;
}

.category-image {
    height: 250px !important;
    /* Shorter images */
}

/* 5. Color Footer Boxes */
/* Shop Column (Green) */
.footer-column.glass-card:nth-child(2) {
    border-color: var(--ctb-emerald) !important;
    box-shadow: 0 4px 20px rgba(46, 204, 113, 0.2) !important;
    background: rgba(46, 204, 113, 0.1) !important;
}

/* Learn Column (Purple) */
.footer-column.glass-card:nth-child(3) {
    border-color: var(--ctb-royal-purple) !important;
    box-shadow: 0 4px 20px rgba(107, 44, 145, 0.2) !important;
    background: rgba(107, 44, 145, 0.1) !important;
}

/* 6. Shrink Sidebar Menu */
.sidebar-menu {
    width: 220px !important;
    /* Shrink width */
    padding: 20px 10px !important;
}

.menu-category-link {
    font-size: 16px !important;
    padding: 8px 10px !important;
}
/* =========================================
   ROUND 5 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Fix Content Offset (Push content below header) */
body {
    padding-top: 160px !important;
    /* Ensure enough space for the taller header */
}

/* 2. Expand Header Width */
.header-content {
    max-width: 95% !important;
    /* Make it wider across the screen */
    padding: 0 40px !important;
}

.site-header {
    width: 100% !important;
    left: 0 !important;
    right: 0 !important;
}

/* 3. Fix Disclaimer Text Colors (White/Gold) */
.disclaimer-text,
.disclaimer-text p,
.disclaimer-text strong,
.disclaimer-title {
    color: var(--ctb-white) !important;
    /* Default to white */
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    /* Add shadow for legibility */
}

.disclaimer-text strong,
.disclaimer-title {
    color: var(--ctb-gold) !important;
    /* Gold for emphasis */
}

.disclaimer-icon {
    text-shadow: 0 0 10px var(--ctb-gold);
}

/* Ensure no black text remains in disclaimer */
.disclaimer-section {
    color: var(--ctb-white) !important;
}
/* =========================================
   ROUND 6 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Remove Left Column & Center Content */
.main-layout {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    flex-direction: column !important;
    /* Stack vertically if needed, or row */
    gap: 40px !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
}

/* Hide the side columns if they are causing offset */
.left-column,
.right-column {
    display: none !important;
    /* Hide side columns to focus on center */
}

/* Ensure Center Content takes full width or centered width */
.center-content {
    width: 100% !important;
    max-width: 800px !important;
    /* Limit width for readability */
    margin: 0 auto !important;
    text-align: center !important;
}

/* 2. Fix Age Badge Removal (Just in case) */
.age-badge-top,
.age-badge-inline {
    display: none !important;
}

/* 3. Ensure Header doesn't overlap */
body {
    padding-top: 180px !important;
    /* Increased padding */
}
/* =========================================
   ROUND 7 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Restore Side Columns */
.left-column,
.right-column {
    display: flex !important;
    /* Restore display */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 250px !important;
    /* Fixed width for side columns */
}

/* 2. Ensure Main Layout is Centered 3-Column Grid */
.main-layout {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    /* Vertically align */
    flex-direction: row !important;
    /* Side by side */
    gap: 40px !important;
    max-width: 1400px !important;
    margin: 0 auto !important;
    width: 100%;
}

/* 3. Center Content Adjustment */
.center-content {
    flex: 1;
    /* Take remaining space */
    max-width: 800px !important;
    margin: 0 !important;
    /* Remove auto margin since flex handles it */
}

/* 4. Ensure Floating Badge is Gone */
.age-badge-top {
    display: none !important;
}

/* 5. Responsive: Stack on smaller screens */
@media (max-width: 1200px) {
    .main-layout {
        flex-direction: column !important;
    }

    .left-column,
    .right-column {
        flex-direction: row;
        width: 100% !important;
        justify-content: space-around;
    }
}
/* =========================================
   ROUND 8 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Fix Squished Layout - Force Row & Widths */
.main-layout {
    display: flex !important;
    flex-direction: row !important;
    /* Force side-by-side */
    justify-content: center !important;
    align-items: flex-start !important;
    /* Align top or center */
    flex-wrap: nowrap !important;
    /* Prevent wrapping on large screens */
    width: 100% !important;
    max-width: 1600px !important;
    /* Allow more space */
    margin: 0 auto !important;
    gap: 20px !important;
}

/* 2. Define Column Widths */
.left-column,
.right-column {
    flex: 0 0 300px !important;
    /* Fixed width, don't grow or shrink */
    width: 300px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.center-content {
    flex: 1 1 auto !important;
    /* Grow and shrink */
    min-width: 500px !important;
    /* Prevent squishing below this width */
    max-width: 900px !important;
    margin: 0 20px !important;
}

/* 3. Ensure Content Wrapper is Full Width */
.content-wrapper {
    width: 100% !important;
    display: block !important;
    padding: 0 20px !important;
    box-sizing: border-box !important;
}

/* 4. Responsive Fallback */
@media (max-width: 1200px) {
    .main-layout {
        flex-direction: column !important;
        align-items: center !important;
    }

    .left-column,
    .right-column {
        flex-direction: row !important;
        width: 100% !important;
        justify-content: center !important;
        gap: 20px;
    }

    .center-content {
        min-width: auto !important;
        width: 100% !important;
        order: -1;
        /* Put text on top on mobile if desired, or keep standard */
    }
}
/* =========================================
   ROUND 9 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Fix Sidebar Text Cutoff */
.sidebar-menu {
    width: 280px !important;
    /* Widen it back up */
    min-width: 250px !important;
    max-width: 100% !important;
}

.menu-category-link {
    white-space: normal !important;
    /* Allow text to wrap naturally */
    word-wrap: break-word !important;
    /* Break long words if needed */
    overflow-wrap: break-word !important;
    line-height: 1.4 !important;
    height: auto !important;
    /* Allow height to grow */
    padding: 12px 15px !important;
}

/* 2. Fix Card Text Overflow */
.category-card,
.flower-grades-card,
.glass-card,
.text-box {
    min-width: 0 !important;
    /* Allow flex shrinking but... */
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 20px !important;
    /* Ensure padding isn't too huge */
}

.category-card h3,
.flower-grades-card h3 {
    font-size: 1.2rem !important;
    /* Slightly smaller heading if needed */
    white-space: normal !important;
}

.category-card p,
.flower-grades-card p {
    font-size: 0.95rem !important;
    line-height: 1.5 !important;
}

/* 3. Global Text Safety */
* {
    overflow-wrap: break-word;
    /* Prevent horizontal scroll caused by long words */
}

/* 4. Responsive Sidebar (Stack on Mobile) */
@media (max-width: 768px) {
    .shop-container {
        flex-direction: column !important;
    }

    .sidebar-menu {
        width: 100% !important;
        margin-bottom: 20px !important;
    }
}
/* =========================================
   ROUND 10 REFINEMENTS (11/22/25)
   ========================================= */

/* 1. Fix Aggressive Word Breaking Globally & Specifically */
* {
    word-break: normal !important;
    /* Never break words mid-word */
    overflow-wrap: normal !important;
    /* Only break at spaces */
    hyphens: none !important;
    /* No auto-hyphenation */
}

/* 2. Target Specific Card Elements */
.grade-name,
.category-title,
.category-description,
.menu-category-link {
    white-space: normal !important;
    word-wrap: normal !important;
}

/* 3. Increase Card Min-Widths to Prevent Squishing */
.grade-item {
    min-width: 120px !important;
    /* Ensure enough space for "Greenhouse" */
    width: 100% !important;
}

.category-card {
    min-width: 280px !important;
    /* Ensure card is wide enough */
}

/* 4. Adjust Font Sizes for Long Words */
.grade-name {
    font-size: 1.1rem !important;
    /* Slightly smaller if needed */
}

.category-title {
    font-size: 1.3rem !important;
}

/* 5. Ensure Grid doesn't force columns too small */
.grades-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)) !important;
}

.categories-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)) !important;
}
