    .mini-carousel {
        position: relative;
        width: 170px;
        height: auto;
        overflow: hidden;
        border-radius: 6px;
    }
    .mini-carousel-inner {
        display: flex;
        transition: transform 0.4s ease;
        width: 100%;
    }
    .mini-carousel-item {
        min-width: 100%;
    }
    .mini-carousel-item img {
        width: 170px;
        height: auto;
        display: block;
        object-fit: contain;
    }

    /* ---- ARROW FIX ---- */
    .mini-prev, .mini-next {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(0,0,0,0.5);
        color: #fff;               /* make sure the chevron is white */
        border: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        font-size: 14px;           /* a bit larger for visibility */
        font-weight: bold;         /* optional – makes it pop */
        cursor: pointer;
        z-index: 10;
        display: flex;
        align-items: center;
        justify-content: center;
        line-height: 1;            /* keeps the chevron centered */
    }
    .mini-prev { left: 6px; }
    .mini-next { right: 6px; }
    /* ---- END FIX ---- */

    .mini-indicators {
        display: flex;
        justify-content: center;
        gap: 4px;
        margin-top: 6px;
    }
    .mini-indicators button {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        border: none;
        background: #ccc;
        cursor: pointer;
    }
    .mini-indicators button.active { background: #333; }
