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

html, body {
    background: #000000 !important;
    height: 100%;
    width: 100%;
    overflow-x: hidden;
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #e0e0e0;
}

.page {
    display: none;
    min-height: 100vh;
}

.page.active {
    display: block !important;
}

/* Age Verification Page */
.age-verify-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100vw;
    background: #000000 !important;
    position: fixed;
    top: 0;
    left: 0;
    margin: 0;
    padding: 0;
    z-index: 9999;
}

/* Floating Particles */
.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, #4a7c59 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.6;
    animation: floatParticle 15s infinite linear;
}

.particle:nth-child(1) {
    width: 8px;
    height: 8px;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

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

.particle:nth-child(3) {
    width: 10px;
    height: 10px;
    left: 70%;
    animation-delay: -8s;
    animation-duration: 15s;
}

.particle:nth-child(4) {
    width: 4px;
    height: 4px;
    left: 80%;
    animation-delay: -5s;
    animation-duration: 20s;
}

.particle:nth-child(5) {
    width: 7px;
    height: 7px;
    left: 40%;
    animation-delay: -10s;
    animation-duration: 14s;
}

.particle:nth-child(6) {
    width: 5px;
    height: 5px;
    left: 90%;
    animation-delay: -7s;
    animation-duration: 16s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateY(-100px) translateX(50px) rotate(360deg);
        opacity: 0;
    }
}

.minimal-age-verify {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    text-align: center;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.main-logo {
    width: 800px;
    height: 800px;
    max-width: 70vw;
    max-height: 50vh;
    object-fit: contain;
    display: block;
    margin: 0 auto;
    background: transparent !important;
    filter: drop-shadow(0 0 30px rgba(74, 124, 89, 0.3));
}

.age-buttons {
    display: flex;
    gap: 3rem;
    justify-content: center;
    align-items: center;
}

.btn {
    padding: 20px 40px;
    border: 2px solid #4a7c59;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-yes {
    background: #4a7c59;
    color: white;
    box-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
    animation: buttonPulse 2s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { 
        box-shadow: 0 0 20px rgba(74, 124, 89, 0.3);
        transform: scale(1);
    }
    50% { 
        box-shadow: 0 0 30px rgba(74, 124, 89, 0.6);
        transform: scale(1.05);
    }
}

.btn-yes:hover {
    background: #2d4a2b;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.5);
}

.btn-no {
    background: transparent;
    color: #4a7c59;
    box-shadow: 0 0 15px rgba(74, 124, 89, 0.2);
}

.btn-no:hover {
    background: #4a7c59;
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.4);
}

/* Main Page */
.main-page {
    background: #000000;
    overflow-x: hidden;
}

/* Premium Header */
.header {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(74, 124, 89, 0.2);
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.header-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(74, 124, 89, 0.3));
    transition: all 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 6px 20px rgba(74, 124, 89, 0.5));
}

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-name {
    background: linear-gradient(135deg, #ffffff 0%, #4a7c59 50%, #6b9b73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    margin: 0;
    text-shadow: 0 2px 10px rgba(74, 124, 89, 0.3);
}

.brand-tagline {
    color: #6b9b73;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Premium Navigation */
.main-nav {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.nav-link {
    position: relative;
    padding: 12px 24px;
    text-decoration: none;
    color: #e0e0e0;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(74, 124, 89, 0.2);
    backdrop-filter: blur(10px);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(107, 155, 115, 0.1) 100%);
    transition: left 0.3s ease;
    z-index: -1;
}

.nav-link:hover::before,
.nav-link.active::before {
    left: 0;
}

.nav-link:hover,
.nav-link.active {
    color: #ffffff;
    border-color: rgba(74, 124, 89, 0.6);
    box-shadow: 0 5px 20px rgba(74, 124, 89, 0.3);
    transform: translateY(-2px);
}

.nav-text {
    position: relative;
    z-index: 2;
}

/* Hero Section */
.hero-spacer {
    height: 120px;
}

@media (max-width: 768px) {
    .hero-spacer {
        height: 140px !important;
    }
}

@media (max-width: 480px) {
    .hero-spacer {
        height: 160px !important;
    }
    
    .hero {
        padding: 3rem 0 !important;
        margin-top: 2.5rem !important;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-top: 1.5rem !important;
        padding-top: 1rem !important;
    }
}

.hero {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(45, 74, 43, 0.05) 100%);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(74, 124, 89, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 50%, #4a7c59 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 20px rgba(74, 124, 89, 0.3);
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #e0e0e0;
    opacity: 0.9;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.5);
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    animation: floatElement 20s infinite ease-in-out;
}

.element-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    width: 60px;
    height: 60px;
    top: 60%;
    right: 15%;
    animation-delay: -7s;
}

.element-3 {
    width: 80px;
    height: 80px;
    bottom: 30%;
    left: 70%;
    animation-delay: -14s;
}

@keyframes floatElement {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        transform: translateY(-20px) translateX(10px) rotate(90deg);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-10px) translateX(-15px) rotate(180deg);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-30px) translateX(5px) rotate(270deg);
        opacity: 0.7;
    }
}

/* Section Dividers */
.section-divider {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 4rem 0;
}

.divider-line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(74, 124, 89, 0.3) 20%, rgba(74, 124, 89, 0.8) 50%, rgba(74, 124, 89, 0.3) 80%, transparent 100%);
    position: relative;
}

.divider-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    box-shadow: 0 0 20px rgba(74, 124, 89, 0.5);
    animation: dotPulse 3s ease-in-out infinite;
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(74, 124, 89, 0.5);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 30px rgba(74, 124, 89, 0.8);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
    scroll-margin-top: 120px;
}

.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 124, 89, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.section-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #4a7c59 50%, #6b9b73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(74, 124, 89, 0.3);
    position: relative;
    z-index: 2;
}

/* Education Cards */
.education-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.info-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.9) 0%, rgba(35, 35, 35, 0.8) 100%);
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(74, 124, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 124, 89, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 50px rgba(74, 124, 89, 0.2);
}

.info-card h3 {
    color: #6b9b73;
    font-size: 1.9rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
}

.info-card p {
    color: #e0e0e0;
    line-height: 1.8;
    font-size: 1.1rem;
    position: relative;
    z-index: 2;
}

/* Oregon Highlight */
.oregon-highlight {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.15) 0%, rgba(45, 74, 43, 0.1) 100%);
    color: white;
    padding: 5rem;
    border-radius: 30px;
    text-align: center;
    margin: 3rem 0;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(74, 124, 89, 0.3);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.oregon-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 124, 89, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.oregon-highlight h3 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.oregon-highlight p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

/* Product Cards */
.products-grid-featured {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.product-card-featured {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(74, 124, 89, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    backdrop-filter: blur(15px);
}

.product-card-featured::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card-featured:hover::before {
    opacity: 1;
}

.product-card-featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 50px 100px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 124, 89, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        0 0 60px rgba(74, 124, 89, 0.3);
}

.product-image-real {
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.6) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.product-image-real::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
}

.product-image-real img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 35px rgba(0, 0, 0, 0.4));
    position: relative;
    z-index: 2;
}

.product-info {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.product-info h4 {
    color: #6b9b73;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.product-info p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.product-pricing {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.price {
    font-size: 2.5rem;
    font-weight: bold;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.buy-button {
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    border: none;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    position: relative;
    overflow: hidden;
}

.buy-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.buy-button:hover::before {
    left: 100%;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.5);
    background: linear-gradient(135deg, #6b9b73 0%, #4a7c59 100%);
}

.buy-button:active {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px rgba(74, 124, 89, 0.4);
}

/* Product weight and savings labels */
.weight-label {
    color: #6b9b73;
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.savings-badge {
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.popular-product {
    position: relative;
}

.popular-product::before {
    content: '🔥 BEST VALUE';
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: bold;
    letter-spacing: 0.5px;
    z-index: 3;
    box-shadow: 0 4px 12px rgba(74, 124, 89, 0.3);
}

/* Aura Green Girls Section */
.aura-girls-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(20, 20, 20, 0.8) 100%);
    position: relative;
    overflow: hidden;
}

.aura-girls-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(74, 124, 89, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(107, 155, 115, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.aura-girls-tagline {
    text-align: center;
    font-size: 1.4rem;
    color: #e0e0e0;
    margin-bottom: 4rem;
    font-style: italic;
    opacity: 0.9;
}

.aura-girls-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 5rem;
}

.aura-girl-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.aura-girl-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(74, 124, 89, 0.2);
}

.aura-girl-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.aura-girl-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.aura-girl-card:hover .aura-girl-image img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.aura-girl-card:hover .image-overlay {
    opacity: 1;
}

.overlay-content h4 {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.overlay-content p {
    color: #e0e0e0;
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.aura-girls-info {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 3rem;
    position: relative;
}

.event-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.event-feature {
    text-align: center;
    padding: 1.5rem;
}

.event-feature .feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.event-feature h4 {
    color: #ffffff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-feature p {
    color: #ccc;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.event-booking {
    text-align: center;
    padding: 2rem;
    background: rgba(74, 124, 89, 0.05);
    border-radius: 20px;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.event-booking h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.event-booking p {
    color: #e0e0e0;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.event-booking-btn {
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    border: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.3);
}

.event-booking-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(74, 124, 89, 0.5);
    background: linear-gradient(135deg, #5a8c69 0%, #7bab83 100%);
}

/* Shopping Cart Styles */
.cart-button {
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    border: none;
    padding: 12px 16px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
    min-height: 44px;
}

.cart-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.5);
}

.cart-icon {
    font-size: 1.2rem;
}

.cart-count {
    background: #ffffff;
    color: #4a7c59;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    position: absolute;
    top: -8px;
    right: -8px;
    border: 2px solid #4a7c59;
    animation: cartBounce 0.3s ease;
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.cart-sidebar {
    position: fixed;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98) 0%, rgba(35, 35, 35, 0.95) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(74, 124, 89, 0.3);
    border-radius: 20px;
    z-index: 1001;
    transition: top 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
}

.cart-sidebar.open {
    top: 100px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

.cart-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(74, 124, 89, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.1) 0%, rgba(45, 74, 43, 0.05) 100%);
}

.cart-header h3 {
    color: #ffffff;
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.close-cart {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #e0e0e0;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 8px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close-cart:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: rotate(90deg);
}

.cart-content {
    flex: 1;
    padding: 1rem;
    overflow-y: auto;
    max-height: 400px;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
    color: #e0e0e0;
    opacity: 0.7;
}

.empty-cart p {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(145deg, rgba(45, 74, 43, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border: 1px solid rgba(74, 124, 89, 0.2);
    border-radius: 15px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.cart-item:hover {
    border-color: rgba(74, 124, 89, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(74, 124, 89, 0.2);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.cart-item-details {
    flex: 1;
}

.cart-item-details h4 {
    color: #6b9b73;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cart-item-price {
    color: #e0e0e0;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.qty-btn {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(107, 155, 115, 0.1) 100%);
    border: 1px solid rgba(74, 124, 89, 0.4);
    color: #6b9b73;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: bold;
    transition: all 0.3s ease;
}

.qty-btn:hover {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.4) 0%, rgba(107, 155, 115, 0.3) 100%);
    color: #ffffff;
    transform: scale(1.1);
}

.quantity {
    color: #e0e0e0;
    font-weight: 600;
    min-width: 25px;
    text-align: center;
    font-size: 1.1rem;
}

.remove-item {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.1) 0%, rgba(255, 100, 100, 0.05) 100%);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff6b6b;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.remove-item:hover {
    background: linear-gradient(135deg, rgba(255, 0, 0, 0.2) 0%, rgba(255, 100, 100, 0.1) 100%);
    transform: scale(1.1);
    color: #ffffff;
}

.cart-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(74, 124, 89, 0.2);
    background: linear-gradient(145deg, rgba(45, 74, 43, 0.1) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.cart-total {
    color: #ffffff;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(107, 155, 115, 0.1) 100%);
    border-radius: 15px;
    border: 1px solid rgba(74, 124, 89, 0.3);
    font-weight: 700;
}

.checkout-button {
    width: 100%;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.checkout-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.checkout-button:hover::before {
    left: 100%;
}

.checkout-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.4);
}

.cart-notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    font-weight: 600;
    z-index: 9999;
    transform: translateY(-100px);
    transition: transform 0.3s ease;
    box-shadow: 0 10px 25px rgba(74, 124, 89, 0.4);
    border: 1px solid rgba(74, 124, 89, 0.3);
}

.cart-notification.show {
    transform: translateY(0);
}

/* Premium Wholesale Section */
.wholesale-section {
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.05) 0%, rgba(45, 74, 43, 0.02) 100%);
}

.wholesale-main-card {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.95) 0%, rgba(35, 35, 35, 0.9) 100%);
    border-radius: 40px;
    padding: 5rem;
    box-shadow: 
        0 40px 80px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(74, 124, 89, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(74, 124, 89, 0.2);
}

.wholesale-main-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(74, 124, 89, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
}

.wholesale-header {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.wholesale-header h3 {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #ffffff 0%, #4a7c59 50%, #6b9b73 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.wholesale-subtitle {
    font-size: 1.3rem;
    color: #e0e0e0;
    opacity: 0.8;
    line-height: 1.6;
}

.wholesale-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    position: relative;
    z-index: 2;
}

.wholesale-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.wholesale-feature {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(74, 124, 89, 0.2) 0%, rgba(107, 155, 115, 0.1) 100%);
    border-radius: 50%;
    border: 1px solid rgba(74, 124, 89, 0.3);
    flex-shrink: 0;
}

.feature-content h4 {
    color: #6b9b73;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-content p {
    color: #e0e0e0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.wholesale-cta-section {
    background: linear-gradient(145deg, rgba(45, 74, 43, 0.1) 0%, rgba(26, 26, 26, 0.8) 100%);
    border-radius: 25px;
    padding: 3rem;
    border: 1px solid rgba(74, 124, 89, 0.2);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.benefits-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit-item {
    color: #e0e0e0;
    font-size: 1.05rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(74, 124, 89, 0.1);
}

.wholesale-contact {
    text-align: center;
}

.wholesale-contact h4 {
    color: #6b9b73;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.wholesale-contact p {
    color: #e0e0e0;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.wholesale-email-btn {
    display: inline-block;
    background: linear-gradient(135deg, #4a7c59 0%, #6b9b73 100%);
    color: white;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 124, 89, 0.3);
    margin-bottom: 1rem;
}

.wholesale-email-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 124, 89, 0.5);
    background: linear-gradient(135deg, #6b9b73 0%, #4a7c59 100%);
}

.response-note {
    font-size: 0.9rem;
    color: #e0e0e0;
    opacity: 0.6;
    margin-top: 1rem;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2d4a2b 0%, #1a2e1a 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    filter: drop-shadow(0 4px 12px rgba(74, 124, 89, 0.3));
}

.footer-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-text p {
    color: #e0e0e0;
    opacity: 0.8;
}

.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.footer-contact p {
    color: #6b9b73;
    font-size: 1.1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(74, 124, 89, 0.2);
    position: relative;
    z-index: 2;
}

.disclaimer {
    background: #1a2e1a;
    color: white;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Mobile Optimizations */
@media (max-width: 1200px) {
    .container {
        padding: 0 2rem;
    }
    
    .nav-container {
        padding: 0 2rem;
    }
    
    .wholesale-content-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .wholesale-main-card {
        padding: 3rem;
    }
    
    .products-grid-featured {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 3rem;
    }
    
    .aura-girls-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 968px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .education-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 2rem;
    }
    
    .products-grid-featured {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 3rem;
    }
    
    .aura-girls-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 1.5rem;
        padding: 0 1.5rem;
    }
    
    .main-nav {
        gap: 0.3rem;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
    
    .nav-link {
        padding: 10px 18px;
        font-size: 0.9rem;
    }
    
    .cart-button {
        padding: 10px 12px !important;
        font-size: 0.9rem !important;
        order: 1;
        margin-top: 0.5rem;
    }
    
    .cart-sidebar {
        width: 98% !important;
        max-height: 60vh !important;
    }
    
    .cart-sidebar.open {
        top: 60px !important;
    }
    
    .cart-content {
        max-height: 250px !important;
    }
    
    .brand-name {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 5rem 0;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-top: 1rem !important;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .section {
        padding: 6rem 0;
    }
    
    .section-title {
        font-size: 2.2rem;
        margin-bottom: 3rem;
    }
    
    .education-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .info-card {
        padding: 2rem;
        border-radius: 20px;
    }
    
    .info-card h3 {
        font-size: 1.5rem;
    }
    
    .oregon-highlight {
        padding: 3rem 2rem;
        border-radius: 25px;
        margin: 3rem 0;
    }
    
    .oregon-highlight h3 {
        font-size: 2rem;
    }
    
    .oregon-highlight p {
        font-size: 1.1rem;
    }
    
    .products-grid-featured {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .product-card-featured {
        border-radius: 25px;
    }
    
    .product-image-real {
        height: 300px;
        padding: 2rem;
    }
    
    .product-info {
        padding: 2rem;
    }
    
    .product-info h4 {
        font-size: 1.6rem;
    }
    
    .price {
        font-size: 2rem;
    }
    
    .aura-girls-gallery {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .aura-girls-tagline {
        font-size: 1.2rem;
        margin-bottom: 3rem;
    }
    
    .aura-girls-info {
        padding: 2rem;
    }
    
    .event-features {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .event-booking {
        padding: 1.5rem;
    }
    
    .wholesale-main-card {
        padding: 3rem 2rem;
        border-radius: 30px;
    }
    
    .wholesale-header h3 {
        font-size: 2.2rem;
    }
    
    .wholesale-subtitle {
        font-size: 1.1rem;
    }
    
    .wholesale-feature {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .feature-icon {
        align-self: center;
    }
    
    .wholesale-cta-section {
        padding: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    /* Age Verification Mobile */
    .main-logo {
        width: 280px !important;
        height: 280px !important;
        max-width: 85vw !important;
        max-height: 35vh !important;
    }
    
    .minimal-age-verify {
        gap: 2.5rem !important;
        padding: 0 1rem;
    }
    
    .age-buttons {
        flex-direction: column !important;
        gap: 1.2rem !important;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        padding: 18px 25px !important;
        font-size: 1rem !important;
        width: 100%;
        border-radius: 25px;
        min-height: 50px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .info-card {
        padding: 1.5rem;
    }
    
    .oregon-highlight {
        padding: 2rem 1.5rem;
    }
    
    .wholesale-main-card {
        padding: 2rem 1.5rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .aura-girls-tagline {
        font-size: 1.1rem;
    }
    
    .aura-girls-info {
        padding: 1.5rem;
    }
    
    .main-logo {
        width: 240px !important;
        height: 240px !important;
        max-width: 90vw !important;
        max-height: 30vh !important;
    }
    
    .age-buttons {
        max-width: 280px;
        gap: 1rem;
    }
    
    .btn {
        padding: 15px 20px !important;
        font-size: 0.95rem !important;
    }
}

/* Touch-Friendly Enhancements */
@media (hover: none) and (pointer: coarse) {
    .btn {
        min-height: 48px;
        min-width: 48px;
    }
    
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }
    
    .product-card-featured:hover {
        transform: none;
    }
    
    .product-card-featured:active {
        transform: scale(0.98);
    }
    
    .info-card:hover {
        transform: none;
    }
    
    .info-card:active {
        transform: scale(0.98);
    }
    
    .aura-girl-card:hover {
        transform: none;
    }
    
    .aura-girl-card:active {
        transform: scale(0.98);
    }
}
