/* Mobile Responsive */
@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(26, 37, 47, 0.98);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        padding: 2rem 0;
        gap: 1.5rem;
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .logo-image {
        height: 40px;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .hero {
        margin-top: 80px;
        padding: 3rem 5% 2rem;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content {
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content .tagline {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .cta-button, .cta-secondary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-product img {
        max-height: 400px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        padding: 3rem 5%;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .product-showcase {
        padding: 4rem 5%;
    }

    .product-showcase h2 {
        font-size: 2rem;
    }

    .product-showcase .subtitle {
        font-size: 1.1rem;
    }

    .product-card {
        grid-template-columns: 1fr;
    }

    .product-image-container {
        min-height: 300px;
    }

    .product-info {
        padding: 2rem;
    }

    .product-info h3 {
        font-size: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .quantity-controls {
        justify-content: center;
    }

    .wholesale-section {
        padding: 2rem;
    }

    .wholesale-section h3 {
        font-size: 1.5rem;
    }

    .wholesale-section p {
        font-size: 1rem;
    }

    .story {
        padding: 4rem 5%;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .story-text h2 {
        font-size: 2rem;
    }

    .story-text p {
        font-size: 1rem;
    }

    .ingredients {
        padding: 4rem 5%;
    }

    .ingredients h2 {
        font-size: 2rem;
    }

    .ingredients .subtitle {
        font-size: 1.1rem;
    }

    .ingredient-grid {
        flex-direction: column;
    }

    .ingredient-card {
        flex: 1 1 100%;
        padding: 2rem;
    }

    .ingredient-icon {
        font-size: 2.5rem;
    }

    .ingredient-card h3 {
        font-size: 1.5rem;
    }

    .benefits {
        padding: 4rem 5%;
    }

    .benefits h2 {
        font-size: 2rem;
    }

    .benefits-grid {
        flex-direction: column;
    }

    .benefit-card {
        flex: 1 1 100%;
        padding: 2rem;
    }

    .cta-section {
        padding: 4rem 5%;
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-section p {
        font-size: 1.1rem;
    }

    .footer {
        padding: 3rem 5% 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .cta-button, .cta-secondary {
        width: 100%;
        text-align: center;
    }
}