.category-carousel-wrapper-fce4c924 {
    display: flex;
    flex-direction: column;
    gap: 15px;
    width: 100%;
}

.carousel-outer-row-fce4c924 {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

/* Go Back Button */
.back-btn-fce4c924 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f7f7f7;
    border: 1px solid #e3e3e3;
    border-radius: 15px;
    width: 90px;
    height: 120px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.back-btn-fce4c924:hover {
    background: #eaeaea;
    transform: scale(1.02);
}

.back-icon-fce4c924 {
    font-size: 24px;
    color: #6b1d2f;
    margin-bottom: 5px;
}

.back-label-fce4c924 {
    font-size: 12px;
    font-weight: 700;
    color: #333;
}

.carousel-container-fce4c924 {
    position: relative;
    display: flex;
    align-items: center;
    flex-grow: 1;
    width: calc(100% - 110px);
}

.carousel-track-fce4c924 {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    padding: 10px 0;
    justify-content: flex-start;
}

.carousel-track-fce4c924::-webkit-scrollbar {
    display: none;
}

/* 9 Columns layout on desktop */
.carousel-item-fce4c924 {
    flex: 0 0 calc(11.111% - 13.33px);
    scroll-snap-align: start;
    text-align: center;
    cursor: pointer;
    transition: transform 0.2s ease;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media (max-width: 1100px) {
    .carousel-item-fce4c924 {
        flex: 0 0 calc(20% - 12px);
    }
}

@media (max-width: 800px) {
    .carousel-item-fce4c924 {
        flex: 0 0 calc(33.333% - 10px);
    }
}

/* 2 columns on mobile */
@media (max-width: 600px) {
    .carousel-item-fce4c924 {
        flex: 0 0 calc(50% - 7.5px);
    }
}

.cat-item-fce4c924 {
    opacity: 1 !important;
}

.cat-item-fce4c924.active {
    transform: scale(1.03);
    font-weight: bold;
}

.cat-image-wrapper-fce4c924, .child-image-wrapper-fce4c924 {
    position: relative;
    width: 100%;
    max-width: 150px;
    padding-top: 100%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
    background: #fcfcfc;
}

.cat-img-fce4c924, .child-img-fce4c924 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.cat-item-fce4c924:hover .cat-img-fce4c924, .img-item-fce4c924:hover .child-img-fce4c924 {
    transform: scale(1.05);
}

.cat-title-fce4c924, .child-title-fce4c924 {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    text-align: center;
}

/* Nav buttons */
.nav-btn-fce4c924 {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 10;
    transition: background 0.2s, transform 0.2s;
}

.nav-btn-fce4c924:hover {
    background: #fff;
    transform: scale(1.1);
}

.prev-btn {
    left: -18px;
}

.next-btn {
    right: -18px;
}