/* Адаптивность */
@media (max-width: 992px) {
    .container {
        padding: 0 24px;
    }
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .burger {
        display: block;
    }
    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        background: #fffaf5;
        width: 80%;
        height: calc(100vh - 80px);
        flex-direction: column;
        align-items: center;
        padding-top: 40px;
        gap: 2rem;
        transition: 0.3s;
        box-shadow: 5px 0 20px rgba(0,0,0,0.1);
        z-index: 999;
    }
    .nav-links.active {
        left: 0;
    }
    .nav-links li a {
        font-size: 1.3rem;
    }
    .section-title {
        font-size: 2rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .delivery-wrap {
        flex-direction: column;
        text-align: center;
    }
    .delivery-features {
        justify-content: center;
    }
    .contacts-grid {
        flex-direction: column;
    }
    .map {
        min-height: 280px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .menu-grid {
        gap: 25px;
    }
    .review-card {
        flex: 0 0 280px;
    }
}