.category-page {
    width: 100%;
}

.categories-box {
    width: 100%;
    margin-top: 10px;
}

.category-card {
    height: 160px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
}

.current-category {
    height: 200px !important;
}

.category-card:not(.current-category)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: inherit;
    background-size: cover;
    background-position: center;
    filter: blur(5px) grayscale(100%);
    z-index: 0;
}

.category-title {
    padding: 16px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    width: 100%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-text {
    line-height: 16px;
    max-width: 75%;
    color: #FFF;
    font-size: 14px;
    font-weight: 700;
    font-style: normal;
}

.category-number-circle {
    color: #000;
    position: relative;
    display: flex;
    padding: 6px 12px;
    justify-content: center;
    align-items: center;
    border-radius: 99px;
    background-color: #FCD447;
    font-weight: bold;
    z-index: 1;
}

.category-card:not(.current-category) .category-title {
    top: 0;
    display: flex;
    align-items: center;
    width: 100%;
}

.category-card:not(.current-category) .category-number-circle {
    background: var(--Background-Primary, #FFF);
}


.categories-box .owl-carousel .owl-nav {
    display: none;
}

.categories-box .owl-stage {
    display: flex;
    align-items: center;
}

@media (max-width: 768px) {

    .category-card {
        height: 140px;
    }

    .current-category {
        height: 160px !important;
    }

    .category-title {
        padding: 12px;
    }

    .category-text {
        font-size: 12px;
    }
}

@media (max-width: 576px) {

    .category-card {
        height: 120px;
    }

    .current-category {
        height: 140px !important;
    }

    .category-title {
        padding: 8px;
    }

    .category-text {
        font-size: 10px;
        line-height: 14px;
    }

    .current-category {
        height: 120px !important;
    }
}
.category-card a{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}