@media only screen and (max-width: 1200px) {
    .full-container {
        padding: 0px 20px;
    }

    .Categorie-btn {
        width: 170px;
    }

    h2 {
        font-size: 38px;
    }

    header {
        .logo {
            img {
                width: 250px;
            }
        }
        .shop-details {
            gap: 12px;
        }
        .primary-btn a {
            padding: 15px 12px;
        }

        .primary-menu {
            gap: 10px;

            ul {
                gap: 0px;
            }
        }
    }

    .hero-section {
        .banner {
            width: 65%;
        }

        .popular-categories {
            width: 40%;
        }

        .main-hero-section {
            gap: 18px;
        }

    }

    .hero-section {
        .popular-categories {
            .item {
                .item-content {
                    h6 {
                        font-size: 22px;
                    }

                    padding: 16px;
                }
            }
        }

    }

    .marquee-tagline {
        .main-marquee {
            font-size: 32px;
        }
    }

    .our-products {
        .our-product-heading {
            width: 70%;
        }

        .main-products {
            grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        }

        .item {
            padding: 15px;

            .product-content {
                .product-title {
                    font-size: 18px;
                }
            }
        }
    }

    .how-we-work {
        .we-work-heading {
            width: 70%;
        }
    }


}


@media only screen and (max-width: 992px) {

    .Categorie-btn {
        width: 130px;
        font-size: 14px;
        padding: 10px 15px;
    }

    header {

        .middle-tagline {
            display: none;
        }

        .toggle{
            position: relative;
            width: 60px;
            height: 60px;
            background-color: #fff;
            box-shadow: 0px 10px 20px rgba(0,0,0,0.08);
            border-radius: 10px;
            display: flex;
            justify-content: center;
            align-items: center;
            cursor: pointer;
            overflow: hidden;
            z-index: 99;

            span {
                position: absolute;
                width: 30px;
                height: 3px;
                background: #000000;
                border-radius: 10px;
                transition: 0.5s;
            }
             span:nth-child(1) {
                transform: translateY(-10px);
                width: 25px;
                right: 15px;
            }

            span:nth-child(2) {
                transform: translateY(10px);
                width: 25px;
                right: 15px;
            }
            
        }
        .active span:nth-child(1) {
            width: 40px;
            transform: translateY(0) rotate(45deg);
            transition-delay: 0.125s;
        }
        .active span:nth-child(2) {
            width: 40px;
            transform: translateY(0) rotate(315deg);
            transition-delay: 0.25s;
        }
        .active span:nth-child(3) {
            transform: translateX(60px);
        }


        .primary-menu {
            display: block;
            flex-direction: column;
            padding: 150px 20px;
            position: fixed;
            background: #f4ebd8;
            width: 100%;
            max-width: 300px;
            right: -100%;
            top: 0;
            transition: all .4s ease-in;
            z-index: 1;
            height: 100vh;
            transition: .5s;

            ul {
                flex-direction: column;
                gap: 5px
            }

            nav {
                text-align: center;

                a {
                    display: block;
                    padding: 10px 0;
                    font-size: 18px
                }

                ul a {
                    color: #000
                }
            }
        }
        .primary-menu.active-menu {
            right: 0%;
            z-index: 8;
            text-align: center
        }


    }

    .hero-section {
        padding: 20px 0px 40px;

        .popular-categories {
            .popular-items {
                display: none;
            }
        }

        .banner {
            width: 100%;
        }
    }

    .main-support {
        gap: 20px;

        .support-item {
            padding: 0px;
        }

        .icon img {
            width: 42px;
        }
    }

    .home-shop-categories {
        .categories-items {
            .single-item-content {
                position: absolute;
                bottom: 20px;
                width: 100%;
                text-align: center;
            }
        }
    }

    .marquee-tagline {
        padding: 12px 0px;

        .main-marquee {
            font-size: 22px;
        }
    }

    .about-us {
        .main-about-us {
            flex-direction: column-reverse;

            .about-img {
                width: 70%;
            }

            .about-content {
                width: 100%;
            }
        }
    }

    .our-products {
        .our-product-heading {
            width: 90%;
        }

        .main-products {
            grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
        }
    }

    .how-we-work {
        .main-how-we-work {
            gap: 19px;
            margin-top: 60px;
        }

        .we-work-heading {
            width: 90%;
        }

        .step {
            padding: 0px 15px;

            h5 {
                font-size: 18px;
            }
        }
    }

    footer {
        .main-top-footer {
            gap: 10px;
        }

        .item-box {
            padding: 20px;
        }

        .box3 {
            p {
                font-size: 14px;
                line-height: 1.5;
            }
        }
    }

}


@media only screen and (max-width: 768px) {
    .hero-section {
        .banner-item {
            .owl-dots {
                padding: 5px;

                .owl-dot span {
                    width: 21px;
                    height: 3px;
                    margin: 3px 7px;
                }
            }
        }
    }

    .main-support {
        gap: 20px;
        flex-wrap: wrap;

        .support-item {
            width: 48%;
        }
    }

    .home-shop-categories {
        .categories-items {
            flex-wrap: wrap;

            .item {
                width: 50%;
            }
        }

    }

    .about-us {
        .main-about-us {
            .about-img {
                width: 100%;
            }
        }
    }

    .our-products {
        .main-products {
            grid-template-columns: repeat(auto-fill, minmax(256px, 1fr));
        }
    }

    .how-we-work {
        .we-work-heading {
            width: 100%;
        }

        .main-how-we-work {
            gap: 40px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .step {
            h5 {
                font-size: 24px;
            }
        }
    }

    footer {
        .main-top-footer {
            flex-wrap: wrap;
            gap: 30px;
        }
    }
}

@media only screen and (max-width: 600px) {
    h2 {
        font-size: 28px;
    }

    header {
        .social-media {
            display: none;
        }
    }

    .main-support {
        gap: 15px;
    }

    .home-shop-categories {
        padding: 40px 0px 0px;
    }

    .about-us {
        padding: 40px 0px;
    }

    .our-products {
        padding: 40px 0px;

        .our-product-heading {
            gap: 10px;
        }

        .main-products {
            grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
            grid-gap: 10px;
        }

        .item {
            padding: 10px;

            .product-content {
                padding-top: 10px;
            }
        }
    }

    .how-we-work {
        padding: 40px 0px;

        .we-work-heading {
            gap: 10px;
        }
    }

    footer {
        .item-box {
            width: 100%;
            flex: auto;
        }

        .main-top-footer {
            flex-wrap: wrap;
            gap: 15px;
        }
    }


}

@media only screen and (max-width: 450px) {

    h2 {
        font-size: 24px;
    }

    .container {
        padding: 0px 10px;
    }

    .full-container {
        padding: 0px 10px;
    }

    header{
        .shop-details{
            gap: 10px;
            i{
                margin-right: 5px;
            }
            a{
                gap: 1px;
            }
        }
    }
    .hero-section {
        padding: 10px 0px 40px;
        .main-hero-section {
            gap: 0;
        }

    .desktop-view{
        display: none !important;
    }

        .phone-view{
            display: block !important;
        }
    }

    .main-support {
        gap: 10px;

        .support-item {
            flex-direction: column;
            text-align: center;
        }
    }

    .about-us {
        .main-about-us {
            .about-img {
                gap: 10px;

                .group-img {
                    width: 50%;
                    display: flex;
                    flex-direction: column;
                    gap: 10px;
                }
            }
        }
    }

    .our-products {
        .our-product-heading {
            width: 100%;

            p {
                line-height: 1.5;
            }
        }

        .main-products {
            grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
        }

        .item {
            .product-content {
                .product-title {
                    font-size: 16px;
                }
            }
        }
    }

    .how-we-work {
        .we-work-heading {
            p {
                display: none;
            }
        }
    }
}