.storefront {
    --store-brand: #a02317;
    --store-brand-dark: #7f1b12;
    --store-ink: #241f1d;
    --store-muted: #6f6762;
    --store-line: #e5ded7;
    --store-surface: #fffdfa;
    --store-surface-strong: #ffffff;
    --store-bg: #f7f1eb;
    --store-focus: #a02317;
    --store-success: #2f7a4d;
    --store-success-soft: #edf8f1;
    --store-shadow: 0 18px 50px rgba(36, 31, 29, 0.09);
    margin: 0;
    min-height: 100vh;
    min-width: 0;
    display: flex;
    flex-direction: column;
    background: var(--store-bg);
    color: var(--store-ink);
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
}

.storefront * {
    box-sizing: border-box;
}

.storefront img {
    max-width: 100%;
    height: auto;
}

.storefront a {
    color: inherit;
}

.storefront :focus-visible {
    outline: 3px solid var(--store-focus);
    outline-offset: 3px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: 8px;
    z-index: 20;
    transform: translateY(-160%);
    border-radius: 6px;
    background: var(--store-brand);
    color: #fff;
    padding: 10px 14px;
    text-decoration: none;
}

.skip-link:focus {
    transform: translateY(0);
}

.store-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid rgba(229, 222, 215, 0.9);
    background: rgba(255, 253, 250, 0.96);
    backdrop-filter: blur(14px);
}

.store-header__inner,
.store-main,
.store-footer__inner {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.store-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.store-brand {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    text-decoration: none;
}

.store-brand img,
.store-auth-brand img {
    display: block;
    object-fit: contain;
}

.store-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: auto;
}

.store-nav a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    border-radius: 6px;
    padding: 0 13px;
    color: var(--store-muted);
    font-weight: 700;
    text-decoration: none;
}

.store-nav a:hover,
.store-nav a.is-active {
    color: var(--store-brand);
    background: #f1e6df;
}

.store-button {
    min-height: 44px;
    border: 1px solid var(--store-brand);
    border-radius: 6px;
    background: var(--store-brand);
    color: #fff !important;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    font: inherit;
    font-weight: 800;
    text-decoration: none;
}

.store-button:hover {
    background: var(--store-brand-dark);
    border-color: var(--store-brand-dark);
    color: #fff !important;
}

.store-button--secondary {
    border-color: var(--store-line);
    background: var(--store-surface-strong);
    color: var(--store-ink) !important;
}

.store-button--secondary:hover {
    border-color: var(--store-brand);
    background: #f8eee8;
    color: var(--store-brand) !important;
}

.store-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    margin-left: auto;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface-strong);
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
}

.store-menu-toggle__line {
    width: 20px;
    height: 2px;
    background: var(--store-ink);
}

.store-main {
    flex: 1 0 auto;
    padding: 34px 0 64px;
}

.store-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 40px;
    align-items: center;
    min-height: 420px;
    padding: 48px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface);
    box-shadow: var(--store-shadow);
}

.store-eyebrow {
    margin: 0 0 10px;
    color: var(--store-brand);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.store-hero h1,
.store-page-heading h1,
.product-detail h1 {
    margin: 0;
    color: var(--store-ink);
    font-size: 2.55rem;
    line-height: 1.08;
}

.store-hero p:not(.store-eyebrow),
.store-page-heading p,
.product-detail__description p {
    color: var(--store-muted);
    font-size: 1.04rem;
}

.store-hero__content {
    max-width: 620px;
}

.store-hero__content .store-button {
    margin-top: 14px;
}

.store-hero__covers {
    min-height: 330px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: end;
    gap: 12px;
}

.store-hero-book {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 230px;
    border: 1px solid var(--store-line);
    border-radius: 7px;
    background: #f0e7de;
    box-shadow: 0 14px 28px rgba(36, 31, 29, 0.14);
    color: var(--store-muted);
    font-weight: 800;
    overflow: hidden;
    text-align: center;
    text-decoration: none;
}

.store-hero-book img {
    width: 100%;
    height: 100%;
    aspect-ratio: 7 / 10;
    object-fit: cover;
}

.store-hero-book--2 {
    transform: translateY(-24px);
}

.store-section,
.store-trust,
.store-page-heading,
.product-toolbar,
.store-panel,
.product-detail,
.order-card,
.store-empty {
    margin-top: 34px;
}

.store-section__header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.store-section__header h2,
.store-trust h2,
.store-empty h2,
.product-detail__description h2,
.order-card h2 {
    margin: 0;
    color: var(--store-ink);
    font-size: 1.55rem;
    line-height: 1.2;
}

.store-text-link,
.product-card__link,
.store-auth-actions a,
.store-auth-link {
    color: var(--store-brand);
    font-weight: 800;
    text-decoration: none;
}

.store-text-link:hover,
.product-card__link:hover,
.store-auth-actions a:hover,
.store-auth-link:hover {
    text-decoration: underline;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    position: relative;
    display: flex;
    min-width: 0;
    flex-direction: column;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface-strong);
    overflow: hidden;
}

.product-card__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 3;
}

.favorite-form {
    margin: 0;
}

.favorite-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--store-line);
    border-radius: 9px;
    background: var(--store-surface-strong);
    color: var(--store-muted);
    cursor: pointer;
    font: inherit;
    box-shadow: 0 4px 12px rgba(36, 31, 29, 0.14);
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease, transform 160ms ease;
}

.favorite-button i {
    font-size: 1.35rem;
}

.favorite-button:hover,
.favorite-button:focus-visible,
.favorite-button.is-favorite {
    border-color: var(--store-brand);
    color: var(--store-brand);
}

.favorite-button:hover {
    transform: translateY(-1px);
}

.favorite-button.is-favorite {
    background: #fff4f2;
}

.favorite-button[aria-busy="true"] {
    cursor: wait;
    opacity: 0.62;
}

.favorite-form--text .favorite-button {
    width: auto;
    min-width: 172px;
    border-radius: 8px;
    gap: 8px;
    padding: 0 16px;
    box-shadow: none;
    font-weight: 800;
}

.product-card--unavailable {
    opacity: 0.76;
}

.product-card--unavailable .product-card__media img {
    filter: grayscale(0.55);
}

.product-card__availability {
    width: fit-content;
    display: inline-flex;
    border: 1px solid var(--store-line);
    border-radius: 5px;
    background: var(--store-bg);
    color: var(--store-muted);
    padding: 4px 7px;
    font-size: 0.7rem;
    font-weight: 850;
}

.store-account {
    position: relative;
    flex: 0 1 auto;
}

.store-account__trigger {
    min-height: 48px;
    max-width: 210px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid transparent;
    border-radius: 8px;
    background: transparent;
    color: var(--store-ink);
    cursor: pointer;
    padding: 5px 8px;
    font: inherit;
    text-align: left;
}

.store-account__trigger:hover,
.store-account__trigger.is-active,
.store-account__trigger[aria-expanded="true"] {
    border-color: var(--store-line);
    background: var(--store-surface-strong);
}

.store-account__avatar {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #f1e6df;
    color: var(--store-brand);
    font-size: 1.2rem;
}

.store-account__identity {
    min-width: 0;
    display: grid;
    line-height: 1.15;
}

.store-account__identity small {
    color: var(--store-muted);
    font-size: 0.68rem;
    font-weight: 700;
}

.store-account__identity strong {
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-account__chevron {
    flex: 0 0 auto;
    color: var(--store-muted);
    font-size: 1.15rem;
    transition: transform 160ms ease;
}

.store-account__trigger[aria-expanded="true"] .store-account__chevron {
    transform: rotate(180deg);
}

.store-account__menu {
    position: absolute;
    top: calc(100% + 9px);
    right: 0;
    z-index: 20;
    width: 228px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface-strong);
    padding: 6px;
    box-shadow: var(--store-shadow);
}

.store-account__menu[hidden] {
    display: none;
}

.store-account__menu a,
.store-account__logout button {
    width: 100%;
    min-height: 44px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: var(--store-ink);
    cursor: pointer;
    padding: 0 11px;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 750;
    text-decoration: none;
    text-align: left;
}

.store-account__menu a:hover,
.store-account__menu a.is-active,
.store-account__logout button:hover {
    background: #f6eee9;
    color: var(--store-brand);
}

.store-account__menu i {
    width: 20px;
    color: var(--store-muted);
    font-size: 1.2rem;
    text-align: center;
}

.store-account__menu a:hover i,
.store-account__menu a.is-active i,
.store-account__logout button:hover i {
    color: var(--store-brand);
}

.store-account__count {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    border-radius: 11px;
    background: #f1e6df;
    color: var(--store-brand);
    font-size: 0.7rem;
}

.store-account__logout {
    margin: 5px 0 0;
    border-top: 1px solid var(--store-line);
    padding-top: 5px;
}

.product-card__media-wrap {
    position: relative;
    flex: 0 0 auto;
}

.package-page-heading {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    overflow: hidden;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: linear-gradient(120deg, var(--store-surface-strong) 0%, #f7eee8 100%);
    padding: 30px 34px;
    max-width: 100% !important;
    margin-bottom: 1.25rem;
}

.package-page-heading > div {
    position: relative;
    z-index: 1;
}

.package-page-heading__mark {
    width: 92px;
    height: 92px;
    flex: 0 0 92px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(142, 54, 48, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.64);
    color: var(--store-brand);
    font-size: 2.8rem;
    transform: rotate(-7deg);
}

.package-product-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 6px;
    background: rgba(36, 31, 29, 0.78);
    color: #fff;
    padding: 7px 9px;
    font-size: 0.74rem;
    font-weight: 800;
    backdrop-filter: blur(8px);
}

.package-cover-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(145deg, #eee3d9, #f8f2ed);
    color: var(--store-brand);
}

.package-cover-placeholder i {
    font-size: 4.8rem;
}

.package-cover-placeholder small {
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.package-detail {
    display: grid;
    gap: 28px;
}

.package-detail__hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 290px;
    gap: 34px;
    align-items: center;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: linear-gradient(125deg, var(--store-surface-strong), #f6ebe5);
    padding: 34px;
}

.package-detail__intro h1 {
    margin: 6px 0 12px;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
}

.package-detail__intro > p:not(.store-eyebrow) {
    max-width: 690px;
    color: var(--store-muted);
    line-height: 1.7;
}

.package-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    margin-top: 20px;
}

.package-detail__meta span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: var(--store-ink);
    font-size: 0.8rem;
    font-weight: 750;
}

.package-detail__meta i {
    color: var(--store-success);
    font-size: 1.15rem;
}

.package-detail__purchase {
    display: grid;
    border: 1px solid rgba(142, 54, 48, 0.18);
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.82);
    padding: 24px;
}

.package-detail__purchase small {
    color: var(--store-muted);
    font-weight: 700;
}

.package-detail__purchase > strong {
    margin: 3px 0 18px;
    color: var(--store-brand);
    font-size: 1.7rem;
}

.package-detail__purchase .store-button {
    width: 100%;
}

.package-detail__contents {
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: var(--store-surface-strong);
    padding: 28px;
}

.package-detail__section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.package-detail__section-heading h2 {
    margin: 4px 0 0;
}

.package-detail__section-heading > span {
    color: var(--store-muted);
    font-size: 0.8rem;
    font-weight: 750;
}

.store-toast {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 50;
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid var(--store-line);
    border-left: 4px solid var(--store-success);
    border-radius: 8px;
    background: var(--store-surface-strong);
    color: var(--store-ink);
    padding: 12px 16px;
    box-shadow: var(--store-shadow);
    font-size: 0.88rem;
    font-weight: 750;
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
    transition: opacity 160ms ease, transform 160ms ease;
}

.store-toast.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.store-toast.is-error {
    border-left-color: var(--store-brand);
}

.product-card__media {
    display: flex;
    aspect-ratio: 7 / 10;
    align-items: center;
    justify-content: center;
    background: #eee3d9;
    overflow: hidden;
    text-decoration: none;
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__placeholder,
.product-detail__placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 220px;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--store-muted);
    font-weight: 900;
    text-align: center;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.product-card h3 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.28;
}

.product-card h3 a {
    text-decoration: none;
}

.product-card p {
    margin: 0;
    color: var(--store-muted);
    font-size: 0.92rem;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.product-card__price,
.product-detail__price {
    color: var(--store-brand);
    font-weight: 900;
}

.product-cart-control {
    position: relative;
    min-height: 44px;
    margin-top: 4px;
}

.product-cart-control button {
    height: 44px;
    border: 0;
    cursor: pointer;
    font: inherit;
}

.product-cart-control button:disabled {
    cursor: wait;
    opacity: 0.62;
}

.product-cart-control__add {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 7px;
    background: var(--store-brand);
    color: #fff;
}

.product-cart-control__add:hover {
    background: var(--store-brand-dark);
}

.product-cart-control__add i {
    font-size: 1.28rem;
}

.product-cart-control__stepper {
    display: none;
    height: 44px;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--store-brand);
    border-radius: 7px;
    background: #f8eee8;
    color: var(--store-brand);
    box-shadow: 0 7px 18px rgba(160, 35, 23, 0.1);
}

.product-cart-control.has-quantity .product-cart-control__add {
    display: none;
}

.product-cart-control.has-quantity .product-cart-control__stepper {
    display: flex;
}

.product-cart-control__stepper button {
    width: 44px;
    padding: 0;
    overflow: hidden;
    background: #f8eee8;
    color: var(--store-brand);
    opacity: 1;
    transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.product-cart-control__stepper strong {
    min-width: 48px;
    padding: 0 12px;
    font-size: 1rem;
    text-align: center;
    color: var(--store-brand);
}

.product-cart-control__stepper button:hover {
    background: #f1ded3;
    color: var(--store-brand-dark);
    box-shadow: inset 0 0 0 1px rgba(160, 35, 23, 0.16), 0 5px 14px rgba(127, 27, 18, 0.16);
    transform: translateY(-1px) scale(1.04);
}

.product-cart-control__stepper button:active {
    box-shadow: none;
    transform: translateY(0) scale(0.96);
}

.product-cart-control__trash {
    display: none;
    margin: auto;
    font-size: 1.16rem;
}

.product-cart-control.is-single .product-cart-control__minus {
    display: none;
}

.product-cart-control.is-single .product-cart-control__trash {
    display: block;
}

.product-cart-control.is-updating {
    opacity: 0.75;
}

.product-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface);
}

.product-search {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(160px, 210px);
    gap: 14px;
    align-items: end;
    flex: 1;
}

.store-field,
.product-search__field,
.product-search__sort {
    display: grid;
    gap: 7px;
}

.product-search__sort .select2-container {
    width: 100% !important;
}

.product-search__sort .select2-container .select2-selection--single {
    height: 46px;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface-strong);
}

.product-search__sort .select2-container .select2-selection--single .select2-selection__rendered {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 42px 0 13px;
    color: var(--store-ink);
    line-height: 1.2;
}

.product-search__sort .select2-container .select2-selection--single .select2-selection__arrow {
    width: 38px;
    height: 44px;
}

.product-search__sort .select2-container--focus .select2-selection--single,
.product-search__sort .select2-container--open .select2-selection--single {
    border-color: var(--store-brand);
    box-shadow: 0 0 0 3px rgba(160, 35, 23, 0.12);
}

.store-select2-dropdown {
    overflow: hidden;
    border: 1px solid var(--store-line) !important;
    border-radius: 6px !important;
    background: var(--store-surface-strong);
    box-shadow: 0 14px 34px rgba(36, 31, 29, 0.14);
}

.store-select2-dropdown .select2-results__option {
    padding: 10px 13px;
    color: var(--store-ink);
}

.store-select2-dropdown .select2-results__option--highlighted[aria-selected] {
    background: var(--store-brand);
    color: #fff;
}

.store-field label,
.product-search label {
    color: var(--store-ink);
    font-size: 0.9rem;
    font-weight: 800;
}

.store-field input,
.product-search input,
.product-search select {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface-strong);
    color: var(--store-ink);
    font: inherit;
    padding: 0 12px;
}

.product-count {
    margin: 0;
    color: var(--store-muted);
    font-weight: 800;
    white-space: nowrap;
}

.product-results {
    position: relative;
    min-height: 260px;
    margin-top: 1.5rem;
}

.product-results.is-loading {
    cursor: progress;
}

.product-results-error {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    border: 1px solid #ead2ca;
    border-left: 4px solid var(--store-brand);
    border-radius: 8px;
    background: #fff8f6;
    color: var(--store-ink);
    padding: 16px 18px;
}

.product-results-error p {
    margin: 0;
    color: var(--store-muted);
}

.product-results-error button {
    min-height: 44px;
    border: 1px solid var(--store-brand);
    border-radius: 6px;
    background: var(--store-brand);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 800;
    padding: 0 16px;
}

.product-results-error button:hover,
.product-results-error button:focus-visible {
    background: var(--store-brand-dark);
    border-color: var(--store-brand-dark);
}

.product-skeleton-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.product-skeleton-card {
    min-width: 0;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface);
    overflow: hidden;
}

.product-skeleton-cover {
    aspect-ratio: 7 / 10;
    background: #eee3d9;
}

.product-skeleton-body {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.product-skeleton-line {
    height: 12px;
    border-radius: 999px;
    background: #eee3d9;
}

.product-skeleton-line--title {
    width: 78%;
    height: 16px;
}

.product-skeleton-line--short {
    width: 48%;
}

.product-skeleton-cover,
.product-skeleton-line {
    animation: product-skeleton-pulse 1.1s ease-in-out infinite alternate;
}

.store-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.store-pagination a {
    min-width: 44px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface-strong);
    color: var(--store-ink);
    font-weight: 800;
    padding: 0 12px;
    text-decoration: none;
}

.store-pagination a.is-active {
    border-color: var(--store-brand);
    background: var(--store-brand);
    color: #fff;
}

.store-pagination a.is-disabled {
    opacity: 0.45;
    pointer-events: none;
}

.store-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--store-muted);
    font-size: 0.92rem;
}

.store-breadcrumb a {
    color: var(--store-brand);
    font-weight: 800;
    text-decoration: none;
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(280px, 460px) minmax(0, 1fr);
    gap: 42px;
    align-items: start;
}

.product-detail__cover {
    aspect-ratio: 7 / 10;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #eee3d9;
    overflow: hidden;
    box-shadow: var(--store-shadow);
}

.product-detail__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__image-link {
    display: block;
    width: 100%;
    height: 100%;
    cursor: zoom-in;
}

.product-detail__image-link img {
    display: block;
}

.product-gallery {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
    margin-top: 12px;
}

.product-gallery__item {
    aspect-ratio: 7 / 10;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface);
    overflow: hidden;
    cursor: zoom-in;
}

.product-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__content {
    padding: 12px 0;
}

.product-detail__price {
    margin: 18px 0 26px;
    font-size: 1.6rem;
}

.product-detail__description {
    padding: 22px 0;
    border-top: 1px solid var(--store-line);
    border-bottom: 1px solid var(--store-line);
}

.product-detail__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.product-detail__cart-form {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-detail__quantity {
    display: grid;
    grid-template-columns: 44px 52px 44px;
    min-height: 44px;
    overflow: hidden;
    border: 1px solid var(--store-brand);
    border-radius: 7px;
    background: #f8eee8;
    box-shadow: 0 7px 18px rgb(160 35 23 / 10%);
}

.product-detail__quantity button {
    width: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    font-weight: 800;
}

.product-detail__quantity button:hover,
.product-detail__quantity button:focus-visible {
    background: #f1ded3;
    color: var(--store-brand-dark);
    outline: none;
}

.product-detail__quantity input {
    width: 52px;
    min-height: 42px;
    padding: 0 4px;
    border: 0;
    border-right: 1px solid rgb(160 35 23 / 18%);
    border-left: 1px solid rgb(160 35 23 / 18%);
    border-radius: 0;
    background: transparent;
    color: var(--store-brand);
    font: inherit;
    font-weight: 800;
    text-align: center;
    -moz-appearance: textfield;
}

.product-detail__quantity input::-webkit-outer-spin-button,
.product-detail__quantity input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.product-detail__actions p {
    margin: 0;
    color: var(--store-muted);
}

.store-trust {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 26px;
    padding: 28px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface);
}

.store-trust ul {
    display: grid;
    gap: 10px;
    margin: 0;
    padding-left: 20px;
    color: var(--store-muted);
}

.store-page-heading {
    max-width: 760px;
}

.store-panel,
.store-empty,
.order-card {
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-surface);
    padding: 24px;
}

.store-panel--narrow {
    max-width: 560px;
}

.account-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 0 0 22px;
}

.account-list div {
    min-width: 0;
}

.account-list dt {
    color: var(--store-muted);
    font-size: 0.88rem;
    font-weight: 800;
}

.account-list dd {
    margin: 4px 0 0;
    color: var(--store-ink);
    font-weight: 800;
}

.store-form {
    display: grid;
    gap: 18px;
}

.store-form-actions,
.store-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.store-field-error {
    color: var(--store-brand);
    font-size: 0.88rem;
    font-weight: 800;
}

.storefront-auth {
    min-height: 100vh;
    background: #f5eee9;
}

.storefront-auth .store-auth-shell {
    width: 100%;
    max-width: none;
    min-height: 100vh;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(24px, 4vw, 56px);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: linear-gradient(135deg, #fbf8f6 0%, #f4ece6 100%);
}

.storefront-auth .store-auth-shell::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.9;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 900'%3E%3Cpath fill='none' stroke='%23a0231718' stroke-width='2' d='M120 140c180-80 330 90 510 10s290-140 470-30 280 90 420-40'/%3E%3Cpath fill='%23a0231708' d='M-80 220c170-70 340 60 520-20s260-150 470-50 360 120 690-20v770H-80z'/%3E%3Cpath fill='%23a0231712' d='M-120 640c220-120 430 100 650 0s360-180 560-80 330 90 510-20v380H-120z'/%3E%3Cpath fill='none' stroke='%23a0231715' stroke-width='1.5' d='M180 760c180-140 420-40 620-130s320-170 560-90'/%3E%3C/svg%3E") center / cover no-repeat;
}

.store-auth-main {
    width: min(100%, 520px);
    max-width: 520px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.store-auth-brand {
    display: flex;
    justify-content: center;
    margin: 0 0 24px;
}

.store-auth-brand__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: min(300px, 70vw);
    min-height: 118px;
    padding: 20px 26px;
    border-radius: 28px;
    background: linear-gradient(135deg, #fef6f5 0%, #fffefe 100%);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.6),
    0 12px 32px rgba(160, 35, 23, 0.24);
    text-decoration: none;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.store-auth-brand__link:hover,
.store-auth-brand__link:focus-visible {
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.78),
    0 20px 48px rgba(160, 35, 23, 0.3);
    transform: translateY(-2px);
}

.store-auth-brand__logo {
    display: block;
    width: 100%;
    height: auto;
}

.store-auth-panel {
    width: 100%;
}

.store-auth-card {
    max-width: 560px;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 36px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 40px 120px rgba(44, 31, 25, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(24px);
    overflow: hidden;
    animation: store-auth-card-in 0.45s ease both;
}

.store-auth-card__body {
    padding: clamp(30px, 5vw, 48px);
}

.store-auth-card__header {
    padding-bottom: 22px;
    margin-bottom: 6px;
    border-bottom: 1px solid var(--store-line);
}

.store-auth-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--store-brand);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.store-auth-kicker::before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--store-brand);
    box-shadow: 0 0 0 5px rgba(160, 35, 23, 0.11);
}

.store-auth-title {
    margin: 0;
    color: var(--store-ink);
    font-size: clamp(2rem, 4vw, 2.7rem);
    font-weight: 800;
    line-height: 1.05;
}

.store-auth-subtitle {
    margin: 10px 0 0;
    color: var(--store-muted);
    font-size: 0.96rem;
    line-height: 1.55;
}

.store-auth-form {
    display: grid;
    gap: 18px;
    margin-top: 24px;
}

.store-auth-field {
    display: grid;
    gap: 8px;
}

.store-auth-field label {
    margin: 0;
    color: #302925;
    font-size: 0.86rem;
    font-weight: 800;
}

.store-auth-input {
    position: relative;
}

.store-auth-input input {
    width: 100%;
    min-height: 56px;
    border: 1px solid var(--store-line);
    border-radius: 18px;
    background: #fff;
    color: var(--store-ink);
    font: inherit;
    font-size: 1rem;
    padding: 0.9rem 1.05rem;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    transition: border-color 0.16s ease,
    box-shadow 0.16s ease,
    background-color 0.16s ease;
}

.store-auth-input input:hover {
    border-color: #d9c8c0;
}

.store-auth-input input:focus {
    border-color: var(--store-brand);
    box-shadow: 0 0 0 4px rgba(160, 35, 23, 0.18);
    outline: 0;
}

.store-auth-input input:-webkit-autofill,
.store-auth-input input:-webkit-autofill:hover,
.store-auth-input input:-webkit-autofill:focus,
.store-auth-input input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
    box-shadow: 0 0 0 1000px #fff inset !important;
    -webkit-text-fill-color: var(--store-ink) !important;
    caret-color: var(--store-ink);
}

.store-auth-input--password input {
    padding-right: 5.35rem;
}

.store-auth-password-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    min-width: 64px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: #f6e7e4;
    color: var(--store-brand);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0 12px;
    transition: background-color 0.16s ease, color 0.16s ease;
}

.store-auth-password-toggle:hover,
.store-auth-password-toggle:focus-visible {
    background: var(--store-brand);
    color: #fff;
}

.store-auth-actions,
.store-auth-actions--split {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 10px;
}

.store-auth-button {
    min-height: 50px;
    border: 1px solid var(--store-brand);
    border-radius: 999px;
    background: var(--store-brand);
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.35rem;
    font: inherit;
    font-size: 0.94rem;
    font-weight: 900;
    text-decoration: none;
    transition: border-color 0.16s ease, background-color 0.16s ease, box-shadow 0.16s ease;
}

.store-auth-button:hover,
.store-auth-button:focus-visible {
    border-color: var(--store-brand-dark);
    background: var(--store-brand-dark);
    box-shadow: 0 0 0 4px rgba(160, 35, 23, 0.18);
}

.store-auth-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
}

.store-welcome-actions {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.store-welcome-option {
    display: grid;
    gap: 5px;
    min-height: 92px;
    align-content: center;
    border: 1px solid var(--store-line);
    border-radius: 18px;
    background: #fff;
    color: var(--store-ink);
    padding: 18px 20px;
    text-decoration: none;
    transition: border-color 0.16s ease, box-shadow 0.16s ease, transform 0.16s ease;
}

.store-welcome-option:hover,
.store-welcome-option:focus-visible {
    border-color: var(--store-brand);
    box-shadow: 0 18px 42px rgba(44, 31, 25, 0.11);
    transform: translateY(-2px);
}

.store-welcome-option span {
    color: inherit;
    font-size: 1.02rem;
    font-weight: 900;
}

.store-welcome-option small {
    color: var(--store-muted);
    font-size: 0.9rem;
    line-height: 1.45;
}

.store-welcome-option--primary {
    border-color: rgba(160, 35, 23, 0.28);
    background: #fff8f6;
    color: var(--store-brand);
}

.store-welcome-option--primary small {
    color: #6f655f;
}

.store-auth-footer {
    margin: 24px 0 0;
    color: #8a7e76;
    font-size: 0.86rem;
    text-align: center;
}

.store-alert {
    display: grid;
    gap: 3px;
    margin-bottom: 18px;
    border: 1px solid var(--store-line);
    border-left: 4px solid var(--store-brand);
    border-radius: 8px;
    background: var(--store-surface-strong);
    padding: 13px 16px;
}

.storefront-auth .store-alert {
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 50px rgba(44, 31, 25, 0.08);
}

.store-alert--error {
    border-left-color: #8d1a12;
}

.store-alert--success {
    border-left-color: #2f7a4d;
}

.store-alert--warning {
    border-left-color: #b56814;
}

.orders-list {
    display: grid;
    gap: 18px;
}

.order-card__header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.order-card__header p {
    margin: 4px 0 0;
    color: var(--store-muted);
}

.order-card__status {
    display: grid;
    justify-items: end;
    gap: 4px;
}

.order-status-badge {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 5px 11px;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
    white-space: nowrap;
}

.order-status-badge i {
    font-size: 1.05rem;
}

.order-status-badge--warning {
    border-color: #ead19d;
    background: #fff5dc;
    color: #865b08;
}

.order-status-badge--info {
    border-color: #bdd9e8;
    background: #edf7fc;
    color: #23627f;
}

.order-status-badge--success {
    border-color: #b9dcc7;
    background: #edf8f1;
    color: #267144;
}

.order-status-badge--danger {
    border-color: #e9bbb6;
    background: #fff0ee;
    color: #9a3025;
}

.order-status-badge--neutral {
    border-color: var(--store-line);
    background: #f4f0ec;
    color: var(--store-muted);
}

.order-card__status strong {
    color: var(--store-brand);
    font-size: 1.1rem;
}

.order-retry-button {
    min-width: 180px;
}

.order-card__actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.order-card__actions form {
    margin: 0;
}

.order-cancel-button {
    min-height: 44px;
    border: 1px solid rgba(142, 54, 48, 0.38);
    border-radius: 6px;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    padding: 0 16px;
    font: inherit;
    font-weight: 800;
}

.order-cancel-button:hover,
.order-cancel-button:focus-visible {
    border-color: var(--store-brand);
    background: #f8eee8;
}

.order-card__locked-note {
    display: flex;
    align-items: center;
    gap: 7px;
    margin: 18px 0 0;
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 700;
}

.customer-order-edit {
    display: grid;
    gap: 22px;
}

.customer-order-edit__header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.customer-order-edit__header h1 {
    margin: 4px 0 6px;
}

.customer-order-edit__header > div:last-child {
    display: grid;
    justify-items: end;
    color: var(--store-muted);
}

.customer-order-edit__header strong {
    color: var(--store-brand);
    font-size: 1.35rem;
}

.customer-order-edit__items {
    display: grid;
    gap: 12px;
}

.customer-order-edit__row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 150px 46px;
    gap: 12px;
    align-items: end;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: var(--store-bg);
    padding: 14px;
}

.customer-order-edit label {
    display: grid;
    gap: 7px;
    color: var(--store-ink);
    font-size: 0.8rem;
    font-weight: 800;
}

.customer-order-edit__quantity {
    display: grid;
    gap: 7px;
    color: var(--store-ink);
    font-size: 0.8rem;
    font-weight: 800;
}

.customer-order-edit select,
.customer-order-edit input {
    width: 100%;
    min-height: 44px;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    background: var(--store-surface-strong);
    color: var(--store-ink);
    padding: 0 11px;
    font: inherit;
}

.customer-order-edit__stepper {
    display: grid;
    grid-template-columns: 42px minmax(52px, 1fr) 42px;
    min-height: 44px;
    overflow: hidden;
    border: 1px solid var(--store-line);
    border-radius: 7px;
    background: var(--store-surface-strong);
}

.customer-order-edit__stepper button {
    border: 0;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    font: inherit;
    font-size: 1.2rem;
    font-weight: 800;
}

.customer-order-edit__stepper button:hover,
.customer-order-edit__stepper button:focus-visible {
    background: color-mix(in srgb, var(--store-brand) 8%, transparent);
    outline: none;
}

.customer-order-edit__stepper input {
    min-height: 42px;
    padding: 0 4px;
    border-width: 0 1px;
    border-radius: 0;
    text-align: center;
    -moz-appearance: textfield;
}

.customer-order-edit__stepper input::-webkit-outer-spin-button,
.customer-order-edit__stepper input::-webkit-inner-spin-button {
    margin: 0;
    -webkit-appearance: none;
}

.customer-order-edit__remove {
    display: grid;
    width: 44px;
    min-height: 44px;
    border: 1px solid var(--store-line);
    border-radius: 7px;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    font-size: 1.25rem;
    place-items: center;
}

.customer-order-edit__remove:hover,
.customer-order-edit__remove:focus-visible {
    border-color: color-mix(in srgb, var(--store-brand) 35%, var(--store-line));
    background: color-mix(in srgb, var(--store-brand) 8%, transparent);
    outline: none;
}

.customer-order-edit__add {
    margin-top: 12px;
}

.customer-order-edit__discount {
    display: grid;
    width: min(100%, 580px);
    gap: 8px;
    text-align: left;
    align-self: baseline;
}

.customer-order-edit__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(290px, 380px);
    gap: 28px;
    align-items: end;
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--store-line);
}

.customer-order-edit__discount-controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
}

.customer-order-edit__discount-controls .store-button,
.customer-order-edit__discount-remove {
    min-height: 44px;
    white-space: nowrap;
}

.customer-order-edit__discount-remove {
    padding: 0 12px;
    border: 0;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
}

.customer-order-edit__discount-remove:hover,
.customer-order-edit__discount-remove:focus-visible {
    text-decoration: underline;
    outline: none;
}

.customer-order-edit__discount small {
    color: var(--store-muted);
    font-weight: 600;
}

.customer-order-edit__discount small.is-error {
    color: var(--store-brand);
}

.customer-order-edit__discount small.is-success {
    color: var(--store-success, #20845b);
}

.customer-order-edit__totals {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 16px 18px;
    border: 1px solid var(--store-line);
    border-radius: 9px;
    background: var(--store-bg);
}

.customer-order-edit__totals > div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
}

.customer-order-edit__totals dt,
.customer-order-edit__totals dd {
    margin: 0;
}

.customer-order-edit__totals dt small {
    display: block;
    margin-top: 2px;
    color: var(--store-muted);
    font-size: 0.72rem;
}

.customer-order-edit__discount-total {
    color: var(--store-success, #20845b);
}

.customer-order-edit__grand-total {
    padding-top: 10px;
    border-top: 1px solid var(--store-line);
    color: var(--store-brand);
    font-size: 1.08rem;
    font-weight: 900;
}

.customer-order-edit.is-calculating .customer-order-edit__totals {
    opacity: 0.58;
}

.customer-order-edit .is-hidden {
    display: none;
}

.customer-order-edit__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
    justify-self: end;
}

.cart-discount-form {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.cart-warning {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.cart-warning form {
    flex: 0 0 auto;
    margin: 0;
}

.cart-discount-form label {
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.cart-discount-form input {
    min-height: 44px;
    border: 1px solid var(--store-line);
    border-radius: 6px;
    padding: 0 12px;
    font: inherit;
    text-transform: uppercase;
}

.order-items {
    display: grid;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.order-items__row {
    display: grid;
    grid-template-columns: minmax(140px, 1fr) 80px 120px 120px;
    gap: 12px;
    padding: 12px 14px;
    border-top: 1px solid var(--store-line);
}

.order-items__row:first-child {
    border-top: 0;
}

.order-items__row--head {
    background: #f3ebe4;
    color: var(--store-muted);
    font-size: 0.88rem;
    font-weight: 900;
}

.store-footer {
    border-top: 1px solid var(--store-line);
    background: var(--store-surface);
}

.store-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
    color: var(--store-muted);
    font-size: 0.92rem;
}

.store-footer__signature {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--store-muted);
    text-decoration: none;
}

.store-footer__signature:hover {
    color: var(--store-brand);
}

.store-footer__signature img {
    width: 120px;
    height: auto;
    flex: 0 0 auto;
}

.store-footer__signature span {
    font-weight: 700;
}

@keyframes store-auth-card-in {
    0% {
        opacity: 0;
        transform: translateY(24px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes product-skeleton-pulse {
    0% {
        opacity: 0.55;
    }
    100% {
        opacity: 1;
    }
}

.store-cart-link {
    position: relative;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 7px 12px 7px 10px;
    background: var(--store-surface-strong);
    color: var(--store-ink);
    text-decoration: none;
    font: inherit;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.cart-topbar {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 12;
    width: 100%;
    border-top: 1px solid rgba(229, 222, 215, 0.8);
    border-bottom: 1px solid var(--store-line);
    background: rgba(255, 255, 255, 0.985);
    box-shadow: 0 24px 54px rgba(36, 31, 29, 0.14);
    opacity: 0;
    transform: translateY(-14px) scaleY(0.985);
    transform-origin: top center;
    visibility: hidden;
    transition: opacity 280ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 340ms cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s linear 340ms;
    will-change: opacity, transform;
}

.cart-topbar.is-open {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    visibility: visible;
    transition-delay: 0s;
}

.cart-topbar__inner {
    width: min(980px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 34px;
}

.cart-topbar__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 14px;
}

.cart-topbar__heading h2 {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.1;
}

.cart-topbar__items {
    display: grid;
}

.cart-topbar__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 18px;
    align-items: center;
    min-height: 96px;
    border-top: 1px solid var(--store-line);
    color: var(--store-ink);
    text-decoration: none;
}

.cart-topbar__item:hover .cart-topbar__item-info strong {
    color: var(--store-brand);
}

.cart-topbar__media {
    width: 64px;
    height: 78px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border-radius: 7px;
    background: #f2ebe5;
    color: var(--store-muted);
}

.cart-topbar__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-topbar__item-info {
    min-width: 0;
    display: grid;
    gap: 5px;
}

.cart-topbar__item-info strong {
    overflow: hidden;
    font-size: 0.95rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-topbar__item-info small {
    color: var(--store-muted);
    font-size: 0.8rem;
}

.cart-topbar__item-total {
    color: var(--store-brand);
    font-size: 0.96rem;
    font-weight: 900;
    white-space: nowrap;
}

.cart-topbar__empty {
    min-height: 130px;
    display: flex;
    align-items: center;
    gap: 18px;
    border-top: 1px solid var(--store-line);
}

.cart-topbar__empty > i {
    color: var(--store-brand);
    font-size: 2rem;
}

.cart-topbar__empty h2,
.cart-topbar__empty p {
    margin: 0;
}

.cart-topbar__empty h2 {
    font-size: 1.1rem;
}

.cart-topbar__empty p,
.cart-topbar__more {
    color: var(--store-muted);
    font-size: 0.82rem;
}

.cart-topbar__totals,
.order-card__totals {
    display: grid;
    width: min(100%, 430px);
    gap: 0;
    margin: 20px 0 0 auto;
    padding: 8px 18px;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: var(--store-surface);
}

.cart-topbar__totals div,
.order-card__totals div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-height: 44px;
    border-bottom: 1px solid var(--store-line);
}

.cart-topbar__totals div:last-child,
.order-card__totals div:last-child {
    border-bottom: 0;
}

.cart-topbar__totals dt,
.order-card__totals dt {
    display: grid;
    gap: 1px;
    color: var(--store-muted);
    font-size: 0.88rem;
}

.cart-topbar__totals dt small,
.order-card__totals dt small {
    color: inherit;
    font-size: 0.72rem;
    font-weight: 800;
}

.cart-topbar__totals dd,
.order-card__totals dd {
    margin: 0;
    color: var(--store-ink);
    font-size: 0.94rem;
    font-weight: 850;
    white-space: nowrap;
}

.cart-topbar__discount,
.order-card__discount,
.cart-summary__discount {
    color: var(--store-success);
}

.cart-topbar__grand-total,
.order-card__grand-total {
    color: var(--store-ink);
    font-weight: 900;
}

.cart-topbar__discount dd,
.order-card__discount dd {
    color: var(--store-success);
}

.cart-topbar__grand-total dd,
.order-card__grand-total dd {
    color: var(--store-brand);
    font-size: 1.15rem;
    font-weight: 950;
}

.cart-topbar__more {
    margin: 14px 0 0;
    text-align: right;
}

.cart-topbar-overlay {
    position: fixed;
    top: var(--store-header-height, 74px);
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9;
    border: 0;
    background: rgba(245, 245, 247, 0);
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    cursor: default;
    opacity: 0;
    visibility: hidden;
    transition: opacity 300ms ease, background 300ms ease, backdrop-filter 360ms ease,
    visibility 0s linear 360ms;
}

.cart-topbar-overlay.is-open {
    background: rgba(245, 245, 247, 0.4);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
}

.store-cart-open {
    overflow: hidden;
}

.store-cart-link:hover,
.store-cart-link.is-active {
    border-color: var(--store-brand);
    background: #f8eee8;
    color: var(--store-brand);
}

.store-cart-link__icon {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
}

.store-cart-link__badge {
    position: absolute;
    top: -10px;
    right: -11px;
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--store-surface-strong);
    border-radius: 999px;
    padding: 0 4px;
    background: var(--store-brand);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 900;
    line-height: 1;
}

.store-cart-link__badge[hidden] {
    display: none;
}

.store-cart-link__text {
    display: grid;
    line-height: 1.15;
}

.store-cart-link__text small {
    color: var(--store-muted);
    font-size: 0.7rem;
    font-weight: 700;
}

.store-cart-link__text strong {
    margin-top: 3px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cart-page__heading {
    position: relative;
    margin-bottom: 26px;
}

.cart-clear-form {
    position: absolute;
    top: 4px;
    right: 0;
    margin: 0;
}

.cart-clear-button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid rgba(142, 54, 48, 0.34);
    border-radius: 7px;
    background: transparent;
    color: var(--store-brand);
    cursor: pointer;
    padding: 0 13px;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
}

.cart-clear-button:hover,
.cart-clear-button:focus-visible {
    border-color: var(--store-brand);
    background: #f8eee8;
}

.cart-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 28px;
    align-items: start;
}

.cart-items {
    display: grid;
    gap: 16px;
}

.cart-item {
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 20px;
    padding: 18px;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: var(--store-surface-strong);
    box-shadow: 0 10px 30px rgba(36, 31, 29, 0.05);
}

.cart-item__media {
    min-height: 144px;
    display: flex;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    background: #f2ebe5;
}

.cart-item__media img {
    width: 100%;
    height: 144px;
    display: block;
    object-fit: cover;
}

.cart-item__placeholder {
    padding: 12px;
    color: var(--store-muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-align: center;
}

.cart-item__placeholder--package {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #eee3d9, #f8f2ed);
    color: var(--store-brand);
    font-size: 2.3rem;
}

.cart-item__content {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
}

.cart-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.cart-item h2 {
    margin: 0;
    font-size: 1.16rem;
    line-height: 1.3;
}

.cart-item h2 a {
    text-decoration: none;
}

.cart-item h2 a:hover {
    color: var(--store-brand);
}

.cart-item__unit-price {
    margin: 7px 0 0;
    color: var(--store-muted);
    font-size: 0.9rem;
}

.cart-item__total {
    color: var(--store-brand);
    font-size: 1.12rem;
    white-space: nowrap;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: nowrap;
}

.cart-item__quantity-label {
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 800;
}

.cart-item__actions .product-cart-control {
    min-height: 44px;
    margin: 0;
}

.cart-item__actions .product-cart-control__stepper button {
    width: 44px;
    opacity: 1;
}

.cart-summary {
    position: sticky;
    top: 98px;
    padding: 24px;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: var(--store-surface-strong);
    box-shadow: var(--store-shadow);
}

.cart-summary h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.cart-summary dl {
    margin: 0 0 20px;
    padding: 0 14px;
    border: 1px solid var(--store-line);
    border-radius: 10px;
    background: var(--store-surface);
}

.cart-summary dl div {
    min-height: 50px;
    align-items: center;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 2px;
    border-bottom: 1px solid var(--store-line);
}

.cart-summary dt {
    color: var(--store-muted);
    font-size: 0.9rem;
    font-weight: 700;
}

.cart-summary__discount dt {
    display: grid;
    gap: 1px;
    color: var(--store-success);
}

.cart-summary__discount dt small {
    font-size: 0.72rem;
    font-weight: 800;
}

.cart-summary dd {
    margin: 0;
    color: var(--store-ink);
    font-size: 0.94rem;
    font-weight: 850;
    white-space: nowrap;
}

.cart-summary__discount dd {
    color: var(--store-success);
}

.cart-summary .cart-summary__total {
    border-bottom: 0;
    color: var(--store-ink);
    font-size: 1rem;
    font-weight: 900;
}

.cart-summary__total dd {
    color: var(--store-brand);
    font-size: 1.28rem;
    font-weight: 950;
}

.cart-summary__button {
    width: 100%;
}

.cart-summary__note {
    margin: 14px 0 0;
    color: var(--store-muted);
    font-size: 0.78rem;
    line-height: 1.55;
}

.cart-discount {
    display: grid;
    gap: 14px;
    margin: 0 0 18px;
    padding: 18px;
    border: 1px solid color-mix(in srgb, var(--store-success) 28%, var(--store-line));
    border-radius: 10px;
    background: linear-gradient(145deg, var(--store-success-soft), var(--store-surface-strong));
}

.cart-discount-form {
    display: grid;
    gap: 8px;
}

.cart-discount-form label,
.cart-discount__copy strong {
    color: var(--store-ink);
    font-weight: 850;
}

.cart-discount-form__controls {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px;
}

.cart-discount-form input {
    min-width: 0;
    border: 1px solid var(--store-line);
    border-radius: 8px;
    padding: 10px 12px;
    font: inherit;
    text-transform: uppercase;
}

.cart-discount__applied {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.cart-discount__icon {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--store-success);
    color: #fff;
    font-size: 1.35rem;
}

.cart-discount__copy {
    min-width: 0;
    display: grid;
    gap: 1px;
    color: var(--store-muted);
    font-size: 0.8rem;
}

.cart-discount__copy strong {
    overflow: hidden;
    font-size: 1rem;
    letter-spacing: 0.02em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cart-discount__eyebrow {
    color: var(--store-success);
    font-size: 0.68rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cart-discount__saving {
    display: grid;
    justify-items: end;
    gap: 1px;
    color: var(--store-success);
    white-space: nowrap;
}

.cart-discount__saving small {
    color: var(--store-muted);
    font-size: 0.68rem;
    font-weight: 750;
}

.cart-discount__saving strong {
    font-size: 1.05rem;
    font-weight: 950;
}

.cart-discount__remove {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border: 1px solid color-mix(in srgb, var(--store-success) 22%, var(--store-line));
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.75);
    color: var(--store-muted);
    cursor: pointer;
    font: inherit;
    font-size: 0.8rem;
    font-weight: 800;
    width: 100%;
}

.cart-discount__remove:hover,
.cart-discount__remove:focus-visible {
    border-color: var(--store-success);
    color: var(--store-success);
}

.cart-discount__message {
    min-height: 0;
    font-size: 0.86rem;
    font-weight: 750;
}

.cart-discount__message:empty {
    display: none;
}

.cart-discount__message.is-success {
    color: var(--store-success);
}

.cart-discount__message.is-error {
    color: var(--store-brand);
}

.order-card__totals {
    margin-top: 20px;
    margin-left: auto;
    max-width: 440px;
    margin-bottom: 1.25rem;
}

@media (max-width: 520px) {
    .cart-discount-form__controls {
        grid-template-columns: 1fr;
    }

    .cart-discount__applied {
        grid-template-columns: 34px minmax(0, 1fr);
    }

    .cart-discount__saving {
        grid-column: 2;
        justify-items: start;
    }

    .cart-topbar__totals div,
    .order-card__totals div {
        align-items: start;
    }

    .cart-topbar__totals dt,
    .order-card__totals dt {
        min-width: 0;
    }
}

@media (min-width: 1200px) {
    .store-auth-main {
        width: min(100%, 560px);
        max-width: 560px;
    }

    .store-auth-brand__link {
        width: 320px;
        min-height: 126px;
    }
}

@media (max-width: 1100px) {
    .cart-layout {
        grid-template-columns: minmax(0, 1fr) 300px;
    }

    .product-grid,
    .product-skeleton-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .store-hero {
        grid-template-columns: minmax(0, 1fr);
    }

    .store-hero__covers {
        max-width: 520px;
    }
}

@media (max-width: 820px) {
    .store-header__inner {
        flex-wrap: wrap;
        gap: 12px;
        padding: 12px 0;
    }

    .store-menu-toggle {
        display: inline-flex;
    }

    .store-nav {
        order: 4;
        width: 100%;
        margin-left: 0;
        flex-wrap: wrap;
    }

    .storefront-js .store-nav {
        display: none;
    }

    .storefront-js.store-menu-open .store-nav {
        display: flex;
    }

    .store-cart-link {
        margin-left: auto;
    }

    .store-account__identity {
        display: none;
    }

    .store-account__trigger {
        max-width: none;
    }

    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-topbar__inner {
        padding-top: 24px;
    }

    .cart-summary {
        position: static;
    }

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

    .product-search {
        grid-template-columns: 1fr;
    }

    .product-toolbar,
    .store-section__header,
    .order-card__header {
        align-items: stretch;
        flex-direction: column;
    }

    .product-detail,
    .store-trust {
        grid-template-columns: 1fr;
    }

    .package-detail__hero {
        grid-template-columns: 1fr;
    }

    .order-card__status {
        justify-items: start;
    }

    .order-items__row {
        grid-template-columns: 1fr 64px;
    }

    .order-items__row span:nth-child(3),
    .order-items__row span:nth-child(4) {
        color: var(--store-muted);
    }
}

@media (max-width: 767.98px) {
    .storefront-auth .store-auth-shell {
        align-items: flex-start;
        padding: 26px 18px 36px;
    }

    .store-auth-brand {
        margin-bottom: 20px;
    }

    .store-auth-brand__link {
        width: min(240px, 68vw);
        min-height: 92px;
        padding: 16px 22px;
        border-radius: 24px;
    }

    .store-auth-card {
        border-radius: 26px;
    }

    .favorite-form--text,
    .favorite-form--text .favorite-button {
        width: 100%;
    }

    .store-auth-card__body {
        padding: 28px 22px;
    }

    .store-auth-actions,
    .store-auth-actions--split {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .store-auth-button,
    .store-auth-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 560px) {
    .store-header__inner,
    .store-main,
    .store-footer__inner,
    .store-auth-shell {
        width: min(100% - 24px, 1180px);
    }

    .store-main {
        padding-top: 22px;
    }

    .cart-clear-form {
        position: static;
        margin-top: 16px;
    }

    .cart-clear-button {
        width: 100%;
    }

    .customer-order-edit__header,
    .order-card__actions {
        align-items: stretch;
        flex-direction: column;
    }

    .customer-order-edit__header > div:last-child {
        justify-items: start;
    }

    .customer-order-edit__row {
        grid-template-columns: 1fr;
    }

    .customer-order-edit__quantity {
        width: min(100%, 180px);
    }

    .customer-order-edit__remove {
        width: 44px;
    }

    .customer-order-edit__summary {
        grid-template-columns: 1fr;
    }

    .customer-order-edit__discount {
        justify-self: stretch;
    }

    .customer-order-edit__discount-controls {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .customer-order-edit__discount-remove {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .order-card__actions > *,
    .order-card__actions .store-button,
    .order-cancel-button {
        width: 100%;
    }

    .store-hero {
        min-height: 0;
        padding: 24px;
    }

    .package-page-heading {
        padding: 24px;
    }

    .package-page-heading__mark {
        width: 62px;
        height: 62px;
        flex-basis: 62px;
        margin-left: 12px;
        font-size: 2rem;
    }

    .package-detail__hero,
    .package-detail__contents {
        padding: 22px;
    }

    .package-detail__section-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .store-hero h1,
    .store-page-heading h1,
    .product-detail h1 {
        font-size: 2rem;
    }

    .product-detail__cart-form {
        width: 100%;
    }

    .product-detail__cart-form > .store-button {
        flex: 1;
    }

    .store-hero__covers {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        min-height: 190px;
    }

    .store-hero-book {
        min-height: 160px;
    }

    .store-hero-book--2 {
        transform: translateY(-12px);
    }

    .product-card__body,
    .store-panel,
    .store-empty,
    .order-card {
        padding: 18px;
    }

    .account-list {
        grid-template-columns: 1fr;
    }

    .store-footer__inner,
    .store-form-actions,
    .store-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .store-footer__signature {
        align-items: flex-start;
        flex-direction: column;
    }

    .product-results-error {
        align-items: stretch;
        flex-direction: column;
    }

    .store-cart-link__text small {
        display: none;
    }

    .store-cart-link__text {
        display: none;
    }

    .cart-topbar__heading {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-topbar__heading .store-button {
        width: 100%;
    }

    .cart-topbar__item {
        grid-template-columns: 52px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .cart-topbar__media {
        width: 52px;
        height: 66px;
    }

    .cart-topbar__item-total {
        font-size: 0.84rem;
    }

    .cart-item {
        grid-template-columns: 84px minmax(0, 1fr);
        gap: 14px;
        padding: 14px;
    }

    .cart-item__media {
        min-height: 108px;
    }

    .cart-item__media img {
        height: 108px;
    }

    .cart-item__top {
        flex-direction: column;
        gap: 8px;
    }

    .cart-item__actions {
        grid-column: 1 / -1;
        align-items: stretch;
        flex-wrap: wrap;
    }

    .cart-item__quantity-label {
        display: none;
    }
}

@media (max-width: 340px) {
    .product-grid,
    .product-skeleton-grid {
        grid-template-columns: 1fr;
    }
}

.store-notification-region {
    position: fixed;
    z-index: 1200;
    top: calc(var(--store-header-height, 76px) + 18px);
    right: 20px;
    width: min(390px, calc(100vw - 32px));
    pointer-events: none;
}

.store-notification {
    --notification-accent: var(--store-primary, #315b7d);
    position: relative;
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) 32px;
    gap: 12px;
    align-items: start;
    overflow: hidden;
    padding: 15px 13px 17px 15px;
    border: 1px solid color-mix(in srgb, var(--notification-accent) 24%, var(--store-border, #dfe5e9));
    border-radius: 12px;
    background: var(--store-surface, #fff);
    box-shadow: 0 14px 40px rgb(20 38 52 / 18%);
    color: var(--store-text, #17232d);
    pointer-events: auto;
    animation: store-notification-in 220ms ease-out both;
}

.store-notification--success {
    --notification-accent: var(--store-success, #20845b);
}

.store-notification--error {
    --notification-accent: var(--store-danger, #b84343);
}

.store-notification--warning {
    --notification-accent: var(--store-warning, #a46a13);
}

.store-notification__icon {
    display: grid;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    place-items: center;
    background: color-mix(in srgb, var(--notification-accent) 13%, transparent);
    color: var(--notification-accent);
    font-size: 1rem;
    font-weight: 800;
}

.store-notification__content {
    display: grid;
    gap: 3px;
    min-width: 0;
    line-height: 1.4;
}

.store-notification__content strong {
    font-size: 0.94rem;
}

.store-notification__content > span {
    color: var(--store-muted, #61717c);
    font-size: 0.86rem;
}

.store-notification__close {
    display: grid;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--store-muted, #61717c);
    cursor: pointer;
    font: inherit;
    font-size: 1.35rem;
    line-height: 1;
    place-items: center;
}

.store-notification__close:hover,
.store-notification__close:focus-visible {
    background: color-mix(in srgb, var(--notification-accent) 10%, transparent);
    color: var(--notification-accent);
    outline: none;
}

.store-notification__progress {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 3px;
    background: var(--notification-accent);
    transform-origin: left;
    animation: store-notification-progress 5.2s linear both;
}

.store-notification.is-leaving {
    animation: store-notification-out 180ms ease-in both;
}

@keyframes store-notification-in {
    from {
        opacity: 0;
        transform: translate3d(18px, -8px, 0);
    }
}

@keyframes store-notification-out {
    to {
        opacity: 0;
        transform: translate3d(18px, -5px, 0);
    }
}

@keyframes store-notification-progress {
    to {
        transform: scaleX(0);
    }
}

@media (max-width: 600px) {
    .store-notification-region {
        top: 12px;
        right: 12px;
        width: calc(100vw - 24px);
    }
}

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

    .store-auth-card {
        animation: none !important;
    }

    .store-notification,
    .store-notification__progress {
        animation: none !important;
    }
}
