:root {
    --black-hover: #000000cc;
    --link-black: #333;
    --desc-black: #242424;
    --footer-bg: #F6C900;
}

.items-box {
    margin-top: 10px;
}

.fashion-carousel {
    height: 600px;
}

.fashion-carousel .carousel-control-next {
    justify-content: start;
}
.fashion-carousel .carousel-control-prev {
    justify-content: end;
}

.gender-categories .mens-category {
    background-image: url('/assets/img/pages/fashion/mens.jpeg');
    background-position: center center;
    background-size: cover;
}

.gender-categories .women-category {
    background-image: url('/assets/img/pages/fashion/women.jpeg');
    background-position: center center;
    background-size: cover;
}

.gender-categories .category {
    width: 50%;
}

.box-title {
    font-size: 30px;
}

.view-products {
    width: 220px;
    height: 42px;
    font-size: 18px;
    background-color: black;
    border-radius: 4px;
}

.view-products:hover {
    background-color: var(--black-hover);
}

.jewellery-box {
    background-image: url('/assets/img/pages/fashion/jewellery-image.jpeg');
    background-position: center center;
    background-size: cover;
}

.jewellery-title {
    bottom: 0;
}

.style-box {
    min-height: fit-content;
}

.style-box .box-image {
    width: 80%;
    background-image: url('/assets/img/pages/fashion/style-image.jpeg');
    background-position: bottom center;
    background-size: cover;
}

.style-items-section {
    width: 24%;
}

.gifts-box {
    background-image: url('/assets/img/pages/fashion/gifts-image.webp');
    background-position: center center;
    background-size: cover;
}

.news-box {
    background-image: url('/assets/img/layers/line-layer.png');
    background-repeat: repeat;
    padding: 70px;
}

.news-box .news-item .news-item-image {
    min-height: 400px;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-box .news-item .news-item-image img {
    object-fit: cover;
    object-position: center center;
    height: 100%;
    max-width: 100%;
}

.news-title {
    font-size: 24px;
    min-width: fit-content;
}

.news-title a {
    color: var(--link-black);
}

.news-grid {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.news-grid p {
    color: var(--desc-black);
    font-size: 18px;
}

.fashion-footer {
    background-color: var(--footer-bg);
    padding: 30px 0;
}

.fashion-footer img {
    width: fit-content;
}

.fashion-footer img:last-child {
    padding-inline-end: 550px;
}

@media (min-width: 768.1px) {
    .style-items .carousel-item {
        display: block;
        margin: 0;
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .fashion-carousel {
        height: 200px;
    }
    .fashion-carousel .carousel-control-next-icon, .fashion-carousel .carousel-control-prev-icon {
        width: 28px;
        height: 28px;
    }
    .gender-categories {
        gap: 10px;
    }
    .gender-categories .category, .style-items, .style-items img, .gifts-box {
        width: 100%;
        height: 454px !important;
    }
    .jewellery-box {
        background-image: url('/assets/img/pages/fashion/jewellery-2.webp');
    }
    .jewellery-title {
        bottom: 50%;
    }
    .style-items-section {
        width: 100%;
    }
    .style-items .carousel-item {
        height: auto !important;
    }
    .style-items .carousel-item:not(:first-child) img {
        object-position: bottom;
    }
    .news-box {
        padding: 36px;
    }
    .fashion-footer img:first-child {
        width: 80%;
    }
    .fashion-footer img:last-child {
        padding-inline-end: 300px;
    }
}

@media (max-width: 430px) {
    .fashion-footer img:last-child {
        padding-inline-end: 200px;
    }
}

