   /* =========================
   🔥 MOBILE FIRST (BASE)
========================= */

    .vv-root .vv-slider {
        width: 100%;
        min-height: 400px;
    }

    .vv-root .vv-slider .vv-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

}

/* wrapper kiri */
.vv-root .vv-slider .vv-header-left {
    display: flex;
    flex-direction: column;
}

/* title */
.vv-root .vv-slider .vv-title {
    font-size: 23px !important;
    font-weight: 600;
    margin-bottom: 5px;
}

/* subtitle */
.vv-root .vv-slider .vv-subtitle {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

    /* =========================
   🔥 SCROLL CONTAINER
========================= */

    .vv-root .vv-slider .vv-container {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 4px;
    }

    .vv-root .vv-slider .vv-container::-webkit-scrollbar {
        display: none;
    }

    /* =========================
   🔥 TRACK
========================= */

    .vv-root .vv-slider .vv-track {
        display: flex;
        gap: 10px;
    }

    /* =========================
   🔥 CARD
========================= */

.vv-root .vv-slider .vv-card {
    min-width: 180px;
    max-width: 180px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    flex-shrink: 0;

    /* 🔥 NEW: depth lebih realistis */
    box-shadow: 
        0 6px 16px rgba(0, 0, 0, 0.06),
        0 2px 6px rgba(0, 0, 0, 0.04);

    /* 🔥 NEW: separation tipis */
    border: 1px solid rgba(0, 0, 0, 0.04);

    cursor: pointer;

    /* 🔥 NEW: smooth interaction */
    transition: 
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vv-root .vv-slider .vv-card:hover {
    transform: translateY(-3px);

    box-shadow: 
        0 10px 22px rgba(0, 0, 0, 0.08),
        0 4px 10px rgba(0, 0, 0, 0.05);
}

    /* =========================
   🔥 IMAGE
========================= */

    .vv-root .vv-slider .vv-image img {
        width: 100%;
        height: 120px;
        object-fit: cover;
        display: block;
        filter: contrast(1.05) brightness(0.98);
    }

    /* =========================
   🔥 BODY
========================= */

    .vv-root .vv-slider .vv-body {
        padding: 8px;
    }

    /* =========================
   🔥 NAME
========================= */

    .vv-root .vv-slider .vv-name {
        font-size: 14px;
        font-weight: 700;
        margin: 0 0 8px;
        margin-bottom: 10px;
        color: #111;

        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    /* =========================
   🔥 LOCATION
========================= */

    .vv-root .vv-slider .vv-location {
        font-size: 12px;
        color: #666;
        margin: 0 0 6px;
        font-weight: 500;

        display: flex;
        align-items: center;
        gap: 4px;
    }

    /* =========================
   🔥 RATING
========================= */

    .vv-root .vv-slider .vv-rating {
        display: inline-block;
        background: #1e3a8a;
        color: #fff;
        font-size: 11px;
        font-weight: 600;
        padding: 3px 7px;
        border-radius: 6px;
        margin-bottom: 6px;
    }

    .vv-root .vv-slider .vv-rating-row {
        display: flex;
        align-items: center;
        gap: 6px;
        margin-bottom: 6px;
    }

    .vv-review-text {
        font-size: 11px;
        color: #666;
        font-weight: 500;
        margin-bottom: 5px;
    }

    /* =========================
   🔥 BEDROOM
========================= */

    .vv-root .vv-slider .vv-bedroom {
        font-size: 12px;
        color: #666;
        display: flex;
        align-items: center;
        gap: 4px;
        font-weight: 500;
        margin-bottom: 6px;
    }

    .vv-root .vv-slider .vv-icon {
        width: 19px;
        height: 19px;
    }

    /* =========================
   🔥 PRICE WRAP
========================= */

    .vv-root .vv-slider .vv-price-wrap {
        display: flex;
        align-items: center;
        gap: 6px;
    }

    /* =========================
   🔥 OLD PRICE
========================= */

    .vv-root .vv-slider .vv-old-price {
        position: relative;
        display: inline-block;
        font-size: 12px;
        color: #414141;
        left: 85px;
    }

    .vv-root .vv-slider .vv-old-price::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 1.5px;
        opacity: 0.7;
        background: #ef4444;

        transform: rotate(-10deg);
        /* 🔥 ini bikin miring */
        transform-origin: center;
    }

    /* =========================
   🔥 FINAL PRICE
========================= */

    .vv-root .vv-slider .vv-price-row {
        display: flex;
        align-items: center;
        gap: 6px;
        flex-direction: row-reverse;
    }

    .vv-root .vv-slider .vv-price {
        font-size: 14px;
        font-weight: 700;
        color: #ef4444;
    }

    .vv-root .vv-slider .vv-discount {
        display: inline-block;
        background: #ef4444;
        color: #fff;
        font-size: 10px;
        padding: 2px 6px;
        border-radius: 4px;
    }

    .vv-root .vv-slider .vv-see-more {
    font-size: 12px;
    font-weight: 600;
    color: #1e3a8a;
    text-decoration: none;
    }


    @media (min-width: 768px) {

        .vv-root .vv-slider .vv-header h2 {
            font-size: 18px;
        }

        .vv-root .vv-slider .vv-card {
            min-width: 220px;
            max-width: 220px;
        }

        .vv-root .vv-slider .vv-image img {
            height: 140px;
        }

        .vv-root .vv-slider .vv-price {
            font-size: 14px;
        }

    }
/* =========================
🔥 PREMIUM SEE MORE CARD
========================= */

.vv-root .vv-slider .vv-see-more-card {
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 180px;
    max-width: 180px;

    border-radius: 12px;
    text-decoration: none;

    /* 🔥 gradient soft */
    background: linear-gradient(135deg, #f8fafc, #eef2ff);

    /* 🔥 subtle border */
    border: 1px solid rgba(0,0,0,0.04);

    position: relative;
    overflow: hidden;

    transition: all 0.25s ease;
}

/* inner content */
.vv-root .vv-slider .vv-see-more-inner {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 13px;
    font-weight: 600;
    color: #1e3a8a;

    z-index: 2;
}

/* icon */
.vv-root .vv-slider .vv-see-more-icon {
    display: inline-block;
    transition: transform 0.25s ease;
}

/* 🔥 hover effect */
.vv-root .vv-slider .vv-see-more-card:hover {
    transform: translateY(-3px);

    background: linear-gradient(135deg, #eef2ff, #e0e7ff);

    box-shadow:
        0 10px 22px rgba(0,0,0,0.08),
        0 4px 10px rgba(0,0,0,0.05);
}

/* icon move */
.vv-root .vv-slider .vv-see-more-card:hover .vv-see-more-icon {
    transform: translateX(4px);
}

/* 🔥 subtle shine effect */
.vv-root .vv-slider .vv-see-more-card::after {
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.5),
        transparent
    );

    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.vv-root .vv-slider .vv-see-more-card:hover::after {
    transform: translateX(100%);
}

/* =========================
🔥 SKELETON CARD (SLIDER)
========================= */

.vv-root .vv-slider .vv-skeleton-card {
    pointer-events: none;
}

.vv-skeleton-img {
    width: 100%;
    height: 120px;
    background: #e5e7eb;
}

.vv-root .vv-slider .vv-skeleton-card .vv-body {
    padding: 8px;
}

.vv-skeleton-body {
    padding: 8px;
}

.vv-root .vv-slider .vv-skeleton-line {
    height: 10px;
    background: #e5e7eb;
    border-radius: 4px;
    margin-bottom: 6px;
}

.vv-root .vv-slider .vv-skeleton-card:hover {
    transform: none;
}

/* skeleton detail mirip content */

.vv-root .vv-slider .vv-skeleton-name {
    width: 80%;
    height: 14px;
    margin-bottom: 8px;
}

.vv-root .vv-slider .vv-skeleton-rating {
    width: 40%;
    height: 10px;
    margin-bottom: 6px;
}

.vv-root .vv-slider .vv-skeleton-location {
    width: 60%;
    height: 10px;
    margin-bottom: 6px;
}

.vv-root .vv-slider .vv-skeleton-bedroom {
    width: 50%;
    height: 10px;
    margin-bottom: 6px;
}

.vv-root .vv-slider .vv-skeleton-price {
    width: 70%;
    height: 12px;
    margin-top: 8px;
}

/* shimmer */
.vv-root .vv-slider .vv-skeleton-card * {
    position: relative;
    overflow: hidden;
}

.vv-root .vv-slider .vv-skeleton-card *::after {
    content: "";
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.6),
        transparent
    );
    animation: vv-shimmer 1.2s infinite;
}

@keyframes vv-shimmer {
    100% {
        transform: translateX(100%);
    }
}

/* =========================
🔥 FADE TRANSITION (PREMIUM)
========================= */

/* initial state */
/* ❌ JANGAN kena skeleton */
.vv-root .vv-slider .vv-card:not(.vv-skeleton-card) {
    opacity: 0;
    transform: translateY(8px);
}

.vv-root .vv-slider.vv-loaded .vv-card:not(.vv-skeleton-card) {
    opacity: 1;
    transform: translateY(0);
}

/* smooth transition */
.vv-root .vv-slider .vv-card {
    transition: 
        opacity 0.4s ease,
        transform 0.4s ease;
}

/* stagger delay per card */
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(1) { transition-delay: 0.05s; }
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(2) { transition-delay: 0.1s; }
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(3) { transition-delay: 0.15s; }
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(4) { transition-delay: 0.2s; }
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(5) { transition-delay: 0.25s; }
.vv-root .vv-slider.vv-loaded .vv-card:nth-child(6) { transition-delay: 0.3s; }