.unixsee-showcase,
.unixsee-showcase * {
    box-sizing: border-box;
}

.unixsee-showcase {
    --unixsee-showcase-gap: 24px;
    --unixsee-showcase-desktop-visible: 5;
    --unixsee-showcase-tablet-visible: 3.1;
    --unixsee-showcase-mobile-card-width: 200px;
    --unixsee-showcase-mobile-view-all-color: #a85f00;
    --unixsee-showcase-image-ratio: 3 / 4;
    --unixsee-showcase-title-lines: 2;
    direction: rtl;
    position: relative;
    width: 100%;
    margin: 0 0 40px;
    padding: 0;
    color: #212529;
    font-family: inherit;
}

.unixsee-showcase__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
    min-height: 58px;
    margin: 0 0 18px;
    padding: 0 10px;
}

.unixsee-showcase__title-group {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.unixsee-showcase__heading {
    margin: 0;
    padding: 0;
    color: #212529;
    font-size: 26px;
    font-weight: 500;
    line-height: 1.45;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.unixsee-showcase__ornament {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    direction: ltr;
    flex: 0 0 auto;
}

.unixsee-showcase__ornament i {
    display: block;
    width: 6px;
    height: 6px;
    margin: 0;
    border: 0;
    border-radius: 999px;
    background-color: #fcbd15;
}

.unixsee-showcase__ornament i:nth-child(2) {
    width: 17px;
    height: 9px;
}

.unixsee-showcase__view-all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-width: 180px;
    min-height: 58px;
    padding: 10px 26px;
    border: 1px solid #212529;
    border-radius: 999px;
    background-color: #fff;
    color: #212529;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    text-decoration: none !important;
    transition: box-shadow 180ms ease, transform 180ms ease;
    touch-action: manipulation;
}

.unixsee-showcase__view-all:hover {
    box-shadow: 0 5px 16px rgba(15, 23, 42, 0.1);
    transform: translateY(-1px);
}

.unixsee-showcase__view-all:focus-visible,
.unixsee-showcase__card:focus-visible,
.unixsee-showcase__track:focus-visible,
.unixsee-showcase__arrow:focus-visible {
    outline: 3px solid rgba(33, 37, 41, 0.32);
    outline-offset: 3px;
}

.unixsee-showcase__viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.unixsee-showcase__track {
    display: flex;
    flex-flow: row nowrap;
    gap: var(--unixsee-showcase-gap);
    width: 100%;
    margin: 0;
    padding: 0 10px;
    overflow-x: auto;
    overflow-y: hidden;
    direction: rtl;
    cursor: grab;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.unixsee-showcase__track::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.unixsee-showcase__track.is-mouse-dragging,
.unixsee-showcase__track.is-mouse-dragging * {
    cursor: grabbing !important;
    user-select: none;
}

.unixsee-showcase__slide {
    flex: 0 0 calc((100% - (var(--unixsee-showcase-gap) * (var(--unixsee-showcase-desktop-visible) - 1))) / var(--unixsee-showcase-desktop-visible));
    width: calc((100% - (var(--unixsee-showcase-gap) * (var(--unixsee-showcase-desktop-visible) - 1))) / var(--unixsee-showcase-desktop-visible));
    min-width: 0;
    max-width: none;
    margin: 0;
    padding: 0;
}

.unixsee-showcase__card {
    display: block;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    color: inherit;
    text-decoration: none !important;
    cursor: grab;
    -webkit-tap-highlight-color: transparent;
}

.unixsee-showcase__image-wrap {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: var(--unixsee-showcase-image-ratio);
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-radius: 14px;
    background-color: #f2f3f1;
}

.unixsee-showcase__image {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    object-position: center center;
    transform: scale(1);
    transition: transform 240ms ease-out;
}

.unixsee-showcase--fit-cover .unixsee-showcase__image {
    object-fit: cover !important;
}

.unixsee-showcase--fit-contain .unixsee-showcase__image {
    object-fit: contain !important;
}

.unixsee-showcase__discount {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 2;
    top: 18px;
    left: 0;
    min-width: 60px;
    min-height: 42px;
    padding: 0 13px;
    border-radius: 0 999px 999px 0;
    background-color: #df006b;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    direction: rtl;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.unixsee-showcase__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    gap: 14px;
    width: 100%;
    min-height: 73px;
    margin: 0;
    padding: 12px 0 0;
    direction: rtl;
}

.unixsee-showcase__product-title {
    display: -webkit-box;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
    color: #212529;
    font-size: 17.6px;
    font-weight: 700;
    line-height: 27px;
    text-align: right;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: var(--unixsee-showcase-title-lines);
}

.unixsee-showcase__price-column {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    min-width: 50px;
    margin: 0;
    padding: 0;
    direction: rtl;
    text-align: left;
}

.unixsee-showcase__price-stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    width: 100%;
    min-width: 0;
    white-space: nowrap;
    font-variant-numeric: tabular-nums;
}

.unixsee-showcase__price-old {
    display: block;
    margin: 0;
    padding: 0;
    color: #757575;
    font-size: 14.4px;
    font-weight: 400;
    line-height: 21.6px;
    text-decoration-thickness: 1px;
}

.unixsee-showcase__price-current {
    display: block;
    margin: 0;
    padding: 0;
    color: #a85f00;
    font-size: 18.4px;
    font-weight: 700;
    line-height: 27.6px;
    letter-spacing: -0.2px;
}

.unixsee-showcase__price-current .woocommerce-Price-amount,
.unixsee-showcase__price-current .woocommerce-Price-amount bdi {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.unixsee-showcase__price-old .woocommerce-Price-amount,
.unixsee-showcase__price-old .woocommerce-Price-amount bdi {
    display: inline;
    margin: 0;
    padding: 0;
    color: inherit;
    font: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.unixsee-showcase__price-stack--sale .unixsee-showcase__price-current {
    margin: -8px 0;
}

.unixsee-showcase__currency {
    display: block;
    margin: 0;
    padding: 0;
    color: #757575;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
}

.unixsee-showcase__currency::before,
.unixsee-showcase__currency::after {
    color: inherit;
    font: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    white-space: inherit;
}

.unixsee-showcase__price-message {
    display: block;
    color: #757575;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.7;
    white-space: nowrap;
}

.unixsee-showcase__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    z-index: 5;
    top: 50%;
    width: 52px;
    height: 52px;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(33, 37, 41, 0.08);
    border-radius: 999px;
    background-color: #fff;
    color: #3f3f46;
    box-shadow: 0 7px 20px rgba(15, 23, 42, 0.12);
    cursor: pointer;
    transform: translateY(-50%);
    transition: opacity 160ms ease, visibility 160ms ease, box-shadow 160ms ease;
    touch-action: manipulation;
}

.unixsee-showcase__arrow:hover {
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
}

.unixsee-showcase__arrow svg {
    display: block;
    width: 23px;
    height: 23px;
    pointer-events: none;
}

.unixsee-showcase__arrow--left {
    left: 16px;
}

.unixsee-showcase__arrow--right {
    right: 16px;
}

.unixsee-showcase__arrow:disabled {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.unixsee-showcase__empty {
    width: 100%;
    margin: 0;
    padding: 32px 16px;
    color: #757575;
    font-size: 14px;
    text-align: center;
}

@media (hover: hover) and (pointer: fine) {
    .unixsee-showcase__card:hover .unixsee-showcase__image {
        transform: scale(1.015);
    }
}

@media (max-width: 1024px) {
    .unixsee-showcase__slide {
        flex-basis: calc((100% - (var(--unixsee-showcase-gap) * (var(--unixsee-showcase-tablet-visible) - 1))) / var(--unixsee-showcase-tablet-visible));
        width: calc((100% - (var(--unixsee-showcase-gap) * (var(--unixsee-showcase-tablet-visible) - 1))) / var(--unixsee-showcase-tablet-visible));
    }

    .unixsee-showcase__heading {
        font-size: 23px;
    }

    .unixsee-showcase__view-all {
        min-width: 150px;
        min-height: 52px;
    }
}

@media (max-width: 767px) {
    .unixsee-showcase {
        margin-bottom: 28px;
    }

    .unixsee-showcase__header {
        min-height: 44px;
        margin-bottom: 8px;
        padding-inline: 12px;
        gap: 12px;
    }

    .unixsee-showcase__title-group {
        gap: 0;
    }

    .unixsee-showcase__heading {
        font-size: 16px;
        font-weight: 700;
        line-height: 1.5;
    }

    .unixsee-showcase__ornament {
        display: none;
    }

    .unixsee-showcase__view-all {
        min-width: 0;
        min-height: 44px;
        padding: 0;
        border: 0 !important;
        border-radius: 0;
        background-color: transparent !important;
        color: var(--unixsee-showcase-mobile-view-all-color) !important;
        box-shadow: none;
        font-size: 13px;
        font-weight: 700;
    }

    .unixsee-showcase__view-all:hover {
        box-shadow: none;
        transform: none;
    }

    .unixsee-showcase__track {
        gap: var(--unixsee-showcase-gap);
        padding-inline: 12px;
    }

    .unixsee-showcase__slide {
        flex-basis: var(--unixsee-showcase-mobile-card-width);
        width: var(--unixsee-showcase-mobile-card-width);
    }

    .unixsee-showcase[data-mobile-arrows="no"] .unixsee-showcase__arrow {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .unixsee-showcase__image,
    .unixsee-showcase__view-all,
    .unixsee-showcase__arrow {
        transition: none;
    }

    .unixsee-showcase__card:hover .unixsee-showcase__image {
        transform: none;
    }
}
