@media (max-width: 1200px) {
    .hero-content {
        gap: 50px;
    }

    .product-grid {
        gap: 50px;
    }

    .story-content {
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--color-white);
        flex-direction: column;
        justify-content: center;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    }

    nav.active {
        right: 0;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    nav ul li a {
        font-size: 14px;
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1001;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-text {
        order: 2;
    }

    .hero-image {
        order: 1;
    }
}


@media (max-width: 1024px) {
    .hero-badge::before {
        display: none;
    }

    .hero-badge {
        padding-left: 0;
    }

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-price {
        justify-content: center;
    }

    .hero-image-wrapper {
        max-width: 450px;
        margin: 0 auto;
    }

    .hero-image img {
        height: 500px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: relative;
        top: 0;
    }

    .gallery-main img {
        height: 500px;
    }

    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .story-image {
        order: -1;
    }

    .story-image-wrapper::after {
        display: none;
    }

    .benefits-wrapper {
        grid-template-columns: 1fr;
    }

    .benefit-item {
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .benefit-item:last-child {
        border-bottom: none;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-image img {
        height: 400px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .product-name {
        font-size: 2rem;
    }

    .gallery-main img {
        height: 400px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .gallery-thumb img {
        height: 70px;
    }

    .product-actions {
        flex-direction: column;
    }

    .story-image img {
        height: 350px;
    }

    .benefit-item {
        padding: 40px 30px;
    }

    .benefit-number {
        font-size: 3rem;
    }

    .cta-text {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .price-current {
        font-size: 2rem;
    }

    .btn {
        padding: 15px 30px;
        font-size: 11px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .product-price {
        font-size: 1.8rem;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(3, 1fr);
    }
}
