/*
 * JaydenART® Website Storefront
 *
 * Lagom's own CMS stylesheet owns the page composition, typography, spacing,
 * buttons, FAQ, CTA, and footer relationship. This file is intentionally
 * limited to the store-only artwork, discovery controls, filtering, and card
 * grid that do not exist in the upstream CMS component library.
 */

.jart-storefront {
    --jart-store-surface: var(--ui-block-bg, #ffffff);
    --jart-store-surface-soft: var(--gray-faded, #f5f7f1);
    --jart-store-border: var(--ui-block-border-color, #dfe5d8);
    --jart-store-muted: var(--text-lighter-color, #626873);
    --jart-store-focus: var(--brand-primary, #7e9e1e);
    width: 100%;
}

.jart-storefront *,
.jart-storefront *::before,
.jart-storefront *::after {
    box-sizing: border-box;
}

.jart-storefront__search input:focus-visible,
.jart-storefront__search button:focus-visible,
.jart-storefront__filters button:focus-visible,
.jart-storefront__filter-cue:focus-visible,
.jart-storefront__empty button:focus-visible,
.jart-storefront__package:focus-visible {
    outline: 3px solid var(--jart-store-focus) !important;
    outline-offset: 3px;
}

/*
 * Hero
 *
 * The banner classes and loaded Lagom CMS stylesheet provide the same caption,
 * H1, subtitle, action button, colors, and responsive container gutters as the
 * public marketing pages. Only this store-specific icon composition is local.
 */
.jart-storefront__hero.site-banner {
    overflow: hidden;
}

.jart-storefront__hero .banner-content {
    margin-inline: auto;
    max-width: 768px;
}

.jart-storefront__hero-art {
    height: 340px;
    inset-block-end: 0;
    inset-inline: 0;
    margin: 0 auto;
    max-width: calc(100% - 48px);
    position: absolute;
    width: 520px;
}

.jart-storefront__orbit {
    border: 1px dashed color-mix(in srgb, var(--brand-primary, #7e9e1e) 38%, transparent);
    border-radius: 50%;
    inset: 50% auto auto 50%;
    position: absolute;
    transform: translate(-50%, -50%);
}

.jart-storefront__orbit--one {
    height: 270px;
    width: 270px;
}

.jart-storefront__orbit--two {
    height: 180px;
    width: 180px;
}

.jart-storefront__hero-icon {
    align-items: center;
    background: color-mix(in srgb, var(--jart-store-surface) 88%, transparent);
    border: var(--cms-block-border, 1px solid rgba(0, 0, 0, 0.06));
    border-radius: 24px;
    box-shadow: var(--box-shadow-lg, 0 0 1px rgba(0, 0, 0, 0.12), 0 8px 32px rgba(0, 0, 0, 0.08));
    display: flex;
    height: 112px;
    justify-content: center;
    position: absolute;
    width: 112px;
}

.jart-storefront__hero-icon--1 {
    inset-block-start: 50%;
    inset-inline-start: 50%;
    transform: translate(-50%, -50%);
}

.jart-storefront__hero-icon--2 {
    inset-block-start: 5%;
    inset-inline-end: 2%;
    transform: rotate(6deg);
}

.jart-storefront__hero-icon--3 {
    inset-block-end: 3%;
    inset-inline-start: 2%;
    transform: rotate(-7deg);
}

.jart-storefront__hero-icon img {
    display: block;
    height: 64px;
    max-width: none;
    width: 64px;
}

.jart-storefront__icon-dark {
    display: none !important;
}

html.lagom-dark-mode .jart-storefront__icon-light,
html[data-theme="dark"] .jart-storefront__icon-light,
html[data-color-scheme="dark"] .jart-storefront__icon-light {
    display: none !important;
}

html.lagom-dark-mode .jart-storefront__icon-dark,
html[data-theme="dark"] .jart-storefront__icon-dark,
html[data-color-scheme="dark"] .jart-storefront__icon-dark {
    display: block !important;
}

/*
 * Catalog discovery
 */
.jart-storefront__catalog {
    scroll-margin-block-start: 110px;
}

.jart-storefront__catalog-subtitle {
    margin-inline: auto;
    max-width: 768px;
}

/* site.css is also present on this root page and otherwise pulls this subtitle
 * back over its title on desktop. Restore the same CMS spacing as Page Manager. */
.site.jart-storefront .jart-storefront__catalog .section-title + .section-subtitle {
    margin-top: var(--section-subtitle-spacing-top);
}

.jart-storefront__catalog-content {
    width: 100%;
}

.jart-storefront__discovery {
    background: var(--jart-store-surface);
    border: var(--cms-block-border, 1px solid var(--jart-store-border));
    border-radius: var(--ui-block-border-radius, 12px);
    box-shadow: var(--cms-block-shadow, var(--box-shadow-lg, 0 0 1px rgba(0, 0, 0, 0.12), 0 8px 32px rgba(0, 0, 0, 0.08)));
    margin-block-start: 0;
    padding: var(--ui-block-padding-lg, 32px);
}

.jart-storefront__search,
.jart-storefront__filters,
.jart-storefront__results {
    display: none;
}

.jart-storefront.is-enhanced .jart-storefront__search,
.jart-storefront.is-enhanced .jart-storefront__results {
    display: block;
}

.jart-storefront.is-enhanced .jart-storefront__filters {
    display: flex;
}

.jart-storefront__search > label {
    color: var(--text-heading-color, #17191c);
    display: inline-block;
    font-size: var(--font-size-base, 16px);
    font-weight: 500;
    line-height: var(--line-height-base, 26px);
    margin-block-end: var(--spacing-1x, 8px);
}

.jart-storefront__search-control {
    position: relative;
}

.jart-storefront__search-symbol {
    border: 2px solid var(--jart-store-muted);
    border-radius: 50%;
    height: 20px;
    inset-block-start: 50%;
    inset-inline-start: 20px;
    pointer-events: none;
    position: absolute;
    transform: translateY(-58%);
    width: 20px;
    z-index: 1;
}

.jart-storefront__search-symbol::after {
    background: var(--jart-store-muted);
    border-radius: 2px;
    content: "";
    height: 2px;
    inset-block-end: -5px;
    inset-inline-end: -5px;
    position: absolute;
    transform: rotate(45deg);
    width: 8px;
}

.jart-storefront__search input.form-control {
    min-height: 56px;
    padding-block: 12px;
    padding-inline: 56px 88px;
    width: 100%;
}

.jart-storefront__search input::-webkit-search-cancel-button {
    display: none;
}

.jart-storefront__search-control button {
    inset-block-start: 50%;
    inset-inline-end: 8px;
    min-height: 40px;
    position: absolute;
    transform: translateY(-50%);
}

.jart-storefront__search > p,
.jart-storefront__no-script {
    color: var(--jart-store-muted);
    font-size: var(--font-size-sm, 14px);
    line-height: var(--line-height-sm, 22px);
    margin: var(--spacing-1x, 8px) 0 0;
}

.jart-storefront__filters {
    flex-wrap: wrap;
    gap: var(--spacing-1x, 8px);
    margin-block-start: var(--spacing-3x, 24px);
}

.jart-storefront__filter-scroller {
    display: none;
}

.jart-storefront.is-enhanced .jart-storefront__filter-scroller {
    display: block;
    margin-block-start: var(--spacing-3x, 24px);
}

.jart-storefront__filter-scroller .jart-storefront__filters {
    margin-block-start: 0;
}

.jart-storefront__filter-cue {
    display: none;
}

.jart-storefront__filters .btn {
    min-height: 44px;
}

.jart-storefront__filters .btn[aria-pressed="true"] {
    background: var(--btn-primary-bg, var(--brand-primary));
    border-color: var(--btn-primary-border-color, var(--brand-primary));
    color: var(--btn-primary-color, #ffffff);
}

.jart-storefront__results {
    color: var(--jart-store-muted);
    margin: var(--spacing-3x, 24px) 0 0;
    min-height: var(--line-height-base, 26px);
}

/*
 * Native package cards in a filterable responsive grid.
 */
.jart-storefront__grid {
    display: grid;
    gap: var(--spacing-3x, 24px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    list-style: none;
    margin: var(--spacing-4x, 32px) 0 0;
    padding: 0;
}

.jart-storefront__card {
    list-style: none;
    min-width: 0;
}

.jart-storefront__card[hidden] {
    display: none !important;
}

.jart-storefront__package.package {
    align-content: center;
    align-items: center;
    column-gap: var(--spacing-2x, 16px);
    display: grid;
    grid-template-areas:
        "graphic title action"
        "graphic body action";
    grid-template-columns: 80px minmax(0, 1fr) 40px;
    grid-template-rows: auto auto;
    height: 100%;
    margin: 0 !important;
    min-height: 152px;
    padding: var(--spacing-3x, 24px);
    row-gap: 4px;
    text-align: start;
}

.jart-storefront__card-icon.package-graphic {
    align-items: center;
    display: flex;
    grid-area: graphic;
    height: 80px;
    justify-content: center;
    margin: 0 !important;
    min-height: 0;
    width: 80px;
}

.jart-storefront__card-icon.package-graphic img {
    display: block;
    height: 80px;
    width: 80px;
}

/*
 * Homepage-style illustration motion
 *
 * Lagom's homepage assembles each illustration once as it enters the viewport,
 * then keeps separate inner details moving. Store icons are single external
 * SVGs, so this mirrors that lifecycle at the whole-illustration level: one
 * directional reveal, followed by a stronger transform-only loop that never
 * replays the reveal after scrolling away and back.
 */
.jart-storefront__card {
    --jart-store-enter-delay: 0ms;
    --jart-store-enter-rotate: -4deg;
    --jart-store-enter-x: -30px;
    --jart-store-enter-y: 16px;
    --jart-store-loop-drift: 2px;
    --jart-store-loop-duration: 4.6s;
    --jart-store-loop-lift: -8px;
    --jart-store-loop-return-drift: -1px;
    --jart-store-loop-return-tilt: -0.35deg;
    --jart-store-loop-tilt: 0.9deg;
}

.jart-storefront__card:nth-child(4n + 2) {
    --jart-store-enter-rotate: 2deg;
    --jart-store-enter-x: 0px;
    --jart-store-enter-y: 28px;
    --jart-store-loop-drift: -2.5px;
    --jart-store-loop-duration: 5s;
    --jart-store-loop-lift: -10px;
    --jart-store-loop-return-drift: 1.25px;
    --jart-store-loop-return-tilt: 0.42deg;
    --jart-store-loop-tilt: -1.1deg;
}

.jart-storefront__card:nth-child(4n + 3) {
    --jart-store-enter-rotate: 4deg;
    --jart-store-enter-x: 30px;
    --jart-store-enter-y: 16px;
    --jart-store-loop-drift: -1.5px;
    --jart-store-loop-duration: 4.3s;
    --jart-store-loop-lift: -7px;
    --jart-store-loop-return-drift: 0.75px;
    --jart-store-loop-return-tilt: -0.3deg;
    --jart-store-loop-tilt: 0.8deg;
}

.jart-storefront__card:nth-child(4n) {
    --jart-store-enter-rotate: -2.5deg;
    --jart-store-enter-x: 0px;
    --jart-store-enter-y: -24px;
    --jart-store-loop-drift: 2px;
    --jart-store-loop-duration: 5.2s;
    --jart-store-loop-lift: -9px;
    --jart-store-loop-return-drift: -1px;
    --jart-store-loop-return-tilt: 0.34deg;
    --jart-store-loop-tilt: -0.9deg;
}

.jart-storefront__card:nth-child(3n + 2) { --jart-store-enter-delay: 80ms; }
.jart-storefront__card:nth-child(3n) { --jart-store-enter-delay: 160ms; }

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-entering .jart-storefront__hero-icon--1 {
    animation: jart-store-enter-hero-center 900ms cubic-bezier(0, 0, 0, 1) 0ms both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-entering .jart-storefront__hero-icon--2 {
    animation: jart-store-enter-hero-end 900ms cubic-bezier(0, 0, 0, 1) 120ms both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-entering .jart-storefront__hero-icon--3 {
    animation: jart-store-enter-hero-start 900ms cubic-bezier(0, 0, 0, 1) 240ms both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__card.is-motion-entering .jart-storefront__card-icon {
    animation: jart-store-enter-card 820ms cubic-bezier(0, 0, 0, 1) var(--jart-store-enter-delay) both;
    animation-play-state: paused;
    transform-origin: 50% 50%;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-looping .jart-storefront__hero-icon--1 {
    animation: jart-store-loop-hero-center 4.8s ease-in-out infinite both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-looping .jart-storefront__hero-icon--2 {
    animation: jart-store-loop-hero-end 5.4s ease-in-out infinite both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-looping .jart-storefront__hero-icon--3 {
    animation: jart-store-loop-hero-start 5.1s ease-in-out infinite both;
    animation-play-state: paused;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__card.is-motion-looping .jart-storefront__card-icon {
    animation: jart-store-loop-card var(--jart-store-loop-duration) ease-in-out infinite both;
    animation-play-state: paused;
    transform-origin: 50% 50%;
}

.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__hero-art.is-motion-visible .jart-storefront__hero-icon,
.jart-storefront.is-enhanced.is-motion-ready .jart-storefront__card.is-motion-visible .jart-storefront__card-icon {
    animation-play-state: running;
}

.jart-storefront.is-motion-suspended .jart-storefront__hero-icon,
.jart-storefront.is-motion-suspended .jart-storefront__card-icon,
.jart-storefront.is-motion-suspended .jart-storefront__filter-cue::after,
.jart-storefront__card[hidden] .jart-storefront__card-icon,
.jart-storefront__package:focus .jart-storefront__card-icon,
.jart-storefront__package:focus-visible .jart-storefront__card-icon {
    animation-play-state: paused !important;
}

@keyframes jart-store-enter-hero-center {
    0% {
        opacity: 0;
        transform: translate3d(-50%, calc(-50% + 32px), 0) scale(0.82) rotate(-5deg);
    }
    72% {
        opacity: 1;
        transform: translate3d(-50%, calc(-50% - 3px), 0) scale(1.03) rotate(0.5deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(-50%, -50%, 0) scale(1) rotate(0deg);
    }
}

@keyframes jart-store-enter-hero-end {
    0% {
        opacity: 0;
        transform: translate3d(44px, -24px, 0) scale(0.82) rotate(12deg);
    }
    72% {
        opacity: 1;
        transform: translate3d(-3px, 2px, 0) scale(1.03) rotate(5.5deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(6deg);
    }
}

@keyframes jart-store-enter-hero-start {
    0% {
        opacity: 0;
        transform: translate3d(-44px, 26px, 0) scale(0.82) rotate(-13deg);
    }
    72% {
        opacity: 1;
        transform: translate3d(3px, -2px, 0) scale(1.03) rotate(-6.5deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(-7deg);
    }
}

@keyframes jart-store-enter-card {
    0% {
        opacity: 0;
        transform: translate3d(var(--jart-store-enter-x), var(--jart-store-enter-y), 0) scale(0.84) rotate(var(--jart-store-enter-rotate));
    }
    72% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1.04) rotate(0.35deg);
    }
    100% {
        opacity: 1;
        transform: translate3d(0, 0, 0) scale(1) rotate(0deg);
    }
}

@keyframes jart-store-loop-hero-center {
    0%, 100% { transform: translate3d(-50%, -50%, 0) rotate(0deg); }
    35% { transform: translate3d(calc(-50% + 2px), calc(-50% - 10px), 0) rotate(0.8deg); }
    68% { transform: translate3d(calc(-50% - 2px), calc(-50% + 4px), 0) rotate(-0.45deg); }
}

@keyframes jart-store-loop-hero-end {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(6deg); }
    34% { transform: translate3d(-3px, -12px, 0) rotate(3.8deg); }
    70% { transform: translate3d(3px, 4px, 0) rotate(7.5deg); }
}

@keyframes jart-store-loop-hero-start {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(-7deg); }
    34% { transform: translate3d(3px, 10px, 0) rotate(-4.8deg); }
    70% { transform: translate3d(-2px, -4px, 0) rotate(-8.3deg); }
}

@keyframes jart-store-loop-card {
    0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
    38% { transform: translate3d(var(--jart-store-loop-drift), var(--jart-store-loop-lift), 0) rotate(var(--jart-store-loop-tilt)); }
    72% { transform: translate3d(var(--jart-store-loop-return-drift), 2px, 0) rotate(var(--jart-store-loop-return-tilt)); }
}

.jart-storefront__package .package-title {
    align-self: end;
    font-size: 18px;
    font-weight: 600;
    grid-area: title;
    line-height: 26px;
    margin: 0 !important;
    min-width: 0;
}

.jart-storefront__package .package-body {
    align-self: start;
    display: block;
    grid-area: body;
    margin: 0 !important;
    min-width: 0;
}

.jart-storefront__package .jart-storefront__card-description {
    display: -webkit-box;
    font-size: 14px;
    line-height: 22px;
    overflow: hidden;
    padding: 0;
    text-align: start;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.jart-storefront__package .package-box {
    align-items: center;
    align-self: center;
    grid-area: action;
    height: auto;
    margin: 0 !important;
    min-height: 0;
    width: 40px;
}

.jart-storefront__package .package-actions {
    margin: 0 !important;
    padding: 0 !important;
}

.jart-storefront__package .package-actions .btn {
    align-items: center;
    background: var(--btn-primary-faded-bg, #eff8d1);
    border: 1px solid color-mix(in srgb, var(--brand-primary, #7e9e1e) 36%, transparent);
    border-radius: 50%;
    color: var(--btn-primary-faded-color, #5f772e);
    display: flex;
    height: 40px;
    justify-content: center;
    min-height: 40px;
    padding: 0;
    width: 40px;
}

.jart-storefront__package .package-actions .btn-text {
    border: 0;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}

.jart-storefront__package .package-actions .btn-icon {
    display: block;
    height: 10px;
    margin: 0;
    position: relative;
    width: 10px;
}

.jart-storefront__package .package-actions .btn-icon i {
    display: none;
}

.jart-storefront__package .package-actions .btn-icon::before {
    border-right: 2px solid currentColor;
    border-top: 2px solid currentColor;
    content: "";
    height: 8px;
    left: 50%;
    position: absolute;
    top: 50%;
    transform: translate(-65%, -50%) rotate(45deg);
    width: 8px;
}

.jart-storefront__empty {
    margin-block-start: var(--spacing-4x, 32px);
    padding: var(--ui-block-padding-lg, 32px);
    text-align: center;
}

.jart-storefront__empty[hidden] {
    display: none;
}

.jart-storefront__empty > span {
    color: var(--brand-primary, #7e9e1e);
    display: block;
    font-size: 40px;
    line-height: 1;
}

.jart-storefront__empty h3 {
    margin: var(--spacing-2x, 16px) 0 0;
}

.jart-storefront__empty p {
    margin: var(--spacing-1x, 8px) auto var(--spacing-3x, 24px);
    max-width: 520px;
}

/*
 * Lagom's left-layout sticky code can leave a stale -100dvh/+100dvh inline
 * offset on the route if the Website display rule is temporarily unavailable.
 * Keep the route reachable while every normal top-layout page remains untouched.
 */
@media (max-width: 991.98px) {
    body.page-jaydenart_storefront main.app-main {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .jart-storefront__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1199.98px) and (min-width: 768px) {
    .jart-storefront__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .jart-storefront__grid .jart-storefront__card {
        --jart-store-enter-delay: 0ms;
    }

    .jart-storefront__grid .jart-storefront__card:nth-child(2n) {
        --jart-store-enter-delay: 100ms;
    }
}

@media (max-width: 767.98px) {
    .jart-storefront__grid .jart-storefront__card {
        --jart-store-enter-delay: 0ms;
    }

    .jart-storefront__hero-art {
        height: 300px;
        margin-block-start: 0;
        max-width: calc(100% - 48px);
        width: 420px;
    }

    .jart-storefront__hero-icon {
        border-radius: 20px;
        height: 96px;
        width: 96px;
    }

    .jart-storefront__hero-icon img {
        height: 58px;
        width: 58px;
    }

    .jart-storefront__orbit--one {
        height: 240px;
        width: 240px;
    }

    .jart-storefront__orbit--two {
        height: 160px;
        width: 160px;
    }

    .jart-storefront__discovery {
        padding: var(--spacing-3x, 24px);
    }

    .jart-storefront__filter-scroller {
        margin-inline: calc(-1 * var(--spacing-1x, 8px));
        position: relative;
    }

    .jart-storefront__filter-scroller::before,
    .jart-storefront__filter-scroller::after {
        bottom: 0;
        content: "";
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        transition: opacity 180ms ease;
        width: 52px;
        z-index: 1;
    }

    .jart-storefront__filter-scroller::before {
        background: linear-gradient(to right, var(--jart-store-surface) 42%, transparent 100%);
        left: 0;
    }

    .jart-storefront__filter-scroller::after {
        background: linear-gradient(to left, var(--jart-store-surface) 42%, transparent 100%);
        right: 0;
    }

    .jart-storefront__filter-scroller.can-scroll-left::before,
    .jart-storefront__filter-scroller.can-scroll-right::after {
        opacity: 1;
    }

    .jart-storefront__filters {
        flex-wrap: nowrap;
        margin-inline: 0;
        overscroll-behavior-inline: contain;
        overflow-x: auto;
        padding: 7px 44px 8px;
        scroll-behavior: smooth;
        scroll-snap-type: inline proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .jart-storefront__filters::-webkit-scrollbar {
        display: none;
    }

    .jart-storefront__filters .btn {
        flex: 0 0 auto;
        scroll-snap-align: center;
    }

    .jart-storefront__filter-cue {
        align-items: center;
        background: transparent;
        border: 0;
        border-radius: 50%;
        color: var(--btn-primary-faded-color, #5f772e);
        display: flex;
        height: 44px;
        justify-content: center;
        opacity: 0;
        padding: 0;
        pointer-events: none;
        position: absolute;
        top: 50%;
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
        visibility: hidden;
        width: 44px;
        z-index: 3;
    }

    .jart-storefront__filter-cue--left {
        left: 4px;
        transform: translate(-8px, -50%);
    }

    .jart-storefront__filter-cue--right {
        right: 4px;
        transform: translate(8px, -50%);
    }

    .jart-storefront__filter-cue::before {
        background: var(--btn-primary-faded-bg, #eff8d1);
        border: 1px solid color-mix(in srgb, var(--brand-primary, #7e9e1e) 34%, transparent);
        border-radius: 50%;
        box-shadow: var(--box-shadow-base, 0 0 1px rgba(0, 0, 0, 0.1), 0 2px 24px rgba(0, 0, 0, 0.08));
        content: "";
        height: 34px;
        position: absolute;
        width: 34px;
    }

    .jart-storefront__filter-cue::after {
        border-right: 2px solid currentColor;
        border-top: 2px solid currentColor;
        content: "";
        height: 8px;
        left: 50%;
        position: absolute;
        top: 50%;
        width: 8px;
    }

    .jart-storefront__filter-cue--left::after {
        transform: translate(-40%, -50%) rotate(-135deg);
    }

    .jart-storefront__filter-cue--right::after {
        transform: translate(-60%, -50%) rotate(45deg);
    }

    .jart-storefront__filter-scroller.can-scroll-left .jart-storefront__filter-cue--left,
    .jart-storefront__filter-scroller.can-scroll-right .jart-storefront__filter-cue--right {
        opacity: 1;
        pointer-events: auto;
        transform: translate(0, -50%);
        visibility: visible;
    }

    .jart-storefront.is-motion-ready .jart-storefront__filter-scroller.can-scroll-left .jart-storefront__filter-cue--left::after {
        animation: jart-store-filter-arrow-left 1.55s ease-in-out infinite;
    }

    .jart-storefront.is-motion-ready .jart-storefront__filter-scroller.can-scroll-right .jart-storefront__filter-cue--right::after {
        animation: jart-store-filter-arrow-right 1.55s ease-in-out infinite;
    }

    .jart-storefront__grid {
        gap: var(--spacing-2x, 16px);
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .jart-storefront__package.package {
        column-gap: 12px;
        grid-template-columns: 72px minmax(0, 1fr) 36px;
        min-height: 136px;
        padding: var(--spacing-2x, 16px);
    }

    .jart-storefront__card-icon.package-graphic,
    .jart-storefront__card-icon.package-graphic img {
        height: 72px;
        width: 72px;
    }

    .jart-storefront__package .package-title {
        font-size: 16px;
        line-height: 22px;
    }

    .jart-storefront__package .package-box {
        width: 36px;
    }

    .jart-storefront__package .package-actions .btn {
        height: 36px;
        min-height: 36px;
        width: 36px;
    }
}

@keyframes jart-store-filter-arrow-left {
    0%,
    100% {
        transform: translate(-40%, -50%) rotate(-135deg);
    }
    50% {
        transform: translate(-70%, -50%) rotate(-135deg);
    }
}

@keyframes jart-store-filter-arrow-right {
    0%,
    100% {
        transform: translate(-60%, -50%) rotate(45deg);
    }
    50% {
        transform: translate(-30%, -50%) rotate(45deg);
    }
}

@media (max-width: 420px) {
    .jart-storefront__hero-icon--2 {
        inset-inline-end: 8px;
    }

    .jart-storefront__search input.form-control {
        padding-inline: 52px 76px;
    }
}

[dir="rtl"] .jart-storefront__search-symbol::after {
    inset-inline-end: auto;
    inset-inline-start: -5px;
    transform: rotate(-45deg);
}

@media (forced-colors: active) {
    .jart-storefront__hero-icon,
    .jart-storefront__discovery {
        border: 1px solid CanvasText;
    }

    .jart-storefront__orbit {
        border-color: CanvasText;
    }

    .jart-storefront__filter-cue {
        background: Canvas;
    }

    .jart-storefront__filter-scroller::before,
    .jart-storefront__filter-scroller::after {
        background: Canvas;
    }

    .jart-storefront__filter-cue::before,
    .jart-storefront__package .package-actions .btn {
        border: 1px solid ButtonText;
    }
}

@media (prefers-reduced-motion: reduce) {
    .jart-storefront *,
    .jart-storefront *::before,
    .jart-storefront *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .jart-storefront__hero-icon,
    .jart-storefront__card-icon,
    .jart-storefront__filter-cue::after {
        animation: none !important;
    }

}
