.vexora-featured-product-slider {
    --vexora-product-gap: 12px;
    --vexora-slider-peek: 120px;
    width: 100%;
    overflow: hidden;
    background: #fff;
    padding: 30px 0 50px;
}

.vexora-featured-product-slider *,
.vexora-featured-product-slider *::before,
.vexora-featured-product-slider *::after {
    box-sizing: border-box;
}

/* Header */
.vexora-featured-product-slider__header {
    width: 100%;
    max-width: 1200px;
    min-height: 100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vexora-featured-product-slider__title {
    margin: 0;
    padding: 0;
    color: #26292b;
    font-family: Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.vexora-featured-product-slider__shop-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #26292b;
    font-family: Arial, sans-serif;
    font-size: 11px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.vexora-featured-product-slider__shop-link:hover {
    color: #00594f;
}

/* Viewport */
.vexora-featured-product-slider__viewport {
    position: relative;
    width: 100%;
    padding-top: 20px;
    padding-bottom: 20px;
    overflow: hidden;
    cursor: grab;
}

.vexora-featured-product-slider__viewport.is-grabbing {
    cursor: grabbing;
}

/* Track (transform based, no native scrollbar) */
.vexora-featured-product-slider__track {
    display: flex;
    align-items: stretch;
    gap: var(--vexora-product-gap);
    width: 100%;
    will-change: transform;
}

.vexora-featured-product-slider__track.is-dragging .vexora-featured-product-slider__card {
    transition: none;
}

/* Card */
.vexora-featured-product-slider__card {
    position: relative;
    min-width: 0;
    flex: 0 0 calc((100% - var(--vexora-slider-peek, 0px) - 4 * var(--vexora-product-gap)) / 5);
    max-width: 300px;
    height: 423px;
    max-height: 423px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 9px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(0, 0, 0, .14);
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
}

.vexora-featured-product-slider__card:hover {
    box-shadow: 0 6px 16px rgba(0, 0, 0, .12);
}

.vexora-featured-product-slider__card.is-clone {
    pointer-events: none;
}

/* Image */
.vexora-featured-product-slider__image-link {
    display: block;
    width: 100%;
    height: 285px;
    flex: 0 0 auto;
    overflow: hidden;
    text-decoration: none;
}

.vexora-featured-product-slider__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.vexora-featured-product-slider__content {
    display: flex;
    flex-direction: column;
    gap: 7px;
    padding: 26px 20px 30px;
    text-align: left;
    flex: 1 1 auto;
}

.vexora-featured-product-slider__product-title {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #26292b;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vexora-featured-product-slider__product-title a {
    color: inherit;
    text-decoration: none;
}

.vexora-featured-product-slider__product-title a:hover {
    color: #00594f;
}

.vexora-featured-product-slider__category {
    margin: 0;
    padding: 0;
    color: #989898;
    font-family: Arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vexora-featured-product-slider__category a {
    color: inherit;
    text-decoration: none;
}

.vexora-featured-product-slider__price {
    display: block;
    margin: auto 0 0;
    color: #00594f;
    font-family: Arial, sans-serif;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
}

/* Arrows */
.vexora-featured-product-slider__viewport .vexora-featured-product-slider__arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #26292b;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .16);
    font-family: Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    transform: translateY(-50%) !important;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    transition: background .2s ease, color .2s ease, opacity .2s ease;
}

.vexora-featured-product-slider__arrow:hover {
    background: #00594f;
    color: #fff;
}

.vexora-featured-product-slider__viewport .vexora-featured-product-slider__arrow--prev {
    right: auto !important;
    left: 16px !important;
}

.vexora-featured-product-slider__viewport .vexora-featured-product-slider__arrow--next {
    right: 16px !important;
    left: auto !important;
}

.vexora-featured-product-slider__arrow.is-disabled {
    opacity: .35;
    pointer-events: none;
}

/* Dots */
.vexora-featured-product-slider__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 22px;
}

.vexora-featured-product-slider__dot {
    display: inline-block;
    width: var(--vexora-dot-size, 7px) !important;
    height: var(--vexora-dot-size, 7px) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 50%;
    background: #d5d5d5;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    font-size: 0;
    line-height: 0;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.vexora-featured-product-slider__dot:hover {
    transform: scale(1.3);
}

.vexora-featured-product-slider__dot.is-active {
    background: #00594f;
}

@media (max-width: 1024px) {
    .vexora-featured-product-slider {
        padding: 20px 0 35px;
    }

    .vexora-featured-product-slider__header {
        padding: 0 24px;
        min-height: 90px;
    }

    .vexora-featured-product-slider__viewport {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {
    .vexora-featured-product-slider {
        --vexora-slider-peek: 30px;
        padding: 15px 0 25px;
        overflow: hidden;
    }

    .vexora-featured-product-slider__header {
        min-height: 70px;
        padding: 0 16px;
        flex-wrap: wrap;
        gap: 8px;
    }

    .vexora-featured-product-slider__title {
        font-size: 17px;
    }

    .vexora-featured-product-slider__shop-link {
        font-size: 12px;
    }

    .vexora-featured-product-slider__viewport {
        padding-top: 12px;
        padding-bottom: 12px;
    }

    .vexora-featured-product-slider__card {
        flex: 0 0 calc((100% - var(--vexora-slider-peek, 30px)) / 1) !important;
        max-width: none !important;
        height: auto !important;
        max-height: none !important;
    }

    .vexora-featured-product-slider__image-link {
        height: 220px;
    }

    .vexora-featured-product-slider__content {
        padding: 18px 16px 22px;
        gap: 5px;
    }

    .vexora-featured-product-slider__product-title {
        font-size: 14px;
    }

    .vexora-featured-product-slider__category {
        font-size: 12px;
    }

    .vexora-featured-product-slider__price {
        font-size: 14px;
    }

    .vexora-featured-product-slider__viewport .vexora-featured-product-slider__arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }

    .vexora-featured-product-slider__arrow--prev {
        left: 8px !important;
    }

    .vexora-featured-product-slider__arrow--next {
        right: 8px !important;
    }

    .vexora-featured-product-slider__dots {
        margin-top: 16px;
    }
}
