/************************ Product List ***************************/
.center_store {
    justify-content: center;
}

.homepage_products {
    width: 100%;
    position: relative;
}

.products_wrapper {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: stretch;
    z-index: 1;
    margin: 60px auto 80px;
}

/************ Products *************/
.product {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc((100% - 60px) / 4);
    margin-right: 20px;
    box-sizing: border-box;
    margin-top: 60px;
    transition: 0.2s all ease-in-out;
    cursor: pointer;
}

.random_product {
    margin-right: 0;
    position: absolute;
    bottom: -60px;
    width: 410px !important;
}

.product:nth-of-type(4n) {
    margin-right: 0;
}

.product_image_container {
    position: relative;
    width: 100%;
    aspect-ratio: 0.9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product_thumbnail {
    width: 100%;
    height: 100%;
    -webkit-filter: drop-shadow(0px 0px 30px #00000030);
    filter: drop-shadow(0px 0px 30px #00000030);
    z-index: 3;
    overflow: hidden;
}

.product_thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
    transition: 0.2s all ease-in-out;
}

.product_details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 20px;
}

.product_details h3,
.product_details p {
    margin: 0;
    transition: 0.2s all ease-in-out;
}

.product_details h3 {
    color: var(--gold);
    margin-top: -5px;
    font-size: 24px;
    text-transform: uppercase;
    font-family: "feature_film_jnlregular";
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    text-align: center;
}

.product:hover {
    transition: 0.2s all ease-in-out;
}

.product:hover .product_thumbnail {
    -webkit-filter: drop-shadow(0px 0px 30px #00000020);
    filter: drop-shadow(0px 0px 30px #00000020);
    transition: 0.2s all ease-in-out;
}

.product:hover .product_thumbnail img {
    transform: scale(1.06);
    transition: 0.2s all ease-in-out;
}

.store_base_illustration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    z-index: 0;
    opacity: 0.3 !important;
}

.store_base_illustration img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
}

.central_paragraph {
    display: flex;
    position: relative;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px 0 140px;
    z-index: 5;
}

.central_paragraph .custom_font_wrapper,
.central_paragraph .custom_font_wrapper svg {
    width: 450px;
    height: 100px;
    margin: 0 auto;
}

.central_paragraph h3 {
    font-size: 32px;
    margin: 30px auto 35px;
}

.central_paragraph h3 p {
    color: var(--black);
    margin: 0;
    font-size: 32px;
    text-align: center;
}

.dragonfly_illustration {
    position: absolute;
    top: -30px;
    right: -30px;
}

.dragonfly_illustration,
.dragonfly_illustration svg {
    width: 120px;
    height: 120px;
}

.ProductSlider {
    display: none;
}

@media (max-width: 1250px) {
    .dragonfly_illustration {
        position: absolute;
        top: -40px;
        right: -10px;
    }
}

@media (max-width: 1100px) {
    .products_wrapper {
        display: block;
        width: 100%;
        max-width: 100%;
    }

    .ProductSlider {
        display: flex;
        width: 100%;
        margin-top: 90px;
    }

    .ProductSlider .slick-track {
        display: flex;
        align-items: stretch;
    }

    .desktop_product {
        display: none;
    }

    .ProductSlider .product {
        margin-right: 0;
    }

    .dragonfly_illustration {
        position: absolute;
        top: -70px;
        right: 80px;
    }
}

@media (max-width: 750px) {
    .products_wrapper {
        display: block;
    }

    .ProductSlider {
        display: flex;
    }

    .ProductSlider .slick-track {
        display: flex;
        align-items: stretch;
    }
}

@media (max-width: 600px) {
    .random_product {
        width: 340px !important;
    }

    .dragonfly_illustration {
        position: absolute;
        top: -70px;
        right: 20px;
    }

    .central_paragraph .button {
        width: calc(100% - 40px);
    }
}

@media (max-width: 530px) {
    .central_paragraph .custom_font_wrapper #homeLine1,
    .central_paragraph .custom_font_wrapper #homeLine2 {
        display: none;
    }

    .central_paragraph .custom_font_wrapper,
    .central_paragraph .custom_font_wrapper svg {
        width: 100%;
        height: auto;
    }
}

@media (min-width: 600px) and (max-height: 900px) {
    .random_product {
        width: 340px !important;
    }
}

@media screen and (max-width: 450px) and (max-height: 860px) {
    .random_product {
        width: 300px !important;
    }
}