.zaro-cs-section {
    max-width: 1300px;
    margin: 24px auto 40px;
    padding: 0 20px;
}
.zaro-cs-title {
    font-size: var(--zcs-title-size, 32px) !important;
    font-weight: 700;
    line-height: 1;
    color: var(--zcs-title-color, #1a1a1a);
    margin: 0 !important;
}
.zaro-cs-divider {
    width: 100%;
    height: 4px;
    background: var(--zcs-divider-color, #1a1a1a);
    margin: 8px 0 20px;
}

/* ===== Carousel wrap — reuses shared .zaro-carousel-wrap/btn/prev/next
   base rules from the main theme style.css. Only track + item sizing
   is scoped here. ===== */
.zaro-cs-section .zaro-carousel-wrap {
    overflow: hidden !important;
}
.zaro-cs-section .zaro-carousel-track {
    display: flex !important;
    overflow: visible !important;
    gap: 20px;
    padding-bottom: 0 !important;
    animation-name: zaro-cs-scroll;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    will-change: transform;
}
.zaro-cs-section .zaro-carousel-track.zaro-paused {
    animation-play-state: paused !important;
}
@keyframes zaro-cs-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.zaro-cs-section .zaro-carousel-track li.zaro-cs-item {
    flex: 0 0 calc((100% - (var(--zcs-cols-desktop, 5) - 1) * 20px) / var(--zcs-cols-desktop, 5)) !important;
    list-style: none;
}

@media (max-width: 600px) {
    .zaro-cs-section .zaro-carousel-track {
        gap: 10px;
    }
    .zaro-cs-section .zaro-carousel-track li.zaro-cs-item {
        flex: 0 0 calc((100% - (var(--zcs-cols-mobile, 3) - 1) * 10px) / var(--zcs-cols-mobile, 3)) !important;
    }
}

/* ===== Card style ===== */
.zaro-cs-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none !important;
    text-align: center;
}
.zaro-cs-img-wrap {
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: 14px;
    overflow: hidden;
    border: 1.5px solid #eee;
    background: #fafafa;
    transition: border-color 0.2s ease, transform 0.2s ease;
}
.zaro-cs-link:hover .zaro-cs-img-wrap {
    border-color: #1fae4d;
    transform: translateY(-4px);
}
.zaro-cs-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zaro-cs-name {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
}
@media (max-width: 600px) {
    .zaro-cs-name {
        font-size: 13px;
    }
}
/* ================= MOBILE: EDGE-TO-EDGE FULL-WIDTH, SMALLER CARDS, OVERLAID ARROWS ================= */
@media (max-width: 600px) {
    .zaro-cs-section {
        padding: 0 !important;
    }
    .zaro-cs-section .zaro-carousel-wrap {
        padding: 0 !important;
    }
    .zaro-cs-section .zaro-carousel-track {
        gap: 10px;
        padding: 0 14px !important;
        box-sizing: border-box;
    }
    .zaro-cs-section .zaro-carousel-track li.zaro-cs-item {
        flex: 0 0 28% !important;
    }
    .zaro-cs-section .zaro-cs-img-wrap {
        border-radius: 12px !important;
        border: none !important;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    }
    .zaro-cs-section .zaro-cs-name {
        font-size: 12.5px !important;
        margin-top: 8px !important;
    }
    .zaro-cs-section .zaro-carousel-btn {
        width: 30px !important;
        height: 30px !important;
        font-size: 13px !important;
        background: rgba(255,255,255,0.85) !important;
        box-shadow: 0 2px 8px rgba(0,0,0,0.15) !important;
        border: none !important;
    }
    .zaro-cs-section .zaro-carousel-prev { left: 4px !important; }
    .zaro-cs-section .zaro-carousel-next { right: 4px !important; }
}