@media (max-width: 768px) {
    .header {
        padding: clamp(0.8rem, 1.5vw, 1rem) 0;
    }

    .menu-toggle {
        display: block;
        z-index: 100;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        display: flex;
        justify-content: center;
        align-items: center;
        transition: 0.5s ease-in-out;
        backdrop-filter: blur(1px);
        background: rgba(255, 255, 255, 0.1);
    }

    .main-nav.active {
        left: 0;
    }

    .contact__button {
        display: none;
    }


    .main-nav__list {
        position: absolute;
        top: 12%;
        right: 5%;
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
        width: 250px;
        height: auto;
        padding: 3rem 2rem;
        background: linear-gradient(135deg, #fff, #fff5e6);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        border-radius: 20px;
    }

    .main-nav__link {
        color: #442f2f;
        font-weight: 600;
        font-size: clamp(1rem, 1.8vw, 1.2rem);
        transition: all 0.4s ease;
        letter-spacing: 1px;
        padding: 0.5rem 1rem;
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }

    .main-nav__link:hover {
        transform: translateX(5px);
    }

    .menu-toggle.active i {
        transform: rotate(180deg);
        color: #FFA500;
        text-shadow: 0 0 10px rgba(255, 165, 0, 0.3);
    }


    .hero {
        padding: 4rem 2rem;
grid-template-columns: 1fr;
    }

    .hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }


    .stat-card:nth-child(2)::after {
        display: none;
    }

    .hero__image img {
        width: 60%;
    }

    .explore {
        padding: 4rem 0;
    }

    .explore_container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

}

.section-title {
    font-size: 32px;
}

.testimonial {
    padding: 60px 0;
}

.section-title {
    font-size: 2rem;
}

.testimonial__box {
    flex-direction: column;
    text-align: center;
    padding: 30px;
    gap: 25px;
}

.testimonial__quote {
    right: -5px;
}

.testimonial__text {
    font-size: 1rem;
}

.lovers {
    padding: 20px;
    margin: 40px auto;
}

.section-title {
    font-size: 2rem;
}

.lovers_item {
    padding: 20px;
}

.lovers_item_details {
    padding: 0 20px 20px;
}



.footer__bottom {
    flex-direction: column;
    text-align: center;
}


@media (max-width: 480px) {
    .hero {
        padding: 3rem 1.5rem;
    }

    .hero__stats {
        grid-template-columns: 1fr;
    }

    .stat-card::after {
        display: none;
    }

    .hero__actions {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero__image img {
        width: 80%;
        margin-bottom: 30px;
    }

    .product-card {
        width: 100%;
        max-width: 800px;
        margin: 15px auto;
    }

    .explore_container {
        grid-template-columns: 1fr;
    }

    .product-card__description {
        font-size: 0.9rem;
    }

    .footer {
        padding: 40px 0 20px;
        width: 100%;
        margin: 0 auto;
        grid-template-columns: repeat(1, 1fr);
    }

    .footer__container {
        padding: 0 20px;
    }

    .footer__logo {
        height: 50px;
    }

    .footer__section {
        padding: 15px;
    }
}
@media screen and (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__left {
        align-items: center;
    }

    .hero__description {
        margin: 0 auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }
}