@import url(main.css);
@import url(/static/user/fonts/constantia-bold-italic.ttf); 
@import url(/static/user/fonts/constantia-italic.ttf);

.main-banner-container {
    width: 100vw;
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    height: calc(100vw / 3);
}


.categories-container {
    position: relative;
    display: flex;
    margin: 0 auto;
    padding: 30px 20px;
    max-width: 1100px;
    align-content: space-between;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 15px;
    background: #f6e1c8;
    border-radius: 14px;
}


.welcome-container {
    margin: 60px auto 90px;
    padding: 0 20px;
    max-width: 1100px;
}

.welcome-info {
    display: flex;
    gap: 15px;
}

.welcome-info > .welcome-info-img-box {
    flex: 1.5;
}

.welcome-info-description-box {
    flex: 2;
}

.welcome-text {
    font-family: "Constantia W99 Italic";
    color: #000;
    font-size: 33px;
    text-align: center;
    width: 100%;
    margin: 0;
    margin-bottom: 50px;
}


.welcome-info-description-box {
    font-family: 'Lora', sans-serif;
    text-align: center;
    font-size: 16.2px;
}

.category-box {
    position: relative;
    flex: 1;
    cursor: pointer;
    height: fit-content;
    min-width: 0;
}

.category-box:hover .category-title-box a {
    color: var(--btn-color);
}

.category-box:hover img {
    transform: scale(1.04);
}

.category-box img {
    transition: all 0.6s;
    width: 280px;
    border: 5px #fff solid;
}



.category-img-box {
    text-align: center;
    margin-bottom: 20px;
}

.category-img-box a {
    display: block;
    height: 100%;
}

.category-title-box {
    font-family: 'Constantia W99 Italic', cursive;
    text-align: center;
}

.category-title-box a {
    color: #000000e6;
    text-decoration: none;
    font-size: 29px;
    transition: color .5s;
}

.categories-title, .novelty-title {
    text-align: center;
    font-family: 'Constantia W99 Italic', cursive;
    width: 100%;
    margin-bottom: 16px;
    margin-top: 10px;
}

.novelty-title {
    margin-bottom: 60px;
}


.categories-title span {
    color: #000;
    font-size: 43px;
}


@media (min-width: 990px) {
    .main-banner-container {
        aspect-ratio: 3/1;
    }
}


@media (min-width: 620px) and (max-width: 910px) {
    .category-box img {
        width: calc(100vw / 3.6);
    }
}

@media (max-width: 560px) {
    .swiper {
        height: fit-content;
    }
}

.novelty-container {
    margin: 0 auto;
    margin-top: 0px;
    padding: 0 20px;
    max-width: 1100px;
    margin-top: 100px;
    margin-bottom: 40px;
}

.novelty-title {
    font-size: 43px;
}

.swiper {
    height: fit-content;
}

.novelty-product img {
    width: 80%;
    aspect-ratio: 1/1;
    border: 5px #fff solid;
}

.novelty-product {
    text-align: center;
    height: 400px;
}

.novelty-product:hover .novelty-product-title {
    color: var(--btn-color);
}

.novelty-product-img-box {
    height: 100%;
    width: 100%;
    box-sizing: border-box;
}

.novelty-product-img-box a {
    display: block;
    position: relative;
    height: 100%;
    width: 100%;
}

.novelty-product-info {
    margin-top: 10px;
    padding: 0 30px;
}

.novelty-product-title {
    font-family: 'Constantia W99 Italic', cursive;
    font-size: 17px;
    transition: color .3s;
    color: #000;
    text-decoration: none;
}

.banner-delimiter-container {
    width: 100%;
    height: 120px;
}


@media (max-width: 620px) {
    .categories-container {
        flex-direction: column;
    }

    .categories-container .category-box img {
        width: 70vw;
    }

    .categories-container .category-box {
        margin-bottom: 25px;
    }
}