/* =========================================================
   MOBILE CATEGORY CAROUSEL
   ========================================================= */

.category-carousel-mobile {
    position: relative;

    width: 100%;

    overflow: hidden;

    box-sizing: border-box;
}


/* =========================================================
   HEADER
   ========================================================= */

.category-carousel-mobile-header {
    text-align: center;

    margin-bottom: 25px;
}


.category-carousel-mobile-header
.category-small-title {

    margin-bottom: 5px;

    color: #000;

    font-size: 11px;

    letter-spacing: 3px;

    line-height: 1.3;
}


.category-carousel-mobile-header h2 {

    margin: 0;

    color: #000;

    font-size: 24px;

    font-weight: 400;

    line-height: 1.2;
}


/* =========================================================
   VIEWPORT
   ========================================================= */

.category-carousel-mobile
.category-carousel-viewport {

    width: 100%;

    overflow: hidden;
}


/* =========================================================
   TRACK
   ========================================================= */

.category-carousel-mobile
.category-carousel-track {

    display: flex;

    flex-wrap: nowrap;

    gap: 15px;

    width: 100%;

    margin: 0;
    padding: 0;

    transform: translate3d(0, 0, 0);

    transition: transform 0.4s ease;

    will-change: transform;
}


/* =========================================================
   CARD
   ========================================================= */

.category-carousel-mobile
.category-card {

    flex: 0 0 calc((100% - 15px) / 2);

    width: calc((100% - 15px) / 2);

    min-width: 0;

    margin: 0;

    padding: 0;

    box-sizing: border-box;
}


/* =========================================================
   LINK
   ========================================================= */

.category-carousel-mobile
.category-card-link {

    display: block;

    width: 100%;

    text-decoration: none;
}


/* =========================================================
   IMAGE
   ========================================================= */

.category-carousel-mobile
.category-card-image-wrapper {

    width: 100%;

    overflow: hidden;
}


.category-carousel-mobile
.category-card-image {

    display: block;

    width: 100%;

    height: auto;

    margin: 0;
    padding: 0;

    object-fit: cover;

    transition: transform 0.4s ease;
}


/* =========================================================
   IMAGE HOVER
   ========================================================= */

.category-carousel-mobile
.category-card:hover
.category-card-image {

    transform: scale(1.04);
}


/* =========================================================
   TITLE
   ========================================================= */

.category-carousel-mobile
.category-card-title {

    margin-top: 10px;

    color: #000;

    font-size: 13px;

    line-height: 1.3;

    text-align: center;

    text-transform: uppercase;
}


/* =========================================================
   ARROWS
   ========================================================= */

.category-carousel-mobile
.category-carousel-prev,
.category-carousel-mobile
.category-carousel-next {

    position: absolute;

    top: 50%;

    z-index: 10;

    display: flex;

    align-items: center;
    justify-content: center;

    width: 32px;
    height: 32px;

    padding: 0;

    border: 0;

    border-radius: 50%;

    background: rgba(0, 0, 0, 0.65);

    color: #fff;

    font-size: 25px;

    line-height: 1;

    cursor: pointer;

    transform: translateY(-50%);
}


.category-carousel-mobile
.category-carousel-prev {

    left: 5px;
}


.category-carousel-mobile
.category-carousel-next {

    right: 5px;
}


.category-carousel-mobile
.category-carousel-prev:disabled,
.category-carousel-mobile
.category-carousel-next:disabled {

    opacity: 0.25;

    cursor: not-allowed;
}


/* =========================================================
   ONLY SHOW ON MOBILE
   ========================================================= */

@media (min-width: 768px) {

    .category-carousel-mobile {
        display: none !important;
    }

}