
.vc-car-section {
    padding: 3rem 0;
    background: #f8f9fb;
}

/* Section header */
.vc-car-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1.5rem;
}
.container {
    max-width: 85% !important;
}
.vc-car-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #f97316;
    margin-bottom: 2px;
}

.vc-car-title {
    font-size: clamp(1.3rem, 2.5vw, 1.75rem);
    font-weight: 800;
    color: #111827;
    margin: 0;
    line-height: 1.15;
}

.vc-car-viewall {
    font-size: 12px;
    font-weight: 600;
    color: #f97316;
    border: 1.5px solid #f97316;
    border-radius: 50px;
    padding: 6px 18px;
    text-decoration: none;
    transition: all .22s;
    white-space: nowrap;
}

    .vc-car-viewall:hover {
        background: #f97316;
        color: #fff;
    }

/* ── Carousel shell ────────────────────────── */
.vc-car-outer {
    position: relative;
}

/* Prev / Next arrow buttons */
.vc-car-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #374151;
    transition: all .22s;
    flex-shrink: 0;
}

    .vc-car-btn:hover {
        background: #f97316;
        border-color: #f97316;
        color: #fff;
        box-shadow: 0 4px 16px rgba(249,115,22,.35);
    }

    .vc-car-btn i {
        font-size: 15px;
    }

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

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

.vc-car-btn:disabled {
    opacity: .35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Viewport — clips overflow */
.vc-car-viewport {
    overflow: hidden;
    width: 100%;
}

/* Track — flex row of cards */
.vc-car-track {
    display: flex;
    transition: transform .38s cubic-bezier(.4,0,.2,1);
    will-change: transform;
}

/* Each card slot */
.vc-car-slide {
    flex: 0 0 auto;
    padding: 0 6px;
    box-sizing: border-box;
}

/* ── Product card ──────────────────────────── */
.vc-pc {
    border: none;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.06);
    overflow: hidden;
    transition: box-shadow .25s, transform .25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .vc-pc:hover {
        box-shadow: 0 6px 24px rgba(0,0,0,.12);
        transform: translateY(-3px);
    }

/* Image wrap — square ratio */
.vc-pc-img {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 1/1;
    flex-shrink: 0;
}

    .vc-pc-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s;
    }

.vc-pc:hover .vc-pc-img img {
    transform: scale(1.06);
}

/* Discount badge */
.vc-pc-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #ef4444;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    z-index: 2;
    letter-spacing: .02em;
}

/* Wishlist btn */
.vc-pc-wish {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 2;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(4px);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    box-shadow: 0 1px 5px rgba(0,0,0,.1);
    text-decoration: none;
    transition: all .22s;
    cursor: pointer;
}

    .vc-pc-wish:hover, .vc-pc-wish.active {
        background: #fee2e2;
        color: #ef4444;
        transform: scale(1.1);
    }

    .vc-pc-wish i {
        font-size: 13px;
    }

/* No-image placeholder */
.vc-pc-noimg {
    width: 100%;
    height: 100%;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #d1d5db;
    gap: 4px;
    font-size: 11px;
}

    .vc-pc-noimg i {
        font-size: 1.6rem;
    }

/* Card body */
.vc-pc-body {
    padding: 10px 10px 12px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Stars */
.vc-pc-stars {
    display: flex;
    align-items: center;
    gap: 1px;
    font-size: 10px;
    color: #d1d5db;
    margin-bottom: 4px;
}

    .vc-pc-stars .fs {
        color: #f59e0b;
    }

    .vc-pc-stars .hs {
        color: #f59e0b;
    }

    .vc-pc-stars .rc {
        color: #9ca3af;
        font-size: 10px;
        margin-left: 2px;
    }

/* Product name */
.vc-pc-name {
    font-size: 12px;
    font-weight: 600;
    color: #111827;
    line-height: 1.35;
    margin-bottom: 5px;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

    .vc-pc-name:hover {
        color: #f97316;
    }

/* Price row */
.vc-pc-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    flex-wrap: wrap;
    margin-top: auto;
}

.vc-pc-cur {
    font-size: 14px;
    font-weight: 700;
    color: #f97316;
}

.vc-pc-old {
    font-size: 11px;
    color: #9ca3af;
    text-decoration: line-through;
}

/* Empty state */
.vc-car-empty {
    padding: 3rem;
    text-align: center;
    color: #9ca3af;
}

    .vc-car-empty i {
        font-size: 2.5rem;
        color: #e5e7eb;
        display: block;
        margin-bottom: 10px;
    }

