.products {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.product {
    width: 30%;
    font-family: "Baloo Bhai 2";
    font-size: 23px;
    font-weight: 500;
    line-height: 65px;
    font-style: normal;
    text-align: left;
    color: #0d0d0d;
    position: relative;
}

.product img {
    width: 100%;
    aspect-ratio: 1/1;
}

.mini span,
.product span {
    font-family: "Baloo Bhai 2";
    font-size: 18px;
    font-weight: bold;
    color: var(--golden-orange);
    text-decoration: underline 3px var(--golden-orange);
    text-underline-offset: 6px;
}

.product .img-ct {
    position: relative;
    z-index: 1;
    width: 300px;
    height: 300px;
}

.product .img-ct:hover::before {
    opacity: 0.86;
}

.product .img-ct:hover::after {
    opacity: 1;
}

.img-ct::before {
    position: absolute;
    content: '';
    top: 0;
    opacity: 0;
    width: 100%;
    aspect-ratio: 1;
    background: #006242;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.img-ct::after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    aspect-ratio: 1;
    background-image: url('/imgavif/shop.svg');
    z-index: 3;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mini {
    display: flex;
    position: relative;

}

.mini img {
    width: 45%;
    margin: 5%;
    z-index: -2;
}

.mini div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mini h2 {
    padding-left: 0;
    position: relative;
}

.contact {
    background: #006242;
    padding: 20px;
    text-align: center;
    font-family: "Baloo Bhai 2";
    font-size: 35px;
    font-weight: 500;
    line-height: 36px;
    font-style: normal;
    color: #fefdfb;
}

.img-s1 {
    position: absolute;
    top: -53px;
    left: 105%;
    width: 115px;
    z-index: -1;
    transform: rotate(120deg);
}

.img-l2 {
    position: absolute;
    left: 35px;
    z-index: 3;
    width: 8%;
    transform: rotate(-10deg);
}

.img-c2 {
    position: absolute;
    bottom: 30%;
    right: -5px;
    width: 70px;
    z-index: 3;
    transform: rotate(55deg);
}

img.img-c1 {
    position: absolute;
    top: -70px;
    left: -135px;
    width: 110px;
    z-index: -1;
    transform: rotate(20deg);
}

@media only screen and (max-width: 1000px) {
    section {
        overflow: hidden;
    }

    .products {
        gap: 15px;
        margin: 30px;
    }

    .product {
        width: 40%;
        font-size: 15px;
        line-height: normal;
    }

    .product .img-ct {
        width: auto;
        height: auto;
    }

    .mini h2 {
        margin-top: 0 !important;
    }

    .contact {
        margin: 20px;
    }

    .contact div {
        padding: 10px;
        text-align: center;
        width: 50%;
        font-family: "Baloo Bhai 2";
        font-size: 15px;
        font-weight: 500;
        line-height: 17px;
        font-style: normal;
        color: #fefdfb;
    }

    .contact img {
        width: 100px;
    }
}