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

:root {
    --primary: #0f172a;
    --secondary: #ffffff;
    --accent: #3b82f6;
    --accent-dark: #1e40af;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text);
    background-color: var(--bg);
    line-height: 1.6;
}

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

/* Age Gate */
.age-gate-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.age-gate-content {
    background: var(--bg);
    padding: 40px;
    border-radius: 12px;
    max-width: 500px;
    text-align: center;
}

.age-gate-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 20px;
}

.age-gate-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 15px;
    margin: 20px 0;
    border-radius: 4px;
}

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

.age-gate-buttons button {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
}

/* Age Banner */
.age-banner {
    background: #dc2626;
    color: white;
    text-align: center;
    padding: 12px;
    font-weight: 600;
    font-size: 14px;
    position: sticky;
    top: 0;
    z-index: 100;
}

/* Header */
.header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 40px;
    z-index: 50;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

@media (max-width: 768px) {
    .logo-text {
        font-size: 1rem;
    }
    
    .logo-img {
        height: 40px;
        width: 40px;
    }
}
.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}

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

.btn-primary:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-sm {
    padding: 10px 18px;
    font-size: 13px;
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
}

/* Hero */
.hero {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.6);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 700px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Features */
.features {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-item {
    text-align: center;
}

.feature-icon {
    font-size: 32px;
    color: var(--accent);
    margin-bottom: 15px;
    font-weight: 700;
}

.feature-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.feature-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Products */
.products {
    padding: 80px 0;
}

.products h2,
.how-to-buy h2,
.shipping-info h2,
.faq h2,
.cta-final h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
}

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

.product-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--accent);
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-card h3 {
    padding: 20px 20px 10px;
    font-size: 20px;
    font-weight: 600;
}

.product-card .price {
    padding: 0 20px;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    color: var(--accent);
    margin: 10px 0;
}

.product-card .btn-primary {
    width: calc(100% - 40px);
    margin: 15px 20px 20px;
}

/* How to Buy */
.how-to-buy {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.step-item {
    text-align: center;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: white;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.step-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    font-weight: 600;
}

.step-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Shipping Info */
.shipping-info {
    padding: 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.info-box ul {
    list-style: none;
}

.info-box li {
    padding: 10px 0;
    color: var(--text-light);
    border-bottom: 1px solid var(--border);
    font-size: 14px;
}

.info-box li:last-child {
    border-bottom: none;
}

/* FAQ */
.faq {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    background: var(--bg-light);
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: var(--accent);
    font-weight: 700;
}

.faq-question.active::after {
    content: '−';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
    color: var(--text-light);
    background: var(--bg-light);
    font-size: 14px;
}

.faq-answer.active {
    max-height: 500px;
    padding: 20px;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-section.bg-light {
    background: var(--bg-light);
}

.content-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.content-with-image.reverse {
    grid-template-columns: 1fr 1fr;
}

.content-with-image.reverse img {
    order: -1;
}

.content-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.content-text p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.8;
}

.content-text ul {
    list-style: none;
}

.content-text li {
    padding: 12px 0;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.content-text li:last-child {
    border-bottom: none;
}

.content-image {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Product Description */
.product-description {
    font-size: 0.95rem;
    color: var(--text-light);
    margin: 15px 0;
    line-height: 1.6;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

/* Varieties Section */
.varieties-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.varieties-image {
    width: 100%;
    max-width: 900px;
    margin: 40px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.varieties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.variety-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.variety-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.variety-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.variety-card p {
    margin: 10px 0;
    color: var(--text);
    line-height: 1.6;
}

/* Guides Section */
.guides-section {
    padding: 80px 0;
}

.guide-item {
    margin-bottom: 60px;
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.guide-item h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.guide-image {
    width: 100%;
    max-width: 800px;
    margin: 30px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.guide-content {
    margin-top: 30px;
}

.guide-content p {
    margin: 15px 0;
    color: var(--text);
    line-height: 1.8;
    font-size: 1rem;
}

/* CTA Final */
.cta-final {
    background: var(--primary);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: var(--bg-light);
    padding: 40px 0;
    border-top: 1px solid var(--border);
    text-align: center;
}

.footer-content p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav {
        gap: 15px;
        font-size: 14px;
    }
    
    .hero {
        height: 350px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .products h2,
    .how-to-buy h2,
    .faq h2,
    .cta-final h2 {
        font-size: 28px;
    }
    
    .products-grid,
    .steps-grid,
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .content-with-image,
    .content-with-image.reverse {
        grid-template-columns: 1fr;
    }
    
    .content-with-image.reverse img {
        order: 0;
    }
    
    .content-text h2 {
        font-size: 24px;
    }
    
    .varieties-grid {
        grid-template-columns: 1fr;
    }
    
    .guide-item {
        padding: 20px;
    }
    
    .guide-item h3 {
        font-size: 1.4rem;
    }
}
