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

body {
    font-family: 'Arial', 'Helvetica', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background: #000000;
    background-attachment: fixed;
}

html {
    scroll-behavior: smooth;
}

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

/* Header and Navigation */
.header {
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid #333;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-brand h1 {
    color: #4CAF50;
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: all 0.3s;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.nav-link:hover {
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #4CAF50;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 100px 0;
    background: linear-gradient(rgba(76, 175, 80, 0.1), rgba(0, 0, 0, 0.3));
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: #4CAF50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 2rem;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
    justify-content: center;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #4CAF50;
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-secondary:hover {
    background: #4CAF50;
    color: white;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: #4CAF50;
    border-color: #4CAF50;
}

.btn-outline:hover {
    background: rgba(76, 175, 80, 0.1);
    color: #4CAF50;
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.cannabis-leaf {
    font-size: 10rem;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
    animation: float 3s ease-in-out infinite;
}

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

/* Legal Notice */
.legal-notice {
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid #ffc107;
    padding: 2rem 0;
}

.notice-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.notice-content h3 {
    color: #856404;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.notice-content p {
    color: #856404;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #4CAF50;
    margin-bottom: 3rem;
}

/* Products Section */
.products {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.product-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.product-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 10px;
}

.product-photo:hover {
    transform: scale(1.05);
}

.product-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.product-card p {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-status {
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.product-status.legal {
    background: #d4edda;
    color: #155724;
}

.product-status.caution {
    background: #fff3cd;
    color: #856404;
}

.product-status.restricted {
    background: #cce7ff;
    color: #004085;
}

.product-status.illegal {
    background: #f8d7da;
    color: #721c24;
}

.products-subtitle {
    text-align: center;
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.product-price {
    color: #4CAF50;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.product-specs {
    color: #cccccc;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.product-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
}

.product-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
}

/* Laws Section */
.laws {
    background: rgba(255, 255, 255, 0.95);
}

.laws-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.law-item {
    background: rgba(45, 90, 39, 0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #2d5a27;
}

.law-item h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.law-item p {
    color: #555;
    line-height: 1.6;
}

/* Dispensaries Section */
.dispensaries {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.dispensary-search {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    justify-content: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.dispensary-search input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 2px solid #ddd;
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.dispensary-search input:focus {
    border-color: #2d5a27;
}

.dispensary-results {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.dispensary-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.dispensary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dispensary-card h3 {
    color: #2d5a27;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.dispensary-card p {
    color: #666;
    line-height: 1.6;
}

/* Compliance Section */
.compliance {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.compliance-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    text-align: center;
}

.compliance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.compliance-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.compliance-card h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.compliance-card p {
    color: #cccccc;
    line-height: 1.6;
}

.legal-text {
    background: rgba(255, 193, 7, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.legal-text h3 {
    color: #856404;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.disclaimer-item {
    background: rgba(0, 0, 0, 0.3);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.disclaimer-item h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.disclaimer-item p {
    color: #cccccc;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
}

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

.contact-info h3 {
    color: #4CAF50;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.contact-info p {
    color: #cccccc;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.contact-item {
    margin-bottom: 1rem;
    color: #cccccc;
}

.contact-item strong {
    color: #4CAF50;
}

.contact-item a {
    color: #4CAF50;
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-requirements {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid rgba(76, 175, 80, 0.3);
    margin-top: 2rem;
}

.contact-requirements h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.contact-requirements ul {
    color: #cccccc;
    padding-left: 1.5rem;
}

.contact-requirements li {
    margin-bottom: 0.5rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.contact-form h3 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    text-align: center;
}

/* Simplified Contact Section */
.contact-simple {
    display: flex;
    justify-content: center;
    padding: 2rem 0;
}

.contact-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 3rem;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.contact-box h3 {
    color: #4CAF50;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-box p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.email-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 10px;
    padding: 2rem;
    margin-top: 2rem;
}

.email-icon {
    font-size: 3rem;
    filter: drop-shadow(0 5px 10px rgba(76, 175, 80, 0.3));
}

.email-info {
    text-align: left;
}

.email-info h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.email-link {
    color: #4CAF50;
    font-size: 1.3rem;
    font-weight: bold;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.email-link:hover {
    color: #45a049;
    text-decoration: underline;
}

.email-info p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

/* Dosage Section */
.dosage {
    background: rgba(255, 255, 255, 0.02);
}

.dosage-intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3rem;
}

.dosage-intro p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
}

.dosage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.dosage-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    text-align: center;
    border-left: 4px solid #2d5a27;
}

.dosage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.dosage-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.dosage-card h3 {
    color: #2d5a27;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.dosage-effects {
    text-align: left;
    margin-bottom: 1.5rem;
}

.dosage-effects h4 {
    color: #333;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.dosage-effects ul {
    list-style: none;
    padding: 0;
}

.dosage-effects li {
    color: #666;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.dosage-effects li:before {
    content: "•";
    color: #2d5a27;
    position: absolute;
    left: 0;
}

.dosage-duration {
    background: rgba(45, 90, 39, 0.1);
    color: #2d5a27;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    display: inline-block;
}

.dosage-tips {
    background: rgba(255, 193, 7, 0.1);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ffc107;
}

.dosage-tips h3 {
    color: #856404;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.tip-item {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.tip-item h4 {
    color: #2d5a27;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.tip-item p {
    color: #666;
    line-height: 1.5;
    margin: 0;
}

/* FAQ Section */
.faq {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
}

.faq-items {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background: #f8f9fa;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d5a27;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-icon {
    font-size: 1.5rem;
    transition: transform 0.3s;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-answer.active {
    max-height: 200px;
    padding: 1.5rem;
}

.faq-answer p {
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #000000;
    border-top: 1px solid #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #4CAF50;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 1rem;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .cannabis-leaf {
        font-size: 6rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .laws-content {
        grid-template-columns: 1fr;
    }

    .dispensary-search {
        flex-direction: column;
    }

    .dispensary-results {
        grid-template-columns: 1fr;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0;
    }

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

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

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

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .product-card,
    .dispensary-card {
        padding: 1.5rem;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
.faq-question:focus {
    outline: 2px solid #2d5a27;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .hero-buttons,
    .dispensary-search,
    .footer {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: black !important;
    }
    
    .product-card,
    .law-item,
    .dispensary-card {
        break-inside: avoid;
        box-shadow: none !important;
        border: 1px solid #ccc;
    }
}

/* Age Gate - Pre-Entry Barrier */
.age-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.2s ease-out;
}

.age-gate.hidden {
    display: none !important;
}

/* Hide all website content until age verified */
.site-content-hidden {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

.site-content-visible {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    animation: siteEnter 0.5s ease-out;
}

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

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

.age-gate-content {
    text-align: center;
    max-width: 500px;
    width: 90%;
    padding: 0;
}

.age-gate-header h1 {
    font-size: 8rem;
    margin-bottom: 3rem;
    color: #4CAF50;
    text-shadow: 0 5px 20px rgba(76, 175, 80, 0.3);
    filter: drop-shadow(0 0 20px rgba(76, 175, 80, 0.4));
}

.age-gate-body h2 {
    color: #ffffff;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.age-question {
    color: #cccccc;
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 400;
}

.age-gate-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.age-gate-btn {
    padding: 1.5rem 3rem;
    border: none;
    border-radius: 15px;
    font-size: 1.3rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 200px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: inherit;
}

.age-gate-yes {
    background: #4CAF50;
    color: white;
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.3);
}

.age-gate-yes:hover {
    background: #45a049;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(76, 175, 80, 0.4);
}

.age-gate-yes:active {
    transform: translateY(-2px);
}

.age-gate-no {
    background: transparent;
    color: #ffffff;
    border: 3px solid #666666;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.age-gate-no:hover {
    background: #666666;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(102, 102, 102, 0.3);
}

.age-gate-no:active {
    transform: translateY(-2px);
}

/* Mobile Responsiveness for Age Gate */
@media (max-width: 768px) {
    .age-gate-header h1 {
        font-size: 6rem;
        margin-bottom: 2rem;
    }
    
    .age-gate-body h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .age-question {
        font-size: 1.2rem;
        margin-bottom: 2.5rem;
    }
    
    .age-gate-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .age-gate-btn {
        width: 100%;
        max-width: 300px;
        padding: 1.2rem 2rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .age-gate-content {
        padding: 0 1rem;
    }
    
    .age-gate-header h1 {
        font-size: 4rem;
    }
    
    .age-gate-body h2 {
        font-size: 1.8rem;
    }
    
    .age-question {
        font-size: 1.1rem;
    }
    
    .age-gate-btn {
        padding: 1rem 1.5rem;
        font-size: 1rem;
        min-width: auto;
    }
}

/* Ensure body doesn't scroll when age gate is active */
body:has(.age-gate:not(.hidden)) {
    overflow: hidden;
    height: 100vh;
}

/* Cart Badge */
.cart-badge {
    background: #4CAF50;
    color: white;
    border-radius: 50%;
    padding: 0.2rem 0.5rem;
    font-size: 0.8rem;
    margin-left: 0.5rem;
    min-width: 1.2rem;
    text-align: center;
    display: inline-block;
}

/* Shop Page Styles */
.shop-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.shop-title {
    color: #4CAF50;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.shop-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shop-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: transparent;
    color: #cccccc;
    border: 2px solid rgba(76, 175, 80, 0.3);
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #4CAF50;
    color: white;
    border-color: #4CAF50;
}

.shop-products {
    padding: 4rem 0;
    background: #0f0f0f;
}

/* Enhanced Product Card Styles */
.product-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    padding: 0;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: all 0.3s;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(76, 175, 80, 0.2);
    border-color: #4CAF50;
}

.product-image {
    position: relative;
    margin-bottom: 0;
    border-radius: 0;
    overflow: hidden;
}

.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #4CAF50;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
}

.product-info {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-description {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
    flex-grow: 1;
}

.product-pricing {
    margin-bottom: 1.5rem;
}

.product-price {
    color: #4CAF50;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.bulk-pricing {
    color: #999999;
}

.product-actions {
    margin-top: auto;
}

.quantity-selector {
    margin-bottom: 1rem;
}

.quantity-selector label {
    color: #cccccc;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.quantity-dropdown {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    color: #ffffff;
    padding: 0.8rem;
    border-radius: 8px;
    font-size: 1rem;
}

.quantity-dropdown:focus {
    outline: none;
    border-color: #4CAF50;
    box-shadow: 0 0 0 2px rgba(76, 175, 80, 0.2);
}

.add-to-cart-btn {
    background: #4CAF50;
    color: white;
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    width: 100%;
    font-size: 1rem;
}

.add-to-cart-btn:hover {
    background: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 175, 80, 0.3);
}

.add-to-cart-btn:active {
    transform: translateY(0);
}

/* Cart Page Styles */
.cart-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.cart-title {
    color: #4CAF50;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.cart-subtitle {
    color: #cccccc;
    font-size: 1.2rem;
}

.cart-content {
    padding: 4rem 0;
    background: #0f0f0f;
}

.cart-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.cart-items {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 100px 1fr auto auto auto;
    gap: 1.5rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(76, 175, 80, 0.2);
    align-items: center;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 100px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

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

.cart-item-details h4 {
    color: #4CAF50;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.cart-item-details p {
    color: #cccccc;
    font-size: 0.9rem;
    margin: 0;
}

.cart-item-price {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.1rem;
}

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

.qty-btn {
    background: rgba(76, 175, 80, 0.2);
    border: 1px solid #4CAF50;
    color: #4CAF50;
    width: 30px;
    height: 30px;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.qty-btn:hover {
    background: #4CAF50;
    color: white;
}

.qty-display {
    color: #ffffff;
    min-width: 30px;
    text-align: center;
    font-weight: bold;
}

.cart-item-total {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
}

.remove-item-btn {
    background: transparent;
    border: none;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.5rem;
    border-radius: 5px;
    transition: all 0.3s;
}

.remove-item-btn:hover {
    background: rgba(255, 107, 107, 0.2);
}

/* Cart Summary */
.cart-summary {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.summary-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 2rem;
}

.summary-box h3 {
    color: #4CAF50;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    color: #cccccc;
}

.summary-row.total {
    color: #4CAF50;
    font-weight: bold;
    font-size: 1.2rem;
    padding-top: 1rem;
}

.summary-divider {
    border-top: 1px solid rgba(76, 175, 80, 0.3);
    margin: 1rem 0;
}

.checkout-actions {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkout-btn {
    font-size: 1.1rem;
    padding: 1.2rem 2rem;
}

.payment-info {
    margin-top: 2rem;
    text-align: center;
}

.payment-badges {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.payment-badge {
    background: rgba(76, 175, 80, 0.2);
    color: #4CAF50;
    padding: 0.5rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(76, 175, 80, 0.3);
}

.payment-note {
    color: #999999;
    margin: 0;
}

.bulk-info-box {
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
}

.bulk-info-box h4 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

.bulk-info-box ul {
    color: #cccccc;
    margin-bottom: 1rem;
    padding-left: 1rem;
}

.bulk-info-box li {
    margin-bottom: 0.5rem;
}

/* Empty Cart State */
.empty-cart {
    text-align: center;
    padding: 4rem 2rem;
    color: #cccccc;
}

.empty-cart-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.empty-cart h2 {
    color: #4CAF50;
    margin-bottom: 1rem;
}

/* Success/Error Messages */
.cart-message {
    position: fixed;
    top: 100px;
    right: 20px;
    background: #4CAF50;
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    animation: slideInRight 0.3s ease-out;
}

.cart-message.error {
    background: #ff6b6b;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cart-item {
        grid-template-columns: 80px 1fr;
        gap: 1rem;
    }
    
    .cart-item-quantity,
    .cart-item-total {
        grid-column: 2 / -1;
        justify-self: start;
        margin-top: 0.5rem;
    }
}

@media (max-width: 768px) {
    .shop-title,
    .cart-title {
        font-size: 2rem;
    }
    
    .shop-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cart-item {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1rem;
    }
    
    .cart-item-image {
        justify-self: center;
    }
    
    .payment-badges {
        flex-direction: column;
        align-items: center;
    }
}

/* Mobile Responsiveness for Contact */
@media (max-width: 768px) {
    .contact-box {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .email-contact {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .email-info {
        text-align: center;
    }
    
    .email-link {
        font-size: 1.1rem;
    }
}