@media (max-width: 1200px) {
    .hero .container {
        gap: 40px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .hero-image .image-placeholder {
        width: 350px;
        height: 350px;
    }
}

@media (max-width: 992px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-features {
        justify-content: center;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .designer-benefits,
    .delivery-options,
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .nav-list {
        gap: 0;
    }
    
    .nav-list a {
        padding: 15px 10px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    /* Для мобильных уменьшаем отступ body */
    body {
        padding-top: 60px; /* Меньше для мобильных */
    }
    
    .top-header .container {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .header-left, .header-right {
        flex-direction: column;
        gap: 15px;
    }
    
    .slogan {
        justify-content: center;
    }
    
    .main-nav .container {
        flex-direction: column;
        gap: 10px;
        padding: 10px 20px;
        height: auto;
        min-height: 60px;
    }
    
    .nav-list {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-list a span {
        font-size: 13px;
    }
    
    .header-actions {
        width: 100%;
        justify-content: space-between;
    }
    
    .hero {
        padding: 100px 0 40px; /* Уменьшил отступы для мобильных */
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .designers-section,
    .delivery-section,
    .design-projects,
    .about-section {
        padding: 30px 20px;
        margin: 20px 0;
    }
    
    .designer-benefits,
    .delivery-options,
    .projects-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cart-sidebar {
        max-width: 100%;
    }
    
    .notification {
        max-width: 90%;
        right: 5%;
        left: 5%;
    }
}

@media (max-width: 576px) {
    body {
        padding-top: 55px;
    }
    
    .hero {
        padding: 90px 0 30px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-image .image-placeholder {
        width: 280px;
        height: 280px;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .filter-btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        max-width: 100%;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .modal-content {
        padding: 30px 20px;
    }
    
    .cart-item {
        flex-direction: column;
        text-align: center;
    }
    
    .cart-item-image {
        width: 100%;
        max-width: 200px;
        margin: 0 auto;
    }
    
    .cart-item-controls {
        justify-content: center;
    }
    
    .remove-item {
        margin-left: 0;
        justify-content: center;
    }
}

@media (max-width: 400px) {
    body {
        padding-top: 50px;
    }
    
    .logo {
        font-size: 24px;
    }
    
    .logo i {
        font-size: 28px;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .cta-button,
    .partner-btn {
        padding: 12px 25px;
        font-size: 16px;
    }
    
    .benefit-card,
    .delivery-option,
    .project-card {
        padding: 20px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    /* Для очень маленьких экранов делаем меню вертикальным */
    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 5px;
    }
    
    .nav-list a {
        padding: 10px;
        justify-content: center;
    }
}