/* Responsive Styles */

/* Tablet Styles */
@media (max-width: 992px) {
    .container {
        padding: 0 15px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-tagline {
        font-size: 18px;
    }

    .section-header h2 {
        font-size: 28px;
    }

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

/* Mobile Styles */
@media (max-width: 768px) {
    /* Header */
    .desktop-nav {
        display: none;
    }

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

    .nav-wrapper {
        padding: 10px 0;
    }

    .logo {
        height: 45px;
    }

    /* Hero Section */
    .hero-section {
        min-height: 600px;
    }

    .hero-content {
        padding: 20px;
    }

    .hero-content h1 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .hero-tagline {
        font-size: 16px;
        letter-spacing: 1px;
        margin-bottom: 30px;
    }

    .hero-image img {
        max-width: 300px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 14px;
    }

    /* Products Section */
    .products-section {
        padding: 60px 0;
    }

    .section-header h2 {
        font-size: 24px;
        padding: 0 10px;
    }

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

    .footer-column {
        margin-bottom: 30px;
    }

    .footer-logo {
        height: 110px;
        margin: 20px auto 0;
    }

    .main-footer {
        padding: 40px 0 20px;
        margin-top: 60px;
    }

    /* Age Modal */
    .age-modal-content {
        padding: 30px 20px;
        margin: 20px;
    }

    .age-modal-content h2 {
        font-size: 24px;
    }

    .age-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-verify {
        width: 100%;
    }
}

/* Small Mobile Styles */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 24px;
    }

    .hero-tagline {
        font-size: 14px;
    }

    .section-header h2 {
        font-size: 20px;
    }

    .hero-image img {
        max-width: 250px;
    }

    .disclaimer p {
        font-size: 12px;
    }
}

/* Mobile Menu Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

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

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