/* Scoped styles for the Elementor WooCommerce Product Showcase widget. */
.epc-showcase,
.epc-showcase * {
    box-sizing: border-box;
}

.epc-showcase {
    --epc-card-bg: #fff;
    --epc-cutout-bg: #fff;
    --epc-gap: 24px;
    --epc-slides: 5;
    --epc-transition: 450ms;
    --epc-cart-button-size: 50px;
    /* The live-style frame is one continuous SVG shape, scaled from the button. */
    --epc-cart-frame-size: calc(var(--epc-cart-button-size) * 1.52);
    --epc-cart-inset: calc(var(--epc-cart-button-size) * .16);
    --epc-action-top-offset: 10px;
    --epc-action-side-offset: 10px;
    --epc-action-tooltip-gap: 14px;
    --epc-carousel-offset-left: 45px;
    --epc-carousel-offset-right: 0px;
    position: relative;
    width: 100%;
    min-width: 0;
    font-family: inherit !important;
    color: inherit;
}

.epc-showcase button,
.epc-showcase a,
.epc-showcase input {
    font-family: inherit !important;
}

.epc-showcase button,
.epc-showcase button:hover,
.epc-showcase button:focus,
.epc-showcase button:active,
.epc-showcase [type="button"],
.epc-showcase [type="button"]:hover,
.epc-showcase [type="button"]:focus,
.epc-showcase [type="button"]:active {
    appearance: none !important;
    -webkit-appearance: none !important;
    background-image: none !important;
    border: 0 !important;
    outline: 0 !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

.epc-showcase a,
.epc-showcase a:hover,
.epc-showcase a:focus,
.epc-showcase a:active {
    text-decoration: none !important;
}

.epc-showcase__inner {
    width: 100%;
    margin-inline: auto !important;
    overflow: visible !important;
}

.epc-showcase__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    width: 100%;
}

.epc-showcase__heading {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 0;
    min-width: 0;
}

.epc-showcase__title {
    margin: 0 !important;
    padding: 0 !important;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 700;
    text-transform: uppercase;
}

.epc-showcase__subtitle {
    position: relative;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    margin-inline-start: 24px !important;
    padding-inline-start: 42px !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 400;
    white-space: nowrap;
}

.epc-showcase__subtitle::before {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    top: 50%;
    width: 25px;
    height: 1px;
    transform: translateY(-50%);
    opacity: .45;
}

.epc-showcase__controls {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 9px;
    flex: 0 0 auto;
    direction: ltr;
}

.epc-showcase__arrow {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 35px;
    height: 35px;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    color: #111 !important;
    background: transparent !important;
    cursor: pointer;
    transition: transform .3s ease, opacity .3s ease !important;
}

.epc-showcase__arrow:hover {
    transform: translateX(-2px);
}

.epc-showcase__arrow--next:hover {
    transform: translateX(2px);
}

.epc-showcase__arrow[disabled] {
    opacity: .25;
    pointer-events: none;
}

.epc-showcase__arrow svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
    stroke: none;
}

.epc-showcase__dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 18px;
}

.epc-showcase__dot {
    display: block !important;
    width: 5px !important;
    height: 5px !important;
    min-width: 5px !important;
    min-height: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 99px !important;
    background-color: #111 !important;
    opacity: .25;
    cursor: pointer;
    transition: width .3s ease, opacity .3s ease !important;
}

.epc-showcase__dot.is-active {
    width: 18px !important;
    opacity: 1;
}

.epc-showcase__viewport {
    position: relative;
    width: calc(100% + var(--epc-carousel-offset-left) + var(--epc-carousel-offset-right));
    min-width: 0;
    margin-left: calc(var(--epc-carousel-offset-left) * -1) !important;
    margin-right: calc(var(--epc-carousel-offset-right) * -1) !important;
    overflow: hidden;
    touch-action: pan-y pinch-zoom;
    -webkit-user-select: none;
    user-select: none;
    overscroll-behavior-inline: contain;
    cursor: grab;
}

.epc-showcase__viewport.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.epc-showcase__track {
    display: flex;
    align-items: stretch;
    gap: var(--epc-gap);
    width: max-content;
    min-width: 100%;
    transform: translate3d(0, 0, 0);
    will-change: transform;
    -webkit-user-select: none;
    user-select: none;
}

.epc-showcase__track.is-animated {
    transition: transform var(--epc-transition) cubic-bezier(.22, .61, .36, 1);
}

.epc-showcase__slide {
    flex: 0 0 calc((100% - (var(--epc-slides) - 1) * var(--epc-gap)) / var(--epc-slides));
    width: calc((100% - (var(--epc-slides) - 1) * var(--epc-gap)) / var(--epc-slides));
    min-width: 0;
    height: auto;
}

.epc-showcase__slide a,
.epc-showcase__slide img {
    -webkit-user-drag: none;
    user-drag: none;
}

.epc-product-card {
    position: relative;
    width: 100%;
    height: 100%;
    margin-top: 5px;
    isolation: isolate;
}

.epc-product-card__hover-bg {
    position: absolute;
    z-index: -1;
    inset: -5px -10px -8px;
    border-radius: 7px;
    background: var(--epc-card-bg);
    opacity: 0;
    transform: translateY(8px);
    box-shadow: 0 18px 42px rgba(15, 15, 15, .1);
    transition: opacity .32s ease, transform .32s ease;
    pointer-events: none;
}

.epc-product-card:hover .epc-product-card__hover-bg {
    opacity: 1;
    transform: translateY(0);
}

.epc-product-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: var(--epc-card-bg) !important;
}

.epc-product-card__media {
    position: relative;
    width: 100%;
    min-width: 0;
    overflow: visible !important;
    background: #f4f4f4;
}

.epc-product-card__media-link {
    position: relative;
    display: block !important;
    width: 100%;
    overflow: hidden;
    background: #f4f4f4;
}

.epc-product-card__image {
    position: absolute;
    inset: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: cover;
    object-position: center;
    border: 0 !important;
    border-radius: inherit !important;
    backface-visibility: hidden;
    transition: opacity .55s cubic-bezier(.2, .6, .2, 1), transform .75s cubic-bezier(.2, .6, .2, 1) !important;
}

.epc-product-card__image--primary {
    opacity: 1;
    transform: scale(1);
}

.epc-product-card__image--secondary {
    opacity: 0;
    transform: scale(1.035);
}

.epc-product-card:hover .epc-product-card__image--primary {
    opacity: 0;
    transform: scale(1.025);
}

.epc-product-card:hover .epc-product-card__image--secondary {
    opacity: 1;
    transform: scale(1);
}

.epc-product-card__actions {
    position: absolute;
    z-index: 7;
    top: var(--epc-action-top-offset) !important;
    right: var(--epc-action-side-offset) !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.epc-product-action {
    position: relative;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 45px !important;
    height: 45px !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #111 !important;
    background-color: #fff !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07) !important;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateX(12px);
    transition: color .3s ease, background-color .3s ease, opacity .3s ease, transform .35s ease, visibility .3s ease !important;
}

.epc-product-action:nth-child(2) {
    transition-delay: .04s !important;
}

.epc-product-action:nth-child(3) {
    transition-delay: .08s !important;
}

.epc-product-card:hover .epc-product-action,
.epc-product-action.is-active,
.elementor-editor-active .epc-product-action {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.epc-product-action:hover,
.epc-product-action.is-active {
    color: #fff !important;
    background-color: #111 !important;
}

.epc-product-action svg {
    position: relative;
    z-index: 1;
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
    transform: none !important;
    transition: none !important;
}

.epc-product-action__tooltip {
    position: absolute;
    z-index: 20;
    top: 50%;
    right: calc(100% + var(--epc-action-tooltip-gap)) !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    max-width: 180px;
    min-height: 30px;
    margin: 0 !important;
    padding: 5px 10px !important;
    border: 0 !important;
    border-radius: 4px !important;
    color: #fff !important;
    background: #111 !important;
    box-shadow: 0 5px 16px rgba(0, 0, 0, .14) !important;
    font-family: inherit;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.4;
    white-space: nowrap;
    direction: rtl;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translate(7px, -50%);
    transition: opacity .2s ease, transform .2s ease, visibility .2s ease !important;
}

.epc-product-action__tooltip::after {
    content: "";
    position: absolute;
    top: 50%;
    right: -5px;
    width: 10px;
    height: 10px;
    background: #111 !important;
    transform: translateY(-50%) rotate(45deg);
    border-radius: 1px;
}

.epc-product-action:hover .epc-product-action__tooltip,
.epc-product-action:focus-visible .epc-product-action__tooltip {
    opacity: 1;
    visibility: visible;
    transform: translate(0, -50%);
}

.epc-product-action.is-loading {
    pointer-events: none;
}

.epc-product-action.is-loading svg {
    animation: epc-action-pulse .75s ease-in-out infinite alternate !important;
}

@keyframes epc-action-pulse {
    from { opacity: .35; }
    to { opacity: 1; }
}

.epc-product-badge {
    position: absolute;
    z-index: 6;
    top: 20px;
    left: 16px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 2px;
    min-width: 66px;
    min-height: 26px;
    margin: 0 !important;
    padding: 4px 13px !important;
    border: 0 !important;
    border-radius: 26px !important;
    color: #222 !important;
    background-color: #d4ff6e !important;
    font-size: 11px;
    line-height: 18px;
    font-weight: 700;
    direction: ltr;
}

.epc-product-badge svg {
    display: block;
    width: 12px;
    height: 12px;
    fill: currentColor;
    stroke: none;
}

.epc-cart-notch {
    position: absolute;
    z-index: 8;
    bottom: -0.75px;
    width: var(--epc-cart-frame-size) !important;
    height: var(--epc-cart-frame-size) !important;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px) scale(.86);
    transition: opacity .28s ease, visibility .28s ease, transform .38s cubic-bezier(.2,.8,.2,1) !important;
    will-change: opacity, transform;
}

.epc-cart-notch--right {
    right: -0.75px;
    transform-origin: right bottom;
}

.epc-cart-notch--left {
    left: -0.75px;
    transform-origin: left bottom;
}

.epc-product-card:hover .epc-cart-notch,
.epc-product-card:focus-within .epc-cart-notch,
.epc-product-card.is-cart-revealed .epc-cart-notch {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/*
 * One continuous vector outline replaces separate gradients/pseudo-elements.
 * The three Bézier sections form the lower connector, the circular shoulder,
 * and the upper connector without any join seam or doubled border.
 */
.epc-cart-notch__shape {
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    overflow: visible;
    color: var(--epc-cutout-bg);
    pointer-events: none;
    shape-rendering: geometricPrecision;
    backface-visibility: hidden;
    transform: translateZ(0);
}

.epc-cart-notch__shape path {
    fill: currentColor !important;
    stroke: none !important;
    vector-effect: non-scaling-stroke;
}

.epc-cart-notch--left .epc-cart-notch__shape {
    transform: scaleX(-1) translateZ(0);
    transform-origin: center;
}

.epc-cart-button,
.epc-cart-button:hover,
.epc-cart-button:focus,
.epc-cart-button:active {
    position: absolute;
    z-index: 2;
    bottom: var(--epc-cart-inset);
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: var(--epc-cart-button-size) !important;
    height: var(--epc-cart-button-size) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
    background-color: #111 !important;
    box-shadow: none !important;
    pointer-events: auto;
    transition: color .3s ease, background-color .3s ease, transform .3s ease !important;
}

.epc-cart-notch--right .epc-cart-button {
    right: var(--epc-cart-inset);
}

.epc-cart-notch--left .epc-cart-button {
    left: var(--epc-cart-inset);
}

.epc-cart-button:hover {
    color: #111 !important;
    background-color: #d4ff6e !important;
    transform: rotate(8deg) scale(1.04);
}

.epc-cart-button.loading {
    opacity: .65;
    pointer-events: none;
}

.epc-cart-button.added::after {
    content: "✓" !important;
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: currentColor;
    font-size: 18px;
    font-weight: 800;
    background: inherit;
    border-radius: inherit;
}

.epc-cart-button svg {
    display: block;
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.epc-product-card__body {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    width: 100%;
    min-height: 132px;
    background: var(--epc-card-bg) !important;
}

.epc-product-card__rating {
    display: flex;
    align-items: center;
    gap: 5px;
    min-height: 15px;
    margin-bottom: 6px;
    direction: ltr;
}

.epc-rating-stars {
    position: relative;
    display: inline-block;
    color: #d8d8d8 !important;
    font-family: Arial, sans-serif !important;
    font-size: 11px;
    line-height: 1;
    letter-spacing: 1px;
    white-space: nowrap;
}

.epc-rating-stars > span {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    color: #f4b400 !important;
    white-space: nowrap;
}

.epc-rating-count {
    color: #5e5e5e !important;
    font-size: 10px;
    line-height: 1;
    font-weight: 500;
}

.epc-product-card__title {
    display: -webkit-box !important;
    width: 100%;
    min-height: 48px;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
    color: #1d1d1d !important;
    font-size: 15px;
    line-height: 1.6;
    font-weight: 500;
    text-decoration: none !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: color .3s ease !important;
}

.epc-product-card__price {
    display: block !important;
    width: 100% !important;
    margin-top: 12px;
    color: #111 !important;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 800;
    direction: rtl !important;
    text-align: right !important;
}

.epc-product-card__price .amount,
.epc-product-card__price ins,
.epc-qv-price .amount,
.epc-qv-price ins {
    color: inherit !important;
    font: inherit !important;
    text-decoration: none !important;
}

.epc-product-card__price del,
.epc-product-card__price del .amount,
.epc-qv-price del,
.epc-qv-price del .amount {
    color: #8a8a8a !important;
    font-weight: 500 !important;
    opacity: .8;
}

/*
 * Price structure is independent from WooCommerce bdi and page RTL.
 * The Elementor control changes only these two CSS variables.
 */
.epc-price-values {
    display: inline-flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 7px !important;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    white-space: nowrap !important;
}

.epc-price-token {
    display: inline-grid !important;
    grid-template-columns: max-content max-content !important;
    grid-template-rows: auto !important;
    align-items: baseline !important;
    column-gap: .38em !important;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    white-space: nowrap !important;
    vertical-align: baseline !important;
}

.epc-price-token .epc-price-number {
    display: block !important;
    grid-column: var(--epc-price-number-column, 2) !important;
    grid-row: 1 !important;
    direction: ltr !important;
    unicode-bidi: isolate !important;
    text-align: left !important;
    white-space: nowrap !important;
}

.epc-price-token .epc-price-unit {
    display: block !important;
    grid-column: var(--epc-price-unit-column, 1) !important;
    grid-row: 1 !important;
    direction: rtl !important;
    unicode-bidi: isolate !important;
    text-align: right !important;
    white-space: nowrap !important;
}

.epc-price-range-separator {
    display: inline-block !important;
    direction: ltr !important;
}

.epc-showcase__empty {
    width: 100%;
    padding: 28px;
    border: 1px dashed #d7d7d7;
    border-radius: 6px;
    text-align: center;
    color: #777;
    background: #fafafa;
}

.epc-showcase__toast {
    position: fixed;
    z-index: 999999;
    left: 50%;
    bottom: 28px;
    max-width: min(92vw, 420px);
    padding: 11px 18px;
    border-radius: 999px;
    color: #fff;
    background: rgba(17, 17, 17, .94);
    font-size: 13px;
    line-height: 1.5;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, 18px);
    transition: opacity .25s ease, transform .25s ease, visibility .25s ease;
    pointer-events: none;
}

.epc-showcase__toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.epc-quick-view-modal {
    position: fixed;
    z-index: 999998;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
}

.epc-quick-view-modal.is-open {
    opacity: 1;
    visibility: visible;
}

.epc-quick-view-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, .54);
    backdrop-filter: blur(7px);
}

.epc-quick-view-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: calc(100vh - 48px);
    overflow: auto;
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 30px 90px rgba(0, 0, 0, .25);
    transform: translateY(14px) scale(.985);
    transition: transform .28s ease;
}

.epc-quick-view-modal.is-open .epc-quick-view-modal__dialog {
    transform: translateY(0) scale(1);
}

.epc-quick-view-modal__close,
.epc-quick-view-modal__close:hover,
.epc-quick-view-modal__close:focus {
    position: absolute;
    z-index: 3;
    top: 12px;
    inset-inline-end: 12px;
    display: grid !important;
    place-items: center;
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    min-height: 38px !important;
    margin: 0 !important;
    padding: 0 0 4px !important;
    border-radius: 999px !important;
    color: #111 !important;
    background: rgba(255,255,255,.9) !important;
    box-shadow: 0 4px 18px rgba(0,0,0,.1) !important;
    font-size: 27px;
    line-height: 1;
    cursor: pointer;
}

.epc-quick-view-modal__body {
    min-height: 260px;
}

.epc-quick-view-modal__body.is-loading {
    display: grid;
    place-items: center;
    color: #666;
}

.epc-qv-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 36px;
    padding: 28px;
}

.epc-qv-image img {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    margin: 0 !important;
    border-radius: 7px !important;
}

.epc-qv-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 18px 0;
}

.epc-qv-title {
    margin: 0 0 14px !important;
    color: #111 !important;
    font-size: clamp(22px, 3vw, 34px);
    line-height: 1.35;
    font-weight: 700;
}

.epc-qv-price {
    margin-bottom: 18px;
    color: #111 !important;
    font-size: 18px;
    font-weight: 800;
}

.epc-qv-price ins {
    text-decoration: none !important;
}

.epc-qv-price del {
    margin-inline-end: 7px;
    color: #888 !important;
    font-weight: 500;
}

.epc-qv-excerpt {
    margin-bottom: 22px;
    color: #626262;
    font-size: 14px;
    line-height: 1.9;
}

.epc-qv-excerpt p:last-child {
    margin-bottom: 0;
}

.epc-qv-add,
.epc-qv-add:hover,
.epc-qv-add:focus {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: fit-content !important;
    min-height: 48px !important;
    margin: 0 0 14px !important;
    padding: 11px 24px !important;
    border: 0 !important;
    border-radius: 999px !important;
    color: #fff !important;
    background: #111 !important;
    box-shadow: none !important;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 700;
}

.epc-qv-add:hover {
    color: #111 !important;
    background: #d4ff6e !important;
}

.epc-qv-more {
    width: fit-content;
    color: #444 !important;
    font-size: 13px;
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

body.epc-modal-open {
    overflow: hidden !important;
}

@media (max-width: 1024px) {
    .epc-showcase {
        --epc-carousel-offset-left: 25px;
    }
}

@media (max-width: 767px) {
    .epc-showcase {
        --epc-carousel-offset-left: 15px;
    }
}

@media (max-width: 1024px) {
    .epc-showcase {
        --epc-slides: 3;
    }

    .epc-product-action {
        opacity: 1;
        visibility: visible;
        transform: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .epc-cart-notch {
        transition-duration: .01ms !important;
    }
}

@media (max-width: 767px) {
    .epc-showcase {
        --epc-slides: 2;
        --epc-gap: 14px;
    }

    .epc-showcase__inner {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .epc-showcase__header {
        display: contents;
    }

    .epc-showcase__heading {
        display: block;
        grid-column: 1;
        grid-row: 1;
    }

    .epc-showcase__viewport {
        grid-column: 1;
        grid-row: 2;
    }

    .epc-showcase__subtitle {
        display: flex;
        width: fit-content;
        margin-top: 8px !important;
        margin-inline-start: 0 !important;
        padding-inline-start: 34px !important;
        white-space: normal;
    }

    .epc-showcase__subtitle::before {
        width: 20px;
    }

    .epc-showcase__controls {
        display: flex;
        grid-column: 1;
        grid-row: 3;
        justify-content: center;
        justify-self: center;
        width: 100%;
        margin-top: 18px !important;
        padding-inline: 12px !important;
    }

    .epc-showcase {
        --epc-action-top-offset: 7px;
        --epc-action-side-offset: 7px;
        --epc-action-tooltip-gap: 10px;
    }

    .epc-product-card__actions {
        gap: 6px;
    }

    .epc-product-action {
        width: 36px !important;
        height: 36px !important;
    }

    .epc-product-action svg {
        width: 17px;
        height: 17px;
    }

    .epc-product-action__tooltip {
        min-height: 27px;
        padding: 4px 8px !important;
        font-size: 10px;
    }

    .epc-product-badge {
        top: 10px;
        left: 9px;
        min-width: 54px;
        min-height: 23px;
        padding: 3px 9px !important;
        font-size: 10px;
    }

    .epc-showcase {
        --epc-cart-button-size: 43px;
    }

    .epc-product-card__body {
        min-height: 120px;
    }

    .epc-product-card__title {
        min-height: 44px;
        margin-bottom: 0 !important;
        font-size: 13px;
        line-height: 1.7;
    }

    .epc-product-card__price {
        gap: 4px;
        font-size: 12px;
    }

    .epc-qv-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 18px;
    }

    .epc-qv-content {
        padding: 0 4px 8px;
    }
}

@media (max-width: 420px) {
    .epc-showcase {
        --epc-gap: 10px;
    }

    .epc-product-card__actions .epc-product-action:nth-child(2),
    .epc-product-card__actions .epc-product-action:nth-child(3) {
        display: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .epc-showcase *,
    .epc-showcase *::before,
    .epc-showcase *::after {
        scroll-behavior: auto !important;
        transition-duration: .001ms !important;
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
    }
}

.epc-showcase__viewport,
.epc-showcase__track {
    direction: ltr;
}

.epc-showcase__slide {
    direction: ltr;
}

.epc-showcase.epc-is-rtl .epc-showcase__slide {
    direction: rtl;
}

/* WooCommerce adds a secondary "View cart" link after AJAX add-to-cart. The project uses the side cart instead. */
.epc-showcase a.added_to_cart.wc-forward,
.epc-showcase a.added_to_cart,
.epc-showcase .added_to_cart.wc-forward {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
}



/* Quick view: fixed content order, Pinar typeface and currency after amount. */
.epc-quick-view-modal,
.epc-quick-view-modal *,
.epc-quick-view-modal *::before,
.epc-quick-view-modal *::after {
    font-family: "Pinar", Pinar, sans-serif !important;
}

.epc-qv-content {
    align-items: stretch !important;
    justify-content: flex-start !important;
}

.epc-qv-title {
    order: 1 !important;
    display: block !important;
    width: 100% !important;
}

.epc-qv-price {
    order: 2 !important;
    display: block !important;
    width: 100% !important;
}

.epc-qv-excerpt {
    order: 3 !important;
    display: block !important;
    width: 100% !important;
}

.epc-qv-add {
    order: 4 !important;
}

.epc-qv-more {
    order: 5 !important;
}



/* Version 1.0.14: deterministic currency placement in RTL/LTR. */
.epc-qv-price {
    direction: rtl !important;
    text-align: right !important;
}

.epc-currency-position--before {
    --epc-price-unit-column: 1;
    --epc-price-number-column: 2;
}

.epc-currency-position--after {
    --epc-price-unit-column: 2;
    --epc-price-number-column: 1;
}
