:root {
    --shop-accent: #fed700;
    --shop-accent-dark: #f4ca00;
    --shop-ink: #333e48;
    --shop-ink-soft: #5d6b75;
    --shop-line: #e6e9ed;
    --shop-bg: #f8f8f8;
    --shop-bg-image: url("../img/shop/site-background-01.png");
    --shop-surface: #ffffff;
    --shop-surface-alt: #f5f7fa;
    --shop-success: #00a650;
    --shop-danger: #f44336;
    --shop-warning: #ff9800;
    --shop-shadow: 0 10px 24px rgba(51, 62, 72, 0.08);
    --shop-radius: 8px;
    --shop-container: 1400px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--shop-bg);
    color: var(--shop-ink);
    font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
    line-height: 1.5;
    position: relative;
}

body::before {
    background: var(--shop-bg-image) center top / cover no-repeat;
    content: '';
    inset: -10vh 0;
    pointer-events: none;
    position: fixed;
    transform: translate3d(0, var(--shop-bg-parallax-y, 0px), 0);
    width: 100%;
    will-change: transform;
    z-index: 0;
}

body > * {
    position: relative;
    z-index: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

button,
input,
textarea,
select {
    font: inherit;
}

.shop-header {
    margin-bottom: 1rem;
    z-index: 10;
}

.shop-shell,
.shop-shell__header,
.shop-shell__footer {
    margin: 0 auto;
    max-width: var(--shop-container);
    padding-left: 1rem;
    padding-right: 1rem;
}

.shop-shell {
    padding-bottom: 3rem;
}

.shop-utility {
    background: linear-gradient(90deg, #2f3941 0%, #36414a 100%);
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.85rem;
}

.shop-utility__inner {
    align-items: center;
    display: grid;
    gap: 1.1rem;
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 42px;
    padding-bottom: 0.34rem;
    padding-top: 0.34rem;
}

.shop-utility__content {
    align-items: center;
    display: grid;
    gap: 0.75rem;
    justify-items: center;
    min-width: 0;
}

.shop-utility__eyebrow {
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    white-space: nowrap;
    text-transform: uppercase;
}

.shop-utility__ticker {
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.45;
    min-height: 1.45em;
    min-width: 0;
    position: relative;
    text-align: center;
}

.shop-utility__ticker [data-shop-rotating-copy-item] {
    inset: 0 auto auto 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transform: translateY(6px);
    transition: opacity 0.36s ease, transform 0.36s ease;
}

.shop-utility__ticker [data-shop-rotating-copy-item].is-active {
    opacity: 1;
    position: relative;
    transform: translateY(0);
}

.shop-utility__links {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 1.1rem;
    justify-content: flex-end;
}

.shop-utility__links--primary {
    justify-content: flex-start;
}

.shop-utility__links a,
.shop-utility__links span,
.shop-utility__account {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    color: inherit;
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    min-height: 28px;
    padding: 0;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.shop-utility__links span {
    cursor: default;
}

.shop-utility__account,
.shop-utility__account span,
.shop-account-icon-button,
.shop-account-icon-button span {
    cursor: pointer;
}

.shop-utility__links a:hover,
.shop-utility__links a:focus,
.shop-utility__account:hover,
.shop-utility__account:focus {
    background: transparent;
    color: #fff;
}

.shop-utility__account {
    font-size: inherit;
    justify-content: center;
    min-width: 28px;
}

.shop-utility__link--muted {
    color: rgba(255, 255, 255, 0.68);
}

.shop-account-icon {
    color: currentColor;
    display: inline-flex;
    height: 24px;
    position: relative;
    width: 24px;
}

.shop-account-icon::before,
.shop-account-icon::after {
    border: 2px solid currentColor;
    content: '';
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
}

.shop-account-icon::before {
    border-radius: 999px;
    height: 8px;
    top: 3px;
    width: 8px;
}

.shop-account-icon::after {
    border-radius: 12px 12px 999px 999px;
    height: 10px;
    top: 14px;
    width: 17px;
}

.shop-account-trigger.is-authenticated .shop-account-icon::before,
.shop-account-icon-button.is-authenticated .shop-account-icon::before {
    background: transparent;
}

.shop-account-trigger.is-authenticated .shop-account-icon::after,
.shop-account-icon-button.is-authenticated .shop-account-icon::after {
    background: var(--shop-accent);
    border-color: var(--shop-accent);
}

.shop-account-drawer {
    inset: 0;
    position: fixed;
    z-index: 1200;
}

.shop-account-drawer__scrim {
    background: rgba(15, 23, 42, 0.42);
    border: 0;
    cursor: pointer;
    inset: 0;
    position: absolute;
}

.shop-account-drawer__panel {
    background: var(--shop-surface);
    box-shadow: -18px 0 36px rgba(15, 23, 42, 0.22);
    display: flex;
    flex-direction: column;
    gap: 0.95rem;
    height: 100%;
    margin-left: auto;
    max-width: min(520px, 100vw);
    overflow-y: auto;
    padding: 1.45rem 1.55rem;
    position: relative;
    transform: translateX(100%);
    transition: transform 0.22s ease;
    width: 100%;
}

.shop-account-drawer.is-open .shop-account-drawer__panel {
    transform: translateX(0);
}

.shop-account-drawer__head {
    align-items: flex-start;
    border-bottom: 1px solid var(--shop-line);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding-bottom: 1rem;
}

.shop-account-drawer__head h2 {
    font-size: 1.45rem;
    line-height: 1.15;
    margin: 0.25rem 0 0;
}

.shop-account-drawer__close {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1.25rem;
    height: 36px;
    justify-content: center;
    line-height: 1;
    width: 36px;
}

.shop-account-tabs {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    display: grid;
    gap: 0.25rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0.25rem;
}

.shop-account-tabs button {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: var(--shop-ink-soft);
    cursor: pointer;
    font-weight: 700;
    min-height: 38px;
}

.shop-account-tabs button.is-active {
    background: var(--shop-accent);
    color: var(--shop-ink);
}

.shop-account-form {
    display: none;
    gap: 0.78rem;
}

.shop-account-form.is-active {
    display: grid;
}

.shop-account-form--login,
.shop-account-form--reset {
    max-width: 410px;
    width: 100%;
}

.shop-account-form--register {
    align-items: start;
    column-gap: 0.9rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.82rem;
}

.shop-account-form--register .shop-account-form__wide,
.shop-account-form--register .shop-consent-check,
.shop-account-form--register .shop-button {
    grid-column: 1 / -1;
}

.shop-account-form--register .shop-form-group {
    min-width: 0;
}

.shop-account-inline-link {
    background: transparent;
    border: 0;
    color: var(--shop-ink-soft);
    cursor: pointer;
    font-size: 0.92rem;
    font-weight: 700;
    justify-self: start;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.shop-account-inline-link:hover,
.shop-account-inline-link:focus {
    color: var(--shop-ink);
}

.shop-account-form__copy {
    color: var(--shop-ink-soft);
    margin: 0;
}

.shop-account-summary {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.25rem;
    padding: 1rem;
}

.shop-account-summary strong {
    font-size: 1.05rem;
}

.shop-account-summary span,
.shop-account-copy {
    color: var(--shop-ink-soft);
}

body.shop-account-drawer-open {
    overflow: hidden;
}

.shop-account-page__layout {
    display: grid;
    justify-items: center;
    padding-top: 1.5rem;
}

.shop-account-reset-panel {
    max-width: 560px;
    width: 100%;
}

.shop-account-reset-panel h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.05;
    margin: 0.35rem 0 0.85rem;
}

.shop-account-reset-form {
    display: grid;
    gap: 0.9rem;
    margin-top: 1.1rem;
}

body.shop-mobile-panel-open {
    overflow: hidden;
}

body.shop-mobile-panel-open .shop-shell {
    z-index: 130;
}

body.shop-mobile-panel-open .shop-header {
    z-index: 140;
}

body.shop-mobile-panel-open .shop-shell::after {
    content: '';
    display: none;
}

.shop-mobile-panel-scrim {
    background: rgba(17, 24, 39, 0.42);
    border: 0;
    bottom: 0;
    cursor: default;
    display: none;
    left: 0;
    padding: 0;
    position: fixed;
    right: 0;
    top: var(--shop-mobile-panel-top, 0px);
    width: 100%;
    z-index: 110;
}

.shop-mobile-panel-scrim.is-visible {
    display: block;
}

.shop-mobile-panel-scrim[hidden] {
    display: none;
}

.shop-registration-prompt {
    inset: 0;
    position: fixed;
    z-index: 1250;
}

.shop-registration-prompt__scrim {
    background: rgba(15, 23, 42, 0.58);
    border: 0;
    cursor: pointer;
    inset: 0;
    position: absolute;
}

.shop-registration-prompt__panel {
    background: var(--shop-surface);
    border-radius: 14px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.34);
    left: 50%;
    max-height: calc(100vh - 1.25rem);
    max-width: min(560px, calc(100vw - 1.5rem));
    overflow: hidden;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.shop-registration-prompt__close {
    align-items: center;
    background: #26313a;
    border: 2px solid rgba(255, 255, 255, 0.75);
    border-radius: 999px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-size: 1.4rem;
    height: 40px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: 0.65rem;
    top: 0.65rem;
    width: 40px;
    z-index: 2;
}

.shop-registration-prompt__hero {
    background:
        radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.2), transparent 36%),
        linear-gradient(135deg, #fed700 0%, #ffb11f 46%, #ef6b3d 100%);
    color: #fff;
    display: grid;
    gap: 0.42rem;
    padding: 1.28rem 4.1rem 1.16rem 1.55rem;
    text-align: center;
}

.shop-registration-prompt__hero span {
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-registration-prompt__hero h2 {
    font-size: clamp(1.45rem, 2.9vw, 1.95rem);
    line-height: 1.1;
    margin: 0;
}

.shop-registration-prompt__body {
    display: grid;
    gap: 0.46rem;
    padding: 0.95rem 1.55rem 1rem;
    text-align: center;
}

.shop-registration-prompt__body > strong {
    color: #202a33;
    font-size: 1.22rem;
    line-height: 1.16;
}

.shop-registration-prompt__body > p {
    color: var(--shop-ink-soft);
    font-size: 0.88rem;
    line-height: 1.35;
    margin: -0.14rem auto 0.08rem;
    max-width: 38ch;
}

.shop-registration-prompt__form {
    display: grid;
    gap: 0.5rem 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    text-align: left;
}

.shop-registration-prompt__form .shop-form-group {
    gap: 0.18rem;
}

.shop-registration-prompt__form label {
    font-size: 0.82rem;
}

.shop-registration-prompt__form .shop-consent-check {
    font-size: 0.82rem;
    gap: 0.5rem;
    min-height: 42px;
    padding: 0.48rem 0.62rem;
}

.shop-registration-prompt__form input,
.shop-registration-prompt__form textarea {
    border-radius: 10px;
    min-height: 38px;
    padding: 0.5rem 0.72rem;
}

.shop-registration-prompt__field--wide,
.shop-registration-prompt__submit {
    grid-column: 1 / -1;
}

.shop-registration-prompt__login {
    background: transparent;
    border: 0;
    color: var(--shop-ink-soft);
    cursor: pointer;
    font-weight: 700;
    justify-self: center;
    padding: 0.1rem;
}

.shop-registration-prompt__login:hover,
.shop-registration-prompt__login:focus {
    color: var(--shop-ink);
}

body.shop-registration-prompt-open {
    overflow: hidden;
}

.shop-topbar {
    align-items: center;
    column-gap: 1.5rem;
    display: grid;
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr) auto;
    padding: 1.2rem 0;
}

.shop-topbar__actions {
    align-items: center;
    display: inline-flex;
    gap: 0.65rem;
    justify-content: flex-end;
    min-width: 0;
}

.shop-brand {
    align-items: center;
    display: inline-flex;
    gap: 0.9rem;
}

.shop-brand__mark {
    align-items: center;
    background: transparent;
    border-radius: 18px;
    display: inline-flex;
    flex: 0 0 auto;
    height: 64px;
    justify-content: center;
    overflow: hidden;
    width: 64px;
}

.shop-brand__mark img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shop-brand__text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.shop-brand__text strong {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
}

.shop-brand__text small {
    color: var(--shop-ink-soft);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.shop-topbar-menu-toggle {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    color: var(--shop-ink);
    cursor: pointer;
    display: none;
    font-weight: 700;
    gap: 0.35rem;
    min-height: 40px;
    padding: 0.4rem 0.7rem;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.shop-search {
    position: relative;
}

.shop-search__bar {
    align-items: stretch;
    background: var(--shop-surface);
    border: 2px solid var(--shop-accent);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 130px minmax(0, 1fr) 48px 130px;
    overflow: hidden;
}

.shop-search__label {
    align-items: center;
    background: var(--shop-surface-alt);
    color: var(--shop-ink-soft);
    display: inline-flex;
    font-size: 0.9rem;
    justify-content: center;
    padding: 0 1rem;
}

.shop-search input {
    background: transparent;
    border: 0;
    color: var(--shop-ink);
    min-width: 0;
    outline: none;
    padding: 0 1rem;
}

.shop-search__submit-icon {
    align-items: center;
    color: var(--shop-ink-soft);
    display: inline-flex;
    justify-content: center;
    position: relative;
}

.shop-search__submit-icon::before {
    border: 2px solid currentColor;
    border-radius: 999px;
    content: '';
    height: 16px;
    transform: translate(-2px, -2px);
    width: 16px;
}

.shop-search__submit-icon::after {
    background: currentColor;
    border-radius: 999px;
    content: '';
    height: 9px;
    position: absolute;
    transform: translate(8px, 8px) rotate(-45deg);
    width: 2px;
}

.shop-search button {
    background: var(--shop-accent);
    border: 0;
    color: var(--shop-ink);
    cursor: pointer;
    font-weight: 700;
    transition: background 0.18s ease;
}

.shop-search button:hover,
.shop-search button:focus {
    background: var(--shop-accent-dark);
}

.shop-search__panel {
    background: var(--shop-surface);
    border: 1px solid rgba(51, 62, 72, 0.12);
    border-radius: 20px;
    box-shadow: 0 18px 42px rgba(51, 62, 72, 0.16);
    left: 0;
    overflow: hidden;
    position: absolute;
    right: 0;
    top: calc(100% + 0.55rem);
    z-index: 35;
}

.shop-search__status {
    background: #fffef5;
    border-bottom: 1px solid var(--shop-line);
    color: var(--shop-ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.85rem 1rem;
    text-transform: uppercase;
}

.shop-search__results {
    max-height: 430px;
    overflow-x: hidden;
    overflow-y: auto;
}

.shop-search__empty {
    color: var(--shop-ink-soft);
    padding: 1rem;
}

.shop-search-group + .shop-search-group {
    border-top: 1px solid var(--shop-line);
}

.shop-search-group__title {
    color: var(--shop-ink-soft);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.9rem 1rem 0.55rem;
    text-transform: uppercase;
}

.shop-search-group__list {
    display: grid;
}

.shop-search-result {
    align-items: center;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    padding: 0.85rem 1rem;
    transition: background 0.18s ease;
}

.shop-search-result:hover,
.shop-search-result:focus,
.shop-search-result.is-active {
    background: #fff8d6;
    outline: none;
}

.shop-search-result--category {
    grid-template-columns: minmax(0, 1fr) auto;
}

.shop-search-result__thumb {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    display: flex;
    height: 64px;
    justify-content: center;
    overflow: hidden;
    width: 64px;
}

.shop-search-result__thumb img {
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.shop-search-result__thumb span {
    color: #c9d0d6;
    font-size: 1.2rem;
    font-weight: 700;
}

.shop-search-result__body {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.shop-search-result__body strong {
    font-size: 1rem;
    line-height: 1.25;
}

.shop-search-result__body p,
.shop-search-result__eyebrow {
    color: var(--shop-ink-soft);
    margin: 0;
}

.shop-search-result__eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.shop-search-result__body p {
    font-size: 0.88rem;
    line-height: 1.45;
}

.shop-search-result__aside {
    align-items: flex-end;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    text-align: right;
}

.shop-search-result__price {
    color: var(--shop-ink);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
}

.shop-search-result__stock {
    border-radius: 999px;
    font-size: 0.74rem;
    font-weight: 700;
    padding: 0.2rem 0.5rem;
    white-space: nowrap;
}

.shop-search-result__stock--in_stock {
    background: rgba(0, 166, 80, 0.12);
    color: var(--shop-success);
}

.shop-search-result__stock--out_of_stock {
    background: rgba(244, 67, 54, 0.1);
    color: var(--shop-danger);
}

.shop-cart-link {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--shop-ink);
    display: inline-flex;
    gap: 0.65rem;
    min-height: 52px;
    padding: 0;
    position: relative;
    transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-cart-link__icon {
    display: inline-flex;
    font-size: 0;
    height: 28px;
    line-height: 1;
    position: relative;
    width: 28px;
}

.shop-cart-link__icon::before {
    background:
        linear-gradient(64deg, transparent 0 42%, currentColor 43% 57%, transparent 58%) 0 0 / 10px 12px no-repeat,
        linear-gradient(currentColor, currentColor) 8px 7px / 17px 2.4px no-repeat,
        linear-gradient(currentColor, currentColor) 10px 20px / 13px 2.4px no-repeat,
        linear-gradient(105deg, transparent 0 40%, currentColor 41% 56%, transparent 57%) 7px 9px / 5px 12px no-repeat,
        linear-gradient(105deg, transparent 0 40%, currentColor 41% 56%, transparent 57%) 21px 9px / 5px 12px no-repeat,
        linear-gradient(currentColor, currentColor) 13px 12px / 11px 2px no-repeat,
        linear-gradient(currentColor, currentColor) 12px 16px / 12px 2px no-repeat;
    content: '';
    height: 23px;
    left: 1px;
    position: absolute;
    top: 2px;
    width: 26px;
}

.shop-cart-link__icon::after {
    background: currentColor;
    border-radius: 999px;
    box-shadow: 11px 0 0 currentColor;
    content: '';
    height: 4px;
    left: 10px;
    position: absolute;
    top: 23px;
    width: 4px;
}

.shop-cart-link__label {
    color: var(--shop-ink-soft);
    display: none;
    font-size: 0.88rem;
    text-transform: uppercase;
}

.shop-cart-link:hover,
.shop-cart-link:focus {
    border-color: transparent;
    box-shadow: none;
    color: #111827;
    transform: translateY(-1px);
}

.shop-cart-link strong {
    align-items: center;
    background: var(--shop-accent);
    border-radius: 999px;
    display: inline-flex;
    border: 2px solid var(--shop-bg);
    box-shadow: 0 2px 6px rgba(51, 62, 72, 0.16);
    font-size: 0.68rem;
    height: 18px;
    justify-content: center;
    min-width: 18px;
    padding: 0 0.24rem;
    position: absolute;
    right: -0.46rem;
    top: 0.35rem;
}

.shop-account-icon-button {
    align-items: center;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    color: var(--shop-ink);
    cursor: pointer;
    display: none;
    font-size: 1.35rem;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.shop-account-icon-button:hover,
.shop-account-icon-button:focus {
    background: transparent;
    border-color: transparent;
    color: #111827;
}

.shop-navband {
    align-items: center;
    background: var(--shop-accent);
    border-radius: var(--shop-radius);
    column-gap: 1rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    padding: 0.62rem 0.9rem;
}

.shop-header__mobile-note {
    display: none;
}

.shop-header__mobile-note strong {
    color: var(--shop-ink);
    display: block;
    font-size: 0.84rem;
}

.shop-header__mobile-note span {
    color: var(--shop-ink-soft);
    font-size: 0.88rem;
}

.shop-navband__mobile-actions {
    display: none;
}

.shop-mobile-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.28);
    border: 0;
    border-radius: 999px;
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    gap: 0.45rem;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 0.95rem;
    touch-action: manipulation;
    transition: background 0.18s ease, transform 0.18s ease;
    -webkit-tap-highlight-color: transparent;
}

.shop-mobile-toggle:hover,
.shop-mobile-toggle:focus,
.shop-mobile-toggle.is-open {
    background: rgba(255, 255, 255, 0.58);
}

.shop-navband__menu {
    align-items: center;
    display: flex;
    gap: 0.9rem;
    min-width: 0;
    width: 100%;
}

.shop-navband__title {
    font-weight: 700;
    white-space: nowrap;
}

.shop-category-bar {
    flex: 1 1 auto;
    display: flex;
    flex-wrap: nowrap;
    gap: 0.4rem;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.shop-category-bar__item {
    align-items: center;
    border-radius: 999px;
    color: var(--shop-ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.9rem;
    padding: 0.34rem 0.65rem;
    position: relative;
    transition: background 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.shop-category-bar a.shop-category-bar__item:hover,
.shop-category-bar a.shop-category-bar__item:focus {
    background: rgba(255, 255, 255, 0.35);
}

.shop-category-bar__item.is-active {
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 -2px 0 var(--shop-ink);
    font-weight: 700;
    margin-right: 0.55rem;
}

.shop-category-bar__item--disabled {
    cursor: default;
    opacity: 0.72;
}

.shop-category-bar__item--soon {
    overflow: visible;
    padding-right: 0.9rem;
}

.shop-category-bar__soon {
    align-items: center;
    background: #ff6f1a;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 999px;
    box-shadow: 0 2px 7px rgba(51, 62, 72, 0.18);
    color: #fff;
    display: inline-flex;
    font-size: 0;
    font-weight: 900;
    height: 0.82rem;
    justify-content: center;
    line-height: 1;
    padding: 0;
    pointer-events: none;
    position: absolute;
    right: 0.08rem;
    top: 0.04rem;
    width: 0.82rem;
    z-index: 2;
}

.shop-category-bar__soon::before {
    content: "i";
    font-size: 0.62rem;
    font-style: italic;
    line-height: 1;
    transform: translateY(-0.01rem);
}

.shop-category-bar__item--deals {
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(51, 62, 72, 0.18);
    font-weight: 700;
    margin-left: auto;
}

.shop-category-bar__item--retro {
    background: rgba(255, 255, 255, 0.58);
    border-radius: 8px;
    box-shadow:
        inset 0 -2px 0 rgba(42, 27, 18, 0.18),
        0 2px 0 rgba(255, 255, 255, 0.32);
    font-size: 0.7rem;
    margin-left: 0;
}

.shop-category-bar__item--retro::before {
    background:
        linear-gradient(90deg, #ff4fb8 0 33%, #24d4ff 33% 66%, #2a1b12 66% 100%);
    border-radius: 1px;
    content: "";
    flex: 0 0 auto;
    height: 5px;
    opacity: 0.9;
    width: 16px;
}

.shop-category-bar__item--retro .shop-category-bar__label {
    transform: skewX(-6deg);
}

.shop-category-bar a.shop-category-bar__item--deals:hover,
.shop-category-bar a.shop-category-bar__item--deals:focus,
.shop-category-bar__item--deals.is-active {
    background: #fff7bd;
    border-color: rgba(51, 62, 72, 0.34);
    box-shadow: inset 0 -2px 0 var(--shop-ink);
}

.shop-category-bar a.shop-category-bar__item--retro:hover,
.shop-category-bar a.shop-category-bar__item--retro:focus,
.shop-category-bar__item--retro.is-active {
    background: rgba(255, 255, 255, 0.78);
    border-color: rgba(42, 27, 18, 0.62);
    box-shadow:
        inset 0 -2px 0 rgba(42, 27, 18, 0.28),
        0 2px 0 rgba(255, 255, 255, 0.42);
    color: #1f130c;
    text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.75);
}

.shop-category-bar__label {
    display: inline-flex;
    line-height: 1;
}

.shop-category-bar__count {
    align-items: center;
    background: var(--shop-ink);
    border: 2px solid var(--shop-surface);
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(51, 62, 72, 0.16);
    color: #fff;
    display: inline-flex;
    font-size: 0.68rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    min-width: 22px;
    padding: 0.14rem 0.34rem;
    position: absolute;
    right: -0.42rem;
    top: -0.52rem;
    z-index: 1;
}

.shop-primary-nav {
    display: none;
    gap: 0.3rem;
}

.shop-primary-nav a {
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.5rem 0.85rem;
}

.shop-primary-nav a.is-active,
.shop-primary-nav a:hover,
.shop-primary-nav a:focus {
    background: rgba(255, 255, 255, 0.55);
}

.shop-notices {
    bottom: auto;
    display: grid;
    gap: 0.75rem;
    left: auto;
    margin-top: 0;
    max-width: min(420px, calc(100vw - 32px));
    position: fixed;
    right: 16px;
    top: calc(16px + env(safe-area-inset-top, 0px));
    width: max-content;
    z-index: 1500;
}

.shop-notice {
    align-items: center;
    backdrop-filter: blur(12px);
    border-radius: var(--shop-radius);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.16);
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    transition: opacity 0.18s ease, transform 0.18s ease;
    width: min(420px, calc(100vw - 32px));
}

.shop-notice.is-leaving {
    opacity: 0;
    transform: translateY(-4px);
}

.shop-notice__close {
    align-items: center;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(51, 62, 72, 0.12);
    border-radius: 999px;
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 1rem;
    font-weight: 800;
    height: 28px;
    justify-content: center;
    line-height: 1;
    width: 28px;
}

.shop-form-errors {
    border-radius: var(--shop-radius);
    padding: 0.9rem 1rem;
}

.shop-notice--success {
    background: rgba(236, 253, 243, 0.96);
    border: 1px solid rgba(0, 166, 80, 0.22);
}

.shop-notice--error,
.shop-form-errors {
    background: rgba(254, 243, 242, 0.96);
    border: 1px solid rgba(244, 67, 54, 0.2);
}

.shop-notice--warning {
    background: rgba(255, 248, 230, 0.96);
    border: 1px solid rgba(255, 152, 0, 0.25);
}

.shop-notice--info {
    background: rgba(248, 250, 252, 0.96);
    border: 1px solid rgba(51, 62, 72, 0.12);
}

@media (max-width: 640px) {
    .shop-notices {
        left: 12px;
        max-width: calc(100vw - 24px);
        right: 12px;
        top: calc(12px + env(safe-area-inset-top, 0px));
        width: auto;
    }

    .shop-notice {
        width: 100%;
    }
}

.shop-form-errors ul {
    margin: 0;
    padding-left: 1rem;
}

.shop-consent-check {
    align-items: center;
    background: #fbfcfd;
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    color: var(--shop-ink-soft);
    cursor: pointer;
    display: grid;
    gap: 0.65rem;
    grid-template-columns: 16px minmax(0, 1fr);
    line-height: 1.35;
    padding: 0.62rem 0.75rem;
    text-align: left;
}

.shop-consent-check input {
    accent-color: var(--shop-accent-dark);
    height: 16px;
    margin: 0;
    width: 16px;
}

.shop-consent-check a {
    color: var(--shop-ink);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 0.14em;
}

.shop-consent-check:focus-within {
    border-color: rgba(244, 202, 0, 0.75);
    box-shadow: 0 0 0 3px rgba(254, 215, 0, 0.16);
}

.shop-checkout-info-links {
    align-items: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin: 1rem 0;
    padding: 0.55rem 0.7rem;
}

.shop-checkout-info-links span {
    color: var(--shop-ink-soft);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-checkout-info-links a {
    background: #fffef5;
    border: 1px solid rgba(244, 202, 0, 0.36);
    border-radius: 999px;
    color: var(--shop-ink);
    font-size: 0.8rem;
    font-weight: 400;
    line-height: 1.15;
    padding: 0.28rem 0.56rem;
    text-decoration: none;
}

.shop-checkout-info-links a:hover,
.shop-checkout-info-links a:focus {
    background: var(--shop-accent);
    border-color: var(--shop-accent-dark);
    outline: none;
}

.shop-checkout-info-section {
    display: grid;
    gap: 1rem;
    margin-top: 1rem;
}

.shop-cart-info-grid {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 2fr) minmax(280px, 1fr);
    margin-top: 1rem;
}

.shop-cart-info-grid .shop-checkout-info-section,
.shop-cart-info-grid .shop-packing-video {
    margin-top: 0;
}

.shop-checkout-note {
    background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
    border: 1px solid rgba(244, 202, 0, 0.28);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
    padding: 1rem 1.1rem;
    scroll-margin-top: 112px;
}

.shop-checkout-info-section .shop-checkout-note {
    margin-bottom: 0;
}

.shop-checkout-note:focus,
.shop-checkout-note:target {
    outline: 3px solid rgba(254, 215, 0, 0.55);
    outline-offset: 3px;
}

.shop-checkout-note strong {
    font-size: 1rem;
}

.shop-checkout-note p {
    color: var(--shop-ink-soft);
    margin: 0;
}

.shop-section {
    margin-top: 2rem;
}

.shop-section--compact {
    margin-top: 1.2rem;
}

.shop-section__head {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.shop-section__head--related {
    align-items: center;
}

.shop-related-link {
    align-items: center;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    color: var(--shop-ink);
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    min-height: 34px;
    padding: 0.42rem 0.72rem;
    white-space: nowrap;
}

.shop-related-link:hover,
.shop-related-link:focus {
    border-color: var(--shop-accent-dark);
    background: rgba(254, 215, 0, 0.16);
}

.shop-kicker {
    color: #9aa6af;
    display: inline-block;
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.shop-section--collection .shop-section__head {
    align-items: flex-end;
    border-bottom: 1px solid rgba(51, 62, 72, 0.1);
    margin-bottom: 1.1rem;
    padding-bottom: 0.75rem;
    position: relative;
}

.shop-section--collection .shop-section__head::after {
    background: var(--shop-accent);
    border-radius: 999px;
    bottom: -1px;
    content: '';
    height: 3px;
    left: 0;
    position: absolute;
    width: 72px;
}

.shop-collection-kicker {
    color: #a47f00;
    font-size: 0.7rem;
    letter-spacing: 0.16em;
    line-height: 1;
    margin-bottom: 0.38rem;
}

.shop-section--collection h2 {
    color: #202a33;
    font-weight: 800;
    letter-spacing: 0;
}

.shop-section h1,
.shop-section h2,
.shop-success-card h1,
.shop-empty-state h1,
.shop-empty-state h2 {
    font-size: clamp(1.7rem, 3.1vw, 2.6rem);
    line-height: 1.08;
    margin: 0;
}

.shop-section__lead,
.shop-product-card__excerpt,
.shop-prose,
.shop-product-summary__lead,
.shop-footer p,
.shop-empty-state p,
.shop-service-strip span,
.shop-info-stack span,
.shop-deal-panel__body small,
.shop-product-summary__meta,
.shop-product-card__meta,
.shop-table__product small,
.shop-category-sidebar__head small,
.shop-category-sidebar__panel-head span,
.shop-category-sidebar__brand a small {
    color: var(--shop-ink-soft);
}

.shop-home-grid {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: 280px minmax(0, 1fr) 290px;
}

.shop-home-sidebar-stack {
    display: grid;
    align-content: start;
    gap: 1rem;
}

.shop-global-category-sidebar {
    display: none;
}

.shop-category-sidebar,
.shop-hero-banner,
.shop-deal-panel,
.shop-home-brief,
.shop-filter-card,
.shop-summary-card,
.shop-panel,
.shop-gallery,
.shop-product-summary,
.shop-success-card,
.shop-empty-state {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
}

.shop-category-sidebar,
.shop-deal-panel,
.shop-filter-card,
.shop-summary-card,
.shop-panel,
.shop-home-brief,
.shop-success-card,
.shop-empty-state {
    padding: 1.2rem;
}

.shop-category-sidebar__head strong,
.shop-deal-panel h2,
.shop-filter-card__head strong,
.shop-summary-card h2,
.shop-panel h2 {
    font-size: 1.2rem;
    line-height: 1.15;
    margin: 0;
}

.shop-category-sidebar {
    overflow: visible;
    padding: 0;
    position: relative;
}

.shop-category-sidebar__head {
    align-items: center;
    background: var(--shop-accent);
    border: 0;
    color: var(--shop-ink);
    cursor: pointer;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 22px minmax(0, 1fr) auto;
    text-align: left;
    padding: 1rem 1.1rem;
    touch-action: manipulation;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
}

.shop-category-sidebar__icon {
    font-size: 1.1rem;
    font-weight: 700;
}

.shop-category-sidebar__head-chevron {
    display: none;
    font-size: 1.15rem;
    transition: transform 0.18s ease;
}

.shop-category-sidebar__head small,
.shop-filter-card__head span {
    color: var(--shop-ink-soft);
    display: block;
    font-size: 0.9rem;
    margin-top: 0.2rem;
}

.shop-category-sidebar__body {
    position: relative;
}

.shop-category-sidebar__departments {
    display: grid;
}

.shop-category-sidebar__department {
    align-items: center;
    border-top: 1px solid var(--shop-line);
    color: var(--shop-ink);
    display: grid;
    gap: 0.6rem;
    grid-template-columns: minmax(0, 1fr) auto;
    background: #fff;
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
    min-height: 56px;
    outline: none;
    padding: 0.85rem 1.1rem;
    transition: background 0.18s ease, color 0.18s ease;
    width: 100%;
}

.shop-category-sidebar__department:hover,
.shop-category-sidebar__department:focus,
.shop-category-sidebar__department.is-active {
    background: #fff8d6;
}

.shop-category-sidebar__department.is-active {
    box-shadow: inset 4px 0 0 var(--shop-accent-dark);
}

.shop-category-sidebar__department.is-empty {
    color: #677581;
}

.shop-category-sidebar__department-name {
    font-size: 0.98rem;
    font-weight: 700;
    text-align: left;
}

.shop-category-sidebar__department-meta {
    align-items: center;
    color: var(--shop-ink-soft);
    display: inline-flex;
    gap: 0.5rem;
}

.shop-category-sidebar__department-meta small {
    font-size: 0.82rem;
}

.shop-category-sidebar__services {
    background: linear-gradient(180deg, #fbfcfe 0%, #f4f7fa 100%);
    border-top: 6px solid var(--shop-bg);
    display: grid;
    gap: 0;
    overflow: hidden;
    padding: 0.35rem 0;
}

.shop-category-sidebar__service-link {
    align-items: center;
    border: 0;
    border-left: 3px solid transparent;
    color: var(--shop-ink);
    display: grid;
    gap: 0.6rem;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    min-height: 46px;
    padding: 0.62rem 1.05rem 0.62rem 1rem;
    position: relative;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.shop-category-sidebar__service-link:hover,
.shop-category-sidebar__service-link:focus {
    background: #fff8d6;
    border-left-color: var(--shop-accent-dark);
}

.shop-category-sidebar__service-link--disabled {
    cursor: default;
    padding-right: 3.95rem;
}

.shop-category-sidebar__service-link--disabled:hover,
.shop-category-sidebar__service-link--disabled:focus {
    background: transparent;
    border-left-color: transparent;
}

.shop-category-sidebar__service-copy {
    display: grid;
    min-width: 0;
}

.shop-category-sidebar__service-copy strong {
    font-family: "Segoe UI", Arial, "Helvetica Neue", Helvetica, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
}

.shop-category-sidebar__service-icon {
    align-items: center;
    background: transparent;
    border: 0;
    color: #475569;
    display: inline-flex;
    font-size: 1.02rem;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.shop-category-sidebar__service-link:hover .shop-category-sidebar__service-icon,
.shop-category-sidebar__service-link:focus .shop-category-sidebar__service-icon {
    color: #111827;
}

.shop-category-sidebar__service-arrow {
    color: var(--shop-ink-soft);
    font-size: 1rem;
}

.shop-category-sidebar__service-badge {
    align-items: center;
    background: #ff7a1a;
    color: #fff;
    display: flex;
    font-size: 0.58rem;
    font-weight: 900;
    height: 22px;
    justify-content: center;
    letter-spacing: 0.04em;
    position: absolute;
    right: -27px;
    text-transform: uppercase;
    top: 4px;
    transform: rotate(45deg);
    white-space: nowrap;
    width: 92px;
    z-index: 1;
}

.shop-category-sidebar__flyout {
    left: calc(100% - 2px);
    pointer-events: none;
    position: absolute;
    top: var(--shop-sidebar-flyout-top, 0px);
    width: min(780px, calc(100vw - 380px));
    z-index: 18;
}

.shop-category-sidebar__panel {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 0 var(--shop-radius) var(--shop-radius) var(--shop-radius);
    box-shadow: 0 18px 40px rgba(51, 62, 72, 0.16);
    display: none;
    min-height: auto;
    height: auto;
    padding: 1.2rem 1.35rem;
    transform-origin: left top;
    will-change: opacity, transform;
}

.shop-category-sidebar.is-open .shop-category-sidebar__panel.is-active {
    animation: shopSidebarFadeIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
    pointer-events: auto;
}

.shop-category-sidebar__submenu {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: 220px minmax(0, 1fr);
    min-height: auto;
    height: auto;
    align-items: start;
}

.shop-category-sidebar__submenu--flat {
    display: block;
}

.shop-category-sidebar__submenu--flat .shop-category-sidebar__leaf-list {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.shop-category-sidebar__brand-menu {
    border-right: 1px solid var(--shop-line);
    display: grid;
    align-content: start;
}

.shop-category-sidebar__brand-trigger {
    align-items: center;
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--shop-line);
    color: var(--shop-ink);
    display: grid;
    gap: 0.65rem;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 52px;
    padding: 0.85rem 0.9rem 0.85rem 0.2rem;
    text-align: left;
    transition: background 0.18s ease, color 0.18s ease;
    width: 100%;
}

.shop-category-sidebar__brand-trigger:hover,
.shop-category-sidebar__brand-trigger:focus,
.shop-category-sidebar__brand-trigger.is-active {
    background: #fff8d6;
}

.shop-category-sidebar__brand-trigger.is-active {
    box-shadow: inset 4px 0 0 var(--shop-accent-dark);
}

.shop-category-sidebar__brand-trigger.is-empty {
    color: #677581;
}

.shop-category-sidebar__brand-trigger-name {
    font-size: 1.02rem;
    font-weight: 700;
}

.shop-category-sidebar__brand-trigger-meta {
    align-items: center;
    color: var(--shop-ink-soft);
    display: inline-flex;
    gap: 0.45rem;
}

.shop-category-sidebar__brand-panels {
    min-width: 0;
}

.shop-category-sidebar__brand-panel {
    display: none;
}

.shop-category-sidebar__brand-panel.is-active {
    animation: shopSidebarFadeIn 0.2s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

.shop-category-sidebar__brand-panel-head {
    align-items: baseline;
    border-bottom: 1px solid var(--shop-line);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
}

.shop-category-sidebar__brand-panel-head strong {
    font-size: 1.15rem;
}

.shop-category-sidebar__leaf-list {
    display: grid;
    gap: 0.5rem 0.85rem;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-category-sidebar__leaf-link {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 0.97rem;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.55rem 0.65rem;
}

.shop-category-sidebar__leaf-link:hover,
.shop-category-sidebar__leaf-link:focus,
.shop-category-sidebar__leaf-link.is-active {
    background: #fff8d6;
}

.shop-category-sidebar__leaf-link.is-active {
    box-shadow: inset 4px 0 0 var(--shop-accent-dark);
}

.shop-category-sidebar__leaf-link.is-empty {
    color: #677581;
}

.shop-category-sidebar__panel-head {
    align-items: baseline;
    border-bottom: 1px solid var(--shop-line);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.85rem;
}

.shop-category-sidebar__panel-head strong {
    font-size: 1.2rem;
}

.shop-category-sidebar__brands {
    column-gap: 1.5rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 1.1rem;
}

.shop-category-sidebar__brand h4 {
    font-size: 1rem;
    margin: 0 0 0.55rem;
}

.shop-category-sidebar__brand ul {
    display: grid;
    gap: 0.35rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-category-sidebar__brand li {
    margin: 0;
}

.shop-category-sidebar__brand a {
    align-items: center;
    border-radius: 6px;
    display: flex;
    font-size: 0.95rem;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.45rem 0.55rem;
}

.shop-category-sidebar__brand a:hover,
.shop-category-sidebar__brand a:focus,
.shop-category-sidebar__brand a.is-active {
    background: #fff8d6;
}

.shop-category-sidebar__brand a.is-empty {
    color: #677581;
}

/* Cascade/accordion styles for mobile category sidebar */
.shop-category-sidebar__cascade {
    display: none;
}

@media (max-width: 1080px) {
    .shop-category-sidebar__cascade {
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
    flex: 0 0 auto;
}

    .shop-category-sidebar__flyout {
        display: none;
    }

    .shop-category-sidebar__cascade-level {
    animation: slideInRight 0.25s ease-out;
    display: flex;
    flex-direction: column;
    min-height: auto;
    height: auto;
    flex: 0 0 auto;
}

    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(20px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    @keyframes slideOutLeft {
        from {
            opacity: 1;
            transform: translateX(0);
        }
        to {
            opacity: 0;
            transform: translateX(-20px);
        }
    }

    .shop-category-sidebar__cascade-head {
        align-items: center;
        border-bottom: 1px solid var(--shop-line);
        display: flex;
        gap: 0.75rem;
        margin-bottom: 1rem;
        padding-bottom: 0.85rem;
        flex-shrink: 0;
    }

    .shop-category-sidebar__cascade-back {
        background: none;
        border: none;
        color: var(--shop-text-primary);
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 0.35rem;
        font-size: 1rem;
        padding: 0;
        flex-shrink: 0;
    }

    .shop-category-sidebar__cascade-back:hover,
    .shop-category-sidebar__cascade-back:focus {
        color: var(--shop-accent-dark);
    }

    .shop-category-sidebar__cascade-back span:first-child {
        font-size: 1.4rem;
        font-weight: bold;
    }

    .shop-category-sidebar__cascade-title {
        font-size: 1.2rem;
        font-weight: 600;
        flex-grow: 1;
        word-break: break-word;
    }

    .shop-category-sidebar__submenu {
        display: block;
        overflow-y: visible;
        max-height: none;
        min-height: auto;
        height: auto;
    }

    .shop-category-sidebar__brand-menu {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .shop-category-sidebar__brand-trigger {
        align-items: center;
        background: transparent;
        border: 1px solid var(--shop-line);
        border-radius: 6px;
        cursor: pointer;
        display: flex;
        font-size: 1rem;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        text-align: left;
        width: 100%;
        flex-shrink: 0;
    }

    .shop-category-sidebar__brand-trigger:hover,
    .shop-category-sidebar__brand-trigger:focus {
        background: #f5f5f5;
        border-color: var(--shop-accent-dark);
    }

    .shop-category-sidebar__brand-trigger.is-active {
        background: #fff8d6;
        border-color: var(--shop-accent-dark);
    }

    .shop-category-sidebar__brand-trigger.is-empty {
        color: #677581;
        cursor: default;
    }

    .shop-category-sidebar__brand-trigger-name {
        flex-grow: 1;
        min-width: 0;
    }

    .shop-category-sidebar__brand-trigger-meta {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        flex-shrink: 0;
    }

    .shop-category-sidebar__leaf-list {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        list-style: none;
        margin: 0;
        padding: 0;
    }

    .shop-category-sidebar__leaf-list li {
        margin: 0;
        flex-shrink: 0;
    }

    .shop-category-sidebar__leaf-link {
        align-items: center;
        background: transparent;
        border: 1px solid var(--shop-line);
        border-radius: 6px;
        color: var(--shop-text-primary);
        display: flex;
        font-size: 1rem;
        justify-content: space-between;
        padding: 0.75rem 1rem;
        text-decoration: none;
        min-height: auto;
    }

    .shop-category-sidebar__leaf-link:hover,
    .shop-category-sidebar__leaf-link:focus {
        background: #f5f5f5;
        border-color: var(--shop-accent-dark);
    }

    .shop-category-sidebar__leaf-link.is-active {
        background: #fff8d6;
        border-color: var(--shop-accent-dark);
        box-shadow: none;
    }
}

.shop-filter-card__head {
    margin-bottom: 1rem;
}

.shop-about-hero {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
}

.shop-about-hero__copy,
.shop-about-card {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    padding: 1.3rem;
}

.shop-about-hero__copy {
    align-content: center;
    display: grid;
    gap: 0.75rem;
}

.shop-about-hero__copy h1,
.shop-about-card h2 {
    margin: 0;
}

.shop-about-hero__copy p {
    color: var(--shop-ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
    max-width: 68ch;
}

.shop-about-card {
    display: grid;
    gap: 0.8rem;
}

.shop-about-details {
    display: grid;
    gap: 0;
    margin: 0;
}

.shop-about-details div {
    border-top: 1px solid var(--shop-line);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(110px, 0.55fr) minmax(0, 1fr);
    padding: 0.72rem 0;
}

.shop-about-details div:first-child {
    border-top: 0;
}

.shop-about-details dt {
    color: var(--shop-ink-soft);
    font-weight: 700;
}

.shop-about-details dd {
    color: var(--shop-ink);
    font-weight: 700;
    margin: 0;
}

.shop-contact-location,
.shop-footer__location {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    justify-content: space-between;
}

.shop-contact-location a,
.shop-footer__location a {
    align-items: center;
    color: #1a73e8;
    display: inline-flex;
    flex: 0 0 auto;
    font-weight: 800;
    gap: 0.35rem;
    text-decoration: none;
}

.shop-contact-location a:hover,
.shop-contact-location a:focus,
.shop-footer__location a:hover,
.shop-footer__location a:focus {
    color: #0b57d0;
    text-decoration: underline;
}

.shop-about-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-legal-page .shop-section__head {
    align-items: flex-start;
}

.shop-legal-panel {
    display: grid;
    gap: 0.85rem;
    line-height: 1.75;
}

.shop-legal-panel h2 {
    font-size: 1.22rem;
    margin: 0.8rem 0 0;
}

.shop-legal-panel p {
    color: var(--shop-ink-soft);
    margin: 0;
}

.shop-legal-panel strong,
.shop-legal-panel a {
    color: var(--shop-ink);
}

.shop-legal-panel a {
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.14em;
}

.shop-service-hero {
    align-items: stretch;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 1.2rem;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.8fr);
    margin-bottom: 1rem;
    overflow: hidden;
}

.shop-service-hero__copy {
    align-content: center;
    display: grid;
    gap: 0.85rem;
    padding: 1.5rem;
}

.shop-service-hero__copy h1 {
    font-size: clamp(1.8rem, 3vw, 2.85rem);
    line-height: 1.04;
    margin: 0;
    max-width: 16ch;
}

.shop-service-hero__copy p {
    color: var(--shop-ink-soft);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
    max-width: 62ch;
}

.shop-service-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.25rem;
}

.shop-service-hero__media {
    background: var(--shop-surface-alt);
    min-height: 360px;
}

.shop-service-hero__media a {
    cursor: zoom-in;
    display: block;
    height: 100%;
    position: relative;
}

.shop-service-hero__media a::after {
    align-items: center;
    background: rgba(51, 62, 72, 0.78);
    border-radius: 999px;
    bottom: 1rem;
    color: #fff;
    content: "Uvećaj";
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    min-height: 30px;
    opacity: 0;
    padding: 0.28rem 0.72rem;
    position: absolute;
    right: 1rem;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.shop-service-hero__media a:hover::after,
.shop-service-hero__media a:focus::after {
    opacity: 1;
    transform: translateY(0);
}

.shop-service-hero__media img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shop-service-hero--buyback .shop-service-hero__media {
    background: #fff;
}

.shop-service-hero--buyback .shop-service-hero__media img {
    object-fit: contain;
}

.shop-service-section {
    padding-bottom: 0;
    padding-top: 0;
}

.shop-service-intro,
.shop-service-steps,
.shop-trade-layout {
    display: grid;
    gap: 1rem;
}

.shop-service-intro {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-service-intro .shop-panel,
.shop-service-steps .shop-panel,
.shop-trade-layout .shop-panel {
    background:
        linear-gradient(90deg, rgba(254, 215, 0, 0.18), rgba(254, 215, 0, 0) 34%),
        var(--shop-surface);
    border-color: #dde5ed;
    box-shadow: 0 14px 32px rgba(51, 62, 72, 0.1);
    position: relative;
    overflow: hidden;
}

.shop-service-intro .shop-panel::before,
.shop-service-steps .shop-panel::before,
.shop-trade-layout .shop-panel::before {
    background: var(--shop-accent);
    content: "";
    inset: 0 auto 0 0;
    position: absolute;
    width: 5px;
}

.shop-service-intro .shop-panel h2,
.shop-service-steps .shop-panel h2,
.shop-trade-layout .shop-panel h2 {
    color: #20303c;
}

.shop-service-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-service-matrix {
    display: grid;
    gap: 1rem;
}

.shop-service-matrix__group {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    padding: 1.2rem;
    position: relative;
    overflow: hidden;
}

.shop-service-matrix__group::after {
    border-radius: 999px;
    content: "";
    height: 170px;
    opacity: 0.14;
    position: absolute;
    right: -48px;
    top: -72px;
    width: 170px;
}

.shop-service-matrix__group h3 {
    align-items: center;
    border-bottom: 1px solid var(--shop-line);
    display: flex;
    font-size: 1.25rem;
    gap: 0.7rem;
    margin: 0 0 1rem;
    padding-bottom: 0.75rem;
    position: relative;
    z-index: 1;
}

.shop-service-platform-mark {
    align-items: center;
    color: #fff;
    display: inline-flex;
    font-size: 1.3rem;
    height: 34px;
    justify-content: center;
    min-width: 34px;
    padding: 0;
}

.shop-service-platform-mark i {
    line-height: 1;
}

.shop-service-matrix__group--playstation {
    border-color: rgba(0, 112, 209, 0.2);
}

.shop-service-matrix__group--playstation::after {
    background: #0070d1;
}

.shop-service-matrix__group--playstation .shop-service-platform-mark {
    color: #0070d1;
}

.shop-service-matrix__group--nintendo {
    border-color: rgba(230, 0, 18, 0.2);
}

.shop-service-matrix__group--nintendo::after {
    background: #e60012;
}

.shop-service-matrix__group--nintendo .shop-service-platform-mark {
    color: #e60012;
}

.shop-service-matrix__group--xbox {
    border-color: rgba(16, 124, 16, 0.22);
}

.shop-service-matrix__group--xbox::after {
    background: #107c10;
}

.shop-service-matrix__group--xbox .shop-service-platform-mark {
    color: #107c10;
}

.shop-service-models {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-service-model {
    border: 1px solid #dfe6ed;
    border-radius: var(--shop-radius);
    box-shadow: 0 8px 18px rgba(51, 62, 72, 0.06);
    padding: 0.9rem;
    position: relative;
    z-index: 1;
}

.shop-service-matrix__group--playstation .shop-service-model {
    background: linear-gradient(180deg, rgba(0, 112, 209, 0.09), #fbfdff 52%);
    border-color: rgba(0, 112, 209, 0.16);
}

.shop-service-matrix__group--nintendo .shop-service-model {
    background: linear-gradient(180deg, rgba(230, 0, 18, 0.08), #fffdfd 52%);
    border-color: rgba(230, 0, 18, 0.14);
}

.shop-service-matrix__group--xbox .shop-service-model {
    background: linear-gradient(180deg, rgba(16, 124, 16, 0.09), #fbfffb 52%);
    border-color: rgba(16, 124, 16, 0.16);
}

.shop-service-model h4 {
    font-size: 1rem;
    margin: 0 0 0.55rem;
}

.shop-service-model ul,
.shop-service-checklist {
    display: grid;
    gap: 0.42rem;
    margin: 0;
    padding-left: 1.1rem;
}

.shop-service-model li,
.shop-service-checklist li {
    color: var(--shop-ink-soft);
}

.shop-service-note {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    padding: 1.25rem;
}

.shop-service-note h2 {
    margin: 0 0 0.55rem;
}

.shop-service-note p {
    color: var(--shop-ink-soft);
    margin: 0;
    max-width: 74ch;
}

.shop-service-gallery-section .shop-section__head {
    align-items: end;
}

.shop-service-gallery {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.shop-service-gallery__item {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 16px;
    box-shadow: var(--shop-shadow);
    display: block;
    overflow: hidden;
    position: relative;
}

.shop-service-gallery__item::after {
    align-items: center;
    background: rgba(17, 24, 39, 0.62);
    color: #fff;
    content: "Pogledaj";
    display: flex;
    font-weight: 800;
    inset: 0;
    justify-content: center;
    opacity: 0;
    position: absolute;
    transition: opacity 0.18s ease;
}

.shop-service-gallery__item:hover::after,
.shop-service-gallery__item:focus::after {
    opacity: 1;
}

.shop-service-gallery__item img {
    aspect-ratio: 4 / 3;
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shop-trade-layout {
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.shop-hero-banner {
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 450px);
    padding: 1.2rem;
}

.shop-hero-showcase {
    display: grid;
    gap: 0.85rem;
    position: relative;
    z-index: 3;
}

.shop-hero-showcase__slides {
    display: grid;
    position: relative;
    touch-action: pan-y;
    user-select: none;
}

.shop-hero-showcase__slides.is-dragging {
    cursor: grabbing;
}

.shop-hero-slide {
    display: grid;
    gap: 0.85rem;
    grid-area: 1 / 1;
    opacity: 0;
    pointer-events: none;
    transform: translateX(18px);
    transition: opacity 0.48s ease, transform 0.62s cubic-bezier(0.22, 1, 0.36, 1);
    visibility: hidden;
}

.shop-hero-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    position: relative;
    transform: translateX(0);
    visibility: visible;
    z-index: 1;
}

.shop-hero-banner__copy {
    display: grid;
    align-content: start;
    gap: 0.9rem;
}

.shop-hero-banner__copy h1 {
    font-size: clamp(1.85rem, 3vw, 2.65rem);
    line-height: 1;
    margin: 0;
    max-width: 14ch;
}

.shop-hero-banner__copy p {
    color: var(--shop-ink-soft);
    font-size: 1rem;
    line-height: 1.48;
    margin: 0;
    max-width: 42ch;
}

.shop-hero-product {
    align-items: start;
    background: #fafbfd;
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(0, 1fr);
    padding: 0.8rem 0.9rem;
}

.shop-hero-product__meta {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.shop-hero-product__meta span,
.shop-hero-product__meta small {
    color: var(--shop-ink-soft);
    font-size: 0.88rem;
}

.shop-hero-product__meta strong {
    font-size: 1.1rem;
}

.shop-hero-product__excerpt {
    color: var(--shop-ink-soft);
    display: -webkit-box;
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0.15rem 0 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-hero-product__stock {
    font-weight: 700;
}

.shop-hero-product__stock--limited {
    color: var(--shop-accent-dark);
}

.shop-hero-product__stock--out {
    color: #7a8591;
}

.shop-hero-product__purchase {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: space-between;
}

.shop-hero-product__price {
    color: var(--shop-ink);
    font-size: 1.45rem;
    font-weight: 700;
    white-space: nowrap;
}

.shop-hero-product__actions,
.shop-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.shop-hero-product__actions {
    grid-column: 1 / -1;
    justify-content: center;
    padding-top: 0.05rem;
    position: relative;
    z-index: 4;
}

.shop-hero-slider__controls {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    margin: -0.15rem 0 0.05rem;
    position: relative;
    z-index: 4;
}

.shop-hero-slider__arrow {
    display: none;
}

.shop-hero-slider__dot {
    background: rgba(51, 62, 72, 0.14);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 10px;
    padding: 0;
    transition: background 0.22s ease, transform 0.22s ease, width 0.22s ease;
    width: 10px;
}

.shop-hero-slider__dot:hover,
.shop-hero-slider__dot:focus {
    background: rgba(51, 62, 72, 0.32);
}

.shop-hero-slider__dot.is-active {
    background: var(--shop-accent-dark);
    transform: scale(1.02);
    width: 32px;
}

.shop-hero-banner__highlights {
    display: grid;
    gap: 0.6rem;
    margin-top: 0.15rem;
}

.shop-hero-banner__highlights span {
    align-items: center;
    background: linear-gradient(90deg, #ffffff 0%, #fffbe9 100%);
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.05);
    color: var(--shop-ink);
    display: flex;
    font-size: 0.86rem;
    font-weight: 700;
    gap: 0.55rem;
    min-height: 42px;
    padding: 0.45rem 0.65rem;
}

.shop-hero-banner__highlights strong {
    align-items: center;
    background: var(--shop-accent);
    border-radius: 999px;
    color: var(--shop-ink);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.72rem;
    height: 25px;
    justify-content: center;
    width: 25px;
}

.shop-hero-banner__media a,
.shop-hero-banner__placeholder {
    align-items: center;
    background: linear-gradient(135deg, #f7f9fb, #fffbe9);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: flex;
    aspect-ratio: 1 / 1;
    justify-content: center;
    min-height: 0;
    overflow: hidden;
}

.shop-hero-banner__media img {
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    width: 100%;
}

.shop-hero-banner__placeholder {
    color: #c9d0d6;
    font-size: 3rem;
    font-weight: 700;
}

.shop-deal-panel__product {
    display: grid;
    gap: 0.8rem;
    margin: 0.9rem 0 0;
}

.shop-deal-panel__image {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: flex;
    height: 190px;
    justify-content: center;
    overflow: hidden;
}

.shop-deal-panel__image img {
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    width: 100%;
}

.shop-deal-panel__image span {
    color: #c9d0d6;
    font-size: 2.2rem;
    font-weight: 700;
}

.shop-deal-panel__body {
    display: grid;
    gap: 0.35rem;
}

.shop-deal-panel__body strong {
    font-size: 1.1rem;
}

.shop-deal-panel__body strong a {
    color: inherit;
}

.shop-deal-panel__excerpt {
    color: var(--shop-ink-soft);
    display: -webkit-box;
    font-size: 0.92rem;
    line-height: 1.45;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-deal-panel__stock {
    font-size: 0.88rem;
    font-style: normal;
    font-weight: 700;
}

.shop-deal-panel__stock--limited {
    color: var(--shop-accent-dark);
}

.shop-deal-panel__stock--out {
    color: #7a8591;
}

.shop-deal-panel__body .shop-badge {
    color: var(--shop-success);
    font-size: 0.76rem;
    font-weight: 700;
}

.shop-deal-panel__body .shop-badge--muted {
    color: var(--shop-ink-soft);
}

.shop-deal-panel__purchase > span:first-child {
    font-size: 1.35rem;
    font-weight: 700;
}

.shop-deal-panel__purchase {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    justify-content: space-between;
}

.shop-deal-panel__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
    margin-top: 0.15rem;
}

.shop-home-brief {
    background:
        linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
    display: grid;
    gap: 0.8rem;
}

.shop-home-brief h2 {
    font-size: 1.05rem;
    line-height: 1.2;
    margin: 0;
}

.shop-home-brief p {
    color: var(--shop-ink-soft);
    font-size: 0.92rem;
    line-height: 1.5;
    margin: 0;
}

.shop-home-brief__stats {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shop-home-brief__stats div {
    background: #f7f9fb;
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.15rem;
    padding: 0.7rem 0.75rem;
}

.shop-home-brief__stats strong {
    color: var(--shop-ink);
    font-size: 1.15rem;
    line-height: 1;
}

.shop-home-brief__stats span {
    color: var(--shop-ink-soft);
    font-size: 0.78rem;
}

.shop-info-stack {
    display: grid;
    gap: 0.75rem;
}

.shop-info-stack div {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.15rem;
    padding: 0.9rem 1rem;
}

.shop-info-stack strong {
    font-size: 1.5rem;
}

.shop-service-strip {
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 1rem;
}

.shop-service-strip article {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 0.25rem;
    padding: 1rem 1.1rem;
}

.shop-service-strip strong {
    font-size: 1rem;
}

.shop-product-grid {
    align-items: stretch;
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
}

.shop-product-card {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: flex;
    flex-direction: column;
    height: 100%;
    min-width: 0;
    overflow: hidden;
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.shop-product-card:hover,
.shop-product-card:focus-within {
    box-shadow: 0 16px 30px rgba(51, 62, 72, 0.12);
    transform: translateY(-2px);
}

.shop-product-card__media {
    align-items: center;
    background: var(--shop-surface);
    border-bottom: 1px solid var(--shop-line);
    display: flex;
    height: 220px;
    justify-content: center;
    overflow: hidden;
}

.shop-product-card__media img,
.shop-gallery__hero img,
.shop-gallery__thumbs img,
.shop-table__thumb img {
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    width: 100%;
}

.shop-product-card__media span,
.shop-gallery__hero span,
.shop-table__thumb span {
    color: #c9d0d6;
    font-size: 2.2rem;
    font-weight: 700;
}

.shop-product-card__body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem;
}

.shop-product-card__meta,
.shop-product-summary__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.7rem;
    font-size: 0.83rem;
}

.shop-product-card h3 {
    display: -webkit-box;
    font-size: 1rem;
    line-height: 1.32;
    line-clamp: 3;
    margin: 0;
    min-height: 3.96em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.shop-product-card__excerpt {
    display: -webkit-box;
    font-size: 0.92rem;
    line-clamp: 2;
    margin: 0;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.shop-product-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-product-card__footer {
    align-content: end;
    display: grid;
    gap: 0.75rem;
    grid-template-rows: minmax(34px, auto) minmax(42px, auto);
    margin-top: auto;
    min-height: 91px;
}

.shop-product-card__footer .shop-card-actions {
    align-items: center;
    margin-top: 0;
    min-height: 42px;
}

.shop-badge {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 700;
    min-height: 24px;
    padding: 0 0.65rem;
}

.shop-badge--sale {
    background: rgba(244, 67, 54, 0.1);
    color: var(--shop-danger);
}

.shop-badge--stock {
    background: rgba(0, 166, 80, 0.12);
    color: var(--shop-success);
}

.shop-badge--muted {
    background: rgba(93, 107, 117, 0.12);
    color: var(--shop-ink-soft);
}

.shop-price {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.shop-price--card {
    align-items: center;
    display: grid;
    gap: 0.45rem 0.65rem;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: 34px;
    justify-content: space-between;
}

.shop-product-card__body > .shop-price--card {
    margin-top: auto;
}

.shop-price strong {
    font-size: 1.35rem;
    font-weight: 700;
    white-space: nowrap;
}

.shop-price--card .shop-badge {
    font-size: 0.72rem;
    justify-self: end;
    padding-left: 0.56rem;
    padding-right: 0.56rem;
    white-space: nowrap;
}

.shop-price--card .shop-price__old {
    grid-column: 1 / -1;
    justify-self: start;
}

.shop-price span:not(.shop-badge),
.shop-price__old {
    color: #99a4ad;
    font-size: 0.95rem;
    text-decoration: line-through;
}

.shop-price--large strong {
    font-size: 2.1rem;
}

.shop-card-actions {
    display: grid;
    gap: 0.65rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-card-actions .shop-button {
    width: 100%;
}

.shop-inline-form {
    display: contents;
}

.shop-button {
    align-items: center;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.92rem;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 0.7rem 1rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.shop-button:hover,
.shop-button:focus {
    transform: translateY(-1px);
}

.shop-button:disabled {
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
}

.shop-button--primary {
    background: var(--shop-accent);
    color: var(--shop-ink);
}

.shop-button--primary:hover,
.shop-button--primary:focus {
    background: var(--shop-accent-dark);
}

.shop-button--ghost {
    background: transparent;
    border: 1px solid var(--shop-line);
    color: var(--shop-ink);
}

.shop-button--continue {
    background: #ffffff;
    border: 1px solid rgba(51, 62, 72, 0.24);
    box-shadow: 0 8px 18px rgba(51, 62, 72, 0.08);
    color: var(--shop-ink);
}

.shop-button--continue:hover,
.shop-button--continue:focus {
    background: #f6f8fa;
    border-color: rgba(51, 62, 72, 0.42);
}

.shop-button--update-cart {
    background: var(--shop-accent);
    border: 1px solid var(--shop-accent-dark);
    box-shadow: 0 10px 22px rgba(254, 215, 0, 0.28);
    color: var(--shop-ink);
}

.shop-button--update-cart:hover,
.shop-button--update-cart:focus {
    background: var(--shop-accent-dark);
}

.shop-button--block {
    width: 100%;
}

.shop-catalog-layout,
.shop-catalog-sidebar,
.shop-cart-layout,
.shop-checkout-layout,
.shop-detail-panels,
.shop-product-detail {
    display: grid;
    gap: 1rem;
}

.shop-catalog-layout {
    align-items: start;
    grid-template-columns: 300px minmax(0, 1fr);
}

.shop-catalog-content {
    display: grid;
    gap: 1rem;
}

.shop-catalog-sidebar {
    display: grid;
    gap: 1rem;
}

.shop-catalog-intro {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    padding: 0.95rem 1.15rem;
}

.shop-catalog-intro__copy {
    min-width: 0;
    width: 100%;
}

.shop-catalog-intro--trail {
    align-items: center;
}

.shop-catalog-intro__topline {
    align-items: center;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    min-width: 0;
}

.shop-catalog-location {
    align-items: center;
    color: #7b8a96;
    display: flex;
    flex-wrap: nowrap;
    font-size: 0.76rem;
    font-weight: 700;
    gap: 0.38rem;
    letter-spacing: 0.12em;
    line-height: 1.25;
    margin-bottom: 0;
    overflow: hidden;
    text-transform: uppercase;
    white-space: nowrap;
}

.shop-catalog-location span,
.shop-catalog-location strong {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.shop-catalog-location strong {
    color: var(--shop-ink);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.14em;
}

.shop-catalog-location__separator {
    color: var(--shop-accent-dark);
    flex: 0 0 auto;
}

.shop-catalog-intro__stats {
    align-items: end;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: right;
    white-space: nowrap;
}

.shop-catalog-intro__summary-line {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    justify-content: flex-end;
    margin-left: auto;
    min-width: 0;
    text-align: right;
}

.shop-catalog-intro__summary-line .shop-section__lead {
    margin: 0;
}

.shop-catalog-intro__summary-line .shop-section__lead strong {
    color: var(--shop-ink);
    font-size: 1.04em;
}

.shop-catalog-intro__reset {
    align-items: center;
    background: rgba(254, 215, 0, 0.22);
    border: 1px solid rgba(244, 202, 0, 0.42);
    border-radius: 999px;
    color: var(--shop-ink);
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 700;
    justify-content: center;
    min-height: 30px;
    padding: 0.3rem 0.68rem;
}

.shop-catalog-intro__reset:hover,
.shop-catalog-intro__reset:focus {
    background: var(--shop-accent);
}

.shop-reset-text-short {
    display: none;
}

.shop-catalog-intro__stats strong {
    font-size: 1.05rem;
}

.shop-catalog-intro__stats span {
    color: var(--shop-ink-soft);
    font-size: 0.88rem;
}

.shop-search-insights {
    background: linear-gradient(180deg, #fffef5 0%, #ffffff 100%);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 0.85rem;
    padding: 1rem 1.2rem;
}

.shop-search-insights__summary {
    display: grid;
    gap: 0.3rem;
}

.shop-search-insights__summary strong {
    font-size: 1.05rem;
}

.shop-search-insights__summary span,
.shop-search-fallback__head span {
    color: var(--shop-ink-soft);
}

.shop-search-insights__note {
    color: var(--shop-ink-soft);
    font-size: 0.92rem;
    margin: 0;
}

.shop-search-insights__meta,
.shop-search-insights__links,
.shop-empty-state__actions,
.shop-empty-state__links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: center;
}

.shop-search-insights__meta {
    justify-content: flex-start;
}

.shop-search-insights__pill,
.shop-search-insights__link,
.shop-empty-state__link {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.84rem;
    gap: 0.4rem;
    min-height: 36px;
    padding: 0.4rem 0.8rem;
}

.shop-search-insights__link,
.shop-empty-state__link {
    font-weight: 700;
    transition: background 0.18s ease, border-color 0.18s ease;
}

.shop-search-insights__link:hover,
.shop-search-insights__link:focus,
.shop-empty-state__link:hover,
.shop-empty-state__link:focus {
    background: #fff8d6;
    border-color: rgba(244, 202, 0, 0.55);
}

.shop-search-insights__link small {
    color: var(--shop-ink-soft);
    font-size: 0.76rem;
    font-weight: 700;
}

.shop-filter-summary {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.7rem;
}

.shop-filter-summary__title {
    color: var(--shop-ink);
    font-size: 0.84rem;
    font-weight: 400;
    line-height: 1;
    margin-right: 0.26rem;
}

.shop-filter-summary__tag {
    align-items: center;
    display: inline-flex;
    gap: 0.24rem;
    font-size: 0.8rem;
    font-weight: 400;
    padding: 0;
}

.shop-filter-summary__tag + .shop-filter-summary__tag::before {
    color: var(--shop-accent-dark);
    content: '|';
    font-weight: 400;
    margin: 0 0.42rem 0 0.12rem;
}

.shop-filter-summary__name {
    color: var(--shop-ink-soft);
    font-weight: 400;
}

.shop-filter-summary__value {
    color: #6b7280;
    font-weight: 700;
}

.shop-filter-form,
.shop-checkout-form {
    display: grid;
    gap: 1rem;
}

.shop-checkout-form {
    gap: 0.72rem;
    position: relative;
}

.shop-checkout-form .shop-panel__head {
    margin-bottom: 0.25rem;
}

.shop-checkout-form.is-processing {
    pointer-events: none;
}

.shop-checkout-processing {
    align-items: center;
    background: rgba(255, 255, 255, 0.82);
    backdrop-filter: blur(2px);
    border-radius: var(--shop-radius);
    display: flex;
    inset: 0;
    justify-content: center;
    padding: 1rem;
    position: absolute;
    z-index: 20;
}

.shop-checkout-processing[hidden] {
    display: none;
}

.shop-checkout-processing__box {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 0.45rem;
    justify-items: center;
    max-width: 320px;
    padding: 1.25rem;
    text-align: center;
}

.shop-checkout-processing__box span:last-child {
    color: var(--shop-ink-soft);
    font-size: 0.92rem;
}

.shop-checkout-processing__spinner {
    animation: shop-spin 0.78s linear infinite;
    border: 3px solid #e5e7eb;
    border-top-color: var(--shop-accent);
    border-radius: 999px;
    height: 42px;
    width: 42px;
}

@keyframes shop-spin {
    to {
        transform: rotate(360deg);
    }
}

.shop-filter-mobile-toggle {
    display: none;
}

.shop-filter-group,
.shop-form-group {
    display: grid;
    gap: 0.4rem;
}

.shop-filter-inline-group {
    align-items: flex-start;
    display: flex;
    gap: 0.55rem;
}

.shop-filter-inline-group__label {
    flex: 0 0 92px;
    font-size: 0.9rem;
    font-weight: 700;
    min-width: 0;
    padding-top: 0.3rem;
}

.shop-filter-inline-group__control {
    -webkit-appearance: none;
    appearance: none;
    background-color: var(--shop-surface);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14' fill='none'%3E%3Cpath d='M3.25 5.5L7 9.25L10.75 5.5' stroke='%23333E48' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-position: right 0.8rem center;
    background-repeat: no-repeat;
    background-size: 0.85rem 0.85rem;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    box-shadow: 0 1px 2px rgba(51, 62, 72, 0.04);
    color: var(--shop-ink);
    cursor: pointer;
    flex: 1 1 auto;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1.2;
    min-height: 2.35rem;
    min-width: 0;
    outline: none;
    padding: 0.45rem 2.1rem 0.45rem 0.8rem;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease;
    width: 100%;
}

.shop-filter-inline-group__control:hover {
    background-color: #fff8d6;
    border-color: rgba(244, 202, 0, 0.45);
}

.shop-filter-inline-group__control:focus {
    border-color: rgba(244, 202, 0, 0.82);
    box-shadow: 0 0 0 3px rgba(254, 215, 0, 0.18);
}

.shop-filter-inline-group .shop-filter-pills {
    flex: 1 1 auto;
    min-width: 0;
}

.shop-filter-fieldset {
    border: 0;
    display: grid;
    gap: 0.55rem;
    margin: 0;
    padding: 0;
}

.shop-filter-fieldset legend {
    font-size: 0.92rem;
    font-weight: 700;
    margin: 0;
    padding: 0;
}

.shop-filter-group label,
.shop-form-group label,
.shop-buy-box label {
    font-size: 0.92rem;
    font-weight: 700;
}

.shop-filter-group input,
.shop-filter-group select,
.shop-form-group input,
.shop-form-group select,
.shop-form-group textarea,
.shop-buy-box input,
.shop-buy-box select,
.shop-table input[type='number'] {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 6px;
    color: var(--shop-ink);
    min-height: 44px;
    outline: none;
    padding: 0.7rem 0.85rem;
    width: 100%;
}

.shop-form-group input.is-invalid,
.shop-form-group select.is-invalid,
.shop-form-group textarea.is-invalid,
.shop-consent-check.is-invalid {
    border-color: #d92d20;
    box-shadow: 0 0 0 3px rgba(217, 45, 32, 0.12);
}

.shop-field-error {
    color: #b42318;
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.35;
    margin-top: 0.3rem;
}

.shop-form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.shop-filter-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-filter-pills--compact {
    align-items: center;
    gap: 0.3rem;
}

.shop-filter-pill {
    position: relative;
}

.shop-filter-pill input {
    opacity: 0;
    pointer-events: none;
    position: absolute;
}

.shop-filter-pill span {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    min-height: 40px;
    padding: 0.55rem 0.9rem;
    transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease, color 0.18s ease;
}

.shop-filter-pills--compact .shop-filter-pill span {
    font-size: 0.82rem;
    line-height: 1.1;
    min-height: 30px;
    padding: 0.24rem 0.5rem;
    white-space: nowrap;
}

.shop-filter-pill:hover span,
.shop-filter-pill:focus-within span {
    background: #fff8d6;
    border-color: rgba(244, 202, 0, 0.55);
}

.shop-filter-pill input:checked + span {
    background: rgba(254, 215, 0, 0.28);
    border-color: rgba(244, 202, 0, 0.82);
    box-shadow: inset 0 -2px 0 var(--shop-ink);
    font-weight: 700;
}

.shop-price-filter {
    display: grid;
    gap: 0.75rem;
}

.shop-price-filter__values {
    align-items: center;
    display: flex;
    font-size: 0.82rem;
    gap: 1rem;
    justify-content: space-between;
}

.shop-price-filter__values span {
    color: var(--shop-ink);
    font-weight: 700;
}

.shop-price-filter__slider {
    height: 30px;
    position: relative;
}

.shop-price-filter__track,
.shop-price-filter__active {
    border-radius: 999px;
    height: 4px;
    left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.shop-price-filter__track {
    background: rgba(93, 107, 117, 0.18);
}

.shop-price-filter__active {
    background: var(--shop-accent);
    left: var(--shop-price-start, 0%);
    right: calc(100% - var(--shop-price-end, 100%));
}

.shop-price-filter__slider input[type='range'] {
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    height: 30px;
    left: 0;
    margin: 0;
    min-height: 0;
    outline: none;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 100%;
}

.shop-price-filter__slider input[type='range']::-webkit-slider-runnable-track {
    background: transparent;
    height: 4px;
}

.shop-price-filter__slider input[type='range']::-moz-range-track {
    background: transparent;
    height: 4px;
}

.shop-price-filter__slider input[type='range']::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    background: var(--shop-surface);
    border: 2px solid var(--shop-accent-dark);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(51, 62, 72, 0.18);
    cursor: pointer;
    height: 16px;
    margin-top: -6px;
    pointer-events: auto;
    width: 16px;
}

.shop-price-filter__slider input[type='range']::-moz-range-thumb {
    background: var(--shop-surface);
    border: 2px solid var(--shop-accent-dark);
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(51, 62, 72, 0.18);
    cursor: pointer;
    height: 16px;
    pointer-events: auto;
    width: 16px;
}

.shop-filter-accordions {
    display: grid;
    gap: 0.25rem;
}

.shop-filter-accordion {
    border-top: 1px solid var(--shop-line);
    padding-top: 0.85rem;
}

.shop-filter-accordion summary {
    align-items: center;
    cursor: pointer;
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    gap: 0.8rem;
    justify-content: space-between;
    list-style: none;
}

.shop-filter-accordion summary::-webkit-details-marker {
    display: none;
}

.shop-filter-accordion summary::after {
    color: var(--shop-ink-soft);
    content: '+';
    font-size: 1.1rem;
    line-height: 1;
}

.shop-filter-accordion[open] summary::after {
    content: '-';
}

.shop-filter-accordion summary strong {
    align-items: center;
    background: rgba(254, 215, 0, 0.22);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.72rem;
    justify-content: center;
    min-width: 22px;
    padding: 0.14rem 0.35rem;
}

.shop-filter-accordion__body {
    display: grid;
    gap: 0.25rem;
    padding-top: 0.7rem;
}

.shop-filter-check {
    align-items: center;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: 18px minmax(0, 1fr) auto;
    min-height: 38px;
}

.shop-filter-check input {
    height: 18px;
    margin: 0;
    width: 18px;
}

.shop-filter-check__label {
    color: var(--shop-ink);
    font-size: 0.95rem;
}

.shop-filter-check__count {
    color: var(--shop-ink-soft);
    font-size: 0.86rem;
}

.shop-filter-price-row {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-filter-help {
    color: var(--shop-ink-soft);
    display: block;
    font-size: 0.82rem;
    line-height: 1.45;
}

.shop-filter-help--compact {
    line-height: 1.2;
    white-space: nowrap;
}

.shop-filter-actions {
    display: flex;
    gap: 0.6rem;
}

.shop-filter-apply {
    display: none;
}

.shop-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    margin-top: 1rem;
}

.shop-pagination__controls {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    justify-content: center;
}

.shop-pagination a,
.shop-pagination__ellipsis {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    display: inline-flex;
    font-weight: 700;
    height: 38px;
    justify-content: center;
    min-width: 38px;
    padding: 0 0.75rem;
}

.shop-pagination__ellipsis {
    color: var(--shop-ink-soft);
    min-width: 38px;
}

.shop-pagination__nav {
    padding: 0 1rem !important;
}

.shop-pagination a.is-active {
    background: var(--shop-accent);
    border-color: var(--shop-accent);
}

@media (max-width: 720px) {
    .shop-pagination {
        align-items: stretch;
    }

    .shop-pagination__controls {
        width: 100%;
    }

    .shop-pagination__page--mobile-hidden {
        display: none;
    }

    .shop-pagination__nav {
        padding: 0 0.8rem !important;
    }
}

.shop-breadcrumbs {
    align-items: center;
    color: var(--shop-ink-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-top: 1rem;
}

.shop-breadcrumbs strong {
    color: var(--shop-ink);
}

.shop-product-detail {
    align-items: stretch;
    grid-template-columns: minmax(0, 1fr) minmax(340px, 470px);
}

.shop-product-mobile-sidebar {
    display: none;
}

.shop-gallery,
.shop-product-summary {
    padding: 1.2rem;
}

.shop-gallery {
    --shop-gallery-hero-height: 500px;
    align-items: start;
    display: grid;
    gap: 1rem;
    grid-template-columns: 110px minmax(0, 1fr);
}

.shop-gallery--single {
    grid-template-columns: minmax(0, 1fr);
}

.shop-gallery__hero {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: flex;
    height: var(--shop-gallery-hero-height);
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.shop-gallery__hero-link {
    display: block;
    height: 100%;
    width: 100%;
}

.shop-gallery__nav {
    align-items: center;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(230, 233, 237, 0.9);
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(51, 62, 72, 0.16);
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 2rem;
    font-weight: 700;
    height: 44px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: background 0.18s ease, transform 0.18s ease;
    width: 44px;
    z-index: 2;
}

.shop-gallery__nav:hover,
.shop-gallery__nav:focus {
    background: var(--shop-accent);
    transform: translateY(-50%) scale(1.04);
}

.shop-gallery__nav--prev {
    left: 0.75rem;
}

.shop-gallery__nav--next {
    right: 0.75rem;
}

.shop-gallery__thumbs {
    align-content: start;
    display: grid;
    gap: 0.75rem;
    grid-auto-rows: 90px;
    height: var(--shop-gallery-hero-height);
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    padding-right: 0.35rem;
    scrollbar-gutter: stable;
}

.shop-gallery__thumb {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 6px;
    cursor: pointer;
    display: block;
    overflow: hidden;
    padding: 0;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.shop-gallery__thumb:hover,
.shop-gallery__thumb:focus,
.shop-gallery__thumb.is-active {
    border-color: var(--shop-accent);
    box-shadow: 0 0 0 2px rgba(254, 215, 0, 0.22);
}

.shop-product-summary {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    height: 100%;
    position: sticky;
    top: 1rem;
}

.shop-product-summary__header {
    align-items: start;
    display: flex;
    gap: 0.8rem;
    justify-content: space-between;
}

.shop-product-summary__header-meta {
    align-items: flex-end;
    color: var(--shop-ink-soft);
    display: grid;
    gap: 0.15rem;
    justify-items: end;
    text-align: right;
    white-space: nowrap;
}

.shop-product-summary__header-meta span {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.shop-product-summary__header-meta strong {
    color: var(--shop-ink);
    font-size: 1rem;
}

.shop-product-summary h1 {
    font-size: clamp(1.8rem, 2.6vw, 2.45rem);
    line-height: 1.08;
    margin: 0.35rem 0 0;
}

.shop-product-summary__signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-pill {
    align-items: center;
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    min-height: 32px;
    padding: 0.35rem 0.75rem;
    text-transform: uppercase;
}

.shop-pill--sale {
    background: rgba(244, 67, 54, 0.1);
    color: var(--shop-danger);
}

.shop-pill--in_stock {
    background: rgba(0, 166, 80, 0.1);
    color: var(--shop-success);
}

.shop-pill--limited {
    background: rgba(255, 152, 0, 0.12);
    color: #bd7a00;
}

.shop-pill--out {
    background: rgba(93, 107, 117, 0.12);
    color: var(--shop-ink-soft);
}

.shop-pill--neutral {
    background: var(--shop-surface-alt);
    color: var(--shop-ink-soft);
}

.shop-product-summary__savings {
    color: var(--shop-success);
    font-size: 0.95rem;
    font-weight: 700;
    margin: -0.55rem 0 0;
}

.shop-product-summary__lead {
    color: var(--shop-ink-soft);
    font-size: 0.98rem;
    line-height: 1.6;
    margin: 0;
}

.shop-stock-inline {
    align-items: center;
    background: #fffdf4;
    border: 1px solid rgba(244, 202, 0, 0.22);
    border-radius: 999px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.55rem;
    padding: 0.42rem 0.68rem;
}

.shop-stock-inline__icon {
    border-radius: 50%;
    display: inline-flex;
    flex: 0 0 auto;
    height: 11px;
    width: 11px;
}

.shop-stock-inline__label {
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.2;
}

.shop-stock-inline__meta {
    color: var(--shop-ink-soft);
    font-size: 0.82rem;
    line-height: 1.2;
    margin-left: auto;
}

.shop-stock-inline--in_stock .shop-stock-inline__icon {
    background: var(--shop-success);
    box-shadow: 0 0 0 3px rgba(0, 166, 80, 0.1);
}

.shop-stock-inline--limited .shop-stock-inline__icon {
    background: var(--shop-warning);
    box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.12);
}

.shop-stock-inline--out {
    background: #fbfcfd;
    border-color: rgba(93, 107, 117, 0.2);
}

.shop-stock-inline--out .shop-stock-inline__icon {
    background: var(--shop-danger);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.shop-buy-box {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.75rem;
    margin-top: 0.15rem;
    padding: 0.95rem;
}

.shop-buy-box--limited {
    border-color: rgba(255, 152, 0, 0.36);
    box-shadow: 0 12px 24px rgba(255, 152, 0, 0.08);
}

.shop-buy-box--out {
    background: #fbfcfd;
}

.shop-buy-box__eyebrow,
.shop-panel__eyebrow {
    color: var(--shop-ink-soft);
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.shop-buy-box__row {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 156px minmax(0, 1fr);
}

.shop-buy-box__footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
}

.shop-buy-box__footer .shop-link-button {
    color: var(--shop-ink-soft);
}

.shop-buy-box__details {
    display: grid;
    gap: 0.8rem;
}

.shop-buy-box__requirements .shop-summary-lines {
    margin-top: 0.25rem;
}

.shop-buy-box__selection-note {
    color: var(--shop-ink-soft);
    font-size: 0.9rem;
    margin: -0.2rem 0 0;
}

.shop-option-panel {
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.7rem;
    margin-top: 0.15rem;
    padding: 0.95rem;
}

.shop-option-pills {
    display: grid;
    gap: 0.65rem;
}

.shop-option-pill {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius-sm);
    color: var(--shop-ink);
    display: grid;
    gap: 0.2rem;
    padding: 0.8rem 0.9rem;
    transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.shop-option-pill strong {
    font-size: 0.95rem;
}

.shop-option-pill small {
    color: var(--shop-ink-soft);
}

.shop-option-pill:hover,
.shop-option-pill:focus {
    background: #fff7cf;
    border-color: rgba(244, 202, 0, 0.5);
}

.shop-option-pill.is-active {
    background: #fff1aa;
    border-color: rgba(244, 202, 0, 0.56);
    box-shadow: 0 12px 24px rgba(244, 202, 0, 0.12);
}

.shop-product-summary__sections {
    border-top: 1px solid var(--shop-line);
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    margin-top: auto;
    padding-top: 0.9rem;
}

.shop-product-summary__sections a {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    display: inline-flex;
    font-size: 0.88rem;
    font-weight: 700;
    min-height: 38px;
    padding: 0.5rem 0.85rem;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.shop-product-summary__sections a:hover,
.shop-product-summary__sections a:focus {
    background: #fff1aa;
    border-color: rgba(244, 202, 0, 0.5);
    color: var(--shop-ink);
}

.shop-quantity-stepper {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 42px;
    min-height: 48px;
    overflow: hidden;
}

.shop-quantity-stepper--displayed {
    grid-template-columns: 42px minmax(42px, 1fr) 42px;
}

.shop-quantity-stepper__button {
    background: transparent;
    border: 0;
    color: var(--shop-ink);
    cursor: pointer;
    font-size: 1.35rem;
    font-weight: 700;
    height: 100%;
    transition: background 0.18s ease;
}

.shop-quantity-stepper__button:hover,
.shop-quantity-stepper__button:focus {
    background: #fff4bd;
}

.shop-quantity-stepper__button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.shop-quantity-stepper__input {
    background: transparent;
    border: 0;
    border-radius: 0;
    color: var(--shop-ink);
    -webkit-text-fill-color: var(--shop-ink);
    font-size: 1rem;
    font-weight: 700;
    min-height: auto;
    min-width: 0;
    outline: none;
    padding: 0;
    text-align: center;
    width: 100%;
}

.shop-quantity-stepper__value {
    align-items: center;
    color: var(--shop-ink);
    display: flex;
    font-size: 1rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    min-width: 42px;
    pointer-events: none;
    text-align: center;
}

.shop-quantity-stepper--displayed .shop-quantity-stepper__input {
    display: none;
}

.shop-buy-box .shop-quantity-stepper__input {
    background: transparent;
    border: 0;
    border-radius: 0;
    min-height: auto;
    padding: 0;
}

.shop-quantity-stepper__input::-webkit-outer-spin-button,
.shop-quantity-stepper__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-quantity-stepper__input[type=number] {
    -moz-appearance: textfield;
}

.shop-detail-panels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-panel__head {
    margin-bottom: 1rem;
}

.shop-panel__head h2 {
    margin: 0;
}

.shop-panel h2,
.shop-summary-card h2,
.shop-success-card h1 {
    margin: 0 0 0.85rem;
}

.shop-prose {
    line-height: 1.75;
}

.shop-prose p,
.shop-prose ul,
.shop-prose h3 {
    margin: 0 0 1rem;
}

.shop-prose p:last-child,
.shop-prose ul:last-child,
.shop-prose h3:last-child {
    margin-bottom: 0;
}

.shop-prose h3 {
    color: var(--shop-ink);
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 900;
    letter-spacing: 0;
}

.shop-prose > strong,
.shop-prose p > strong:only-child {
    color: var(--shop-ink);
    font-weight: 900;
}

.shop-prose ul {
    padding-left: 1.15rem;
}

.shop-prose li + li {
    margin-top: 0.45rem;
}

.shop-attribute-list {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
    margin: 0;
}

.shop-attribute-list > * {
    border-bottom: 1px solid var(--shop-line);
    padding: 0.85rem 0;
}

.shop-attribute-list > *:nth-last-child(-n + 2) {
    border-bottom: 0;
    padding-bottom: 0;
}

.shop-attribute-list dt {
    color: var(--shop-ink-soft);
    font-weight: 700;
}

.shop-attribute-list dd {
    margin: 0;
}

.shop-cart-layout,
.shop-checkout-layout {
    align-items: start;
    grid-template-columns: minmax(0, 1fr) 330px;
}

.shop-table {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    overflow: hidden;
}

.shop-table__head,
.shop-table__row {
    align-items: center;
    column-gap: 1rem;
    display: grid;
    grid-template-columns: minmax(220px, 1.8fr) 120px 130px 130px 92px;
    padding: 1rem;
}

.shop-table__head {
    background: var(--shop-surface-alt);
    color: var(--shop-ink-soft);
    font-size: 0.84rem;
    font-weight: 700;
    text-transform: uppercase;
}

.shop-table__row + .shop-table__row {
    border-top: 1px solid var(--shop-line);
}

.shop-table__row {
    align-items: start;
}

.shop-table__product {
    align-items: center;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 80px minmax(0, 1fr);
}

.shop-table__product-copy,
.shop-table__price,
.shop-table__quantity,
.shop-table__actions {
    display: grid;
    gap: 0.45rem;
}

.shop-table__product-meta {
    color: var(--shop-ink-soft);
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 0.8rem;
    font-size: 0.82rem;
}

.shop-table__product-copy strong a,
.shop-summary-line-item__body strong a {
    color: inherit;
    text-decoration: none;
}

.shop-table__product-excerpt {
    color: var(--shop-ink-soft);
    font-size: 0.92rem;
    line-height: 1.55;
    margin: 0;
}

.shop-table__product-signals {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.shop-table__cell-label {
    color: var(--shop-ink-soft);
    display: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.shop-table__quantity-note,
.shop-table__quantity-state,
.shop-table__old-price,
.shop-checkout-form__lead,
.shop-checkout-form__footnote,
.shop-summary-card__notes p,
.shop-summary-line-item__body span,
.shop-summary-line-item__body small {
    color: var(--shop-ink-soft);
}

.shop-table__quantity-note,
.shop-table__quantity-state,
.shop-table__old-price,
.shop-summary-line-item__body span,
.shop-summary-line-item__body small {
    font-size: 0.86rem;
}

.shop-table__quantity-state {
    background: var(--shop-surface-alt);
    border: 1px dashed var(--shop-line);
    border-radius: 999px;
    min-height: 48px;
    padding: 0.75rem 0.95rem;
}

.shop-table__price strong,
.shop-summary-line-item > strong {
    font-size: 1rem;
}

.shop-table__old-price {
    text-decoration: line-through;
}

.shop-link-button--muted {
    color: var(--shop-ink-soft);
}

.shop-table__thumb {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 6px;
    display: flex;
    height: 80px;
    justify-content: center;
    overflow: hidden;
}

.shop-table__product strong,
.shop-summary-card strong,
.shop-success-card strong {
    display: block;
}

.shop-link-button {
    background: none;
    border: 0;
    color: var(--shop-danger);
    cursor: pointer;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    line-height: 1;
    padding: 0;
    text-decoration: none;
}

.shop-table__actions {
    align-content: start;
    align-items: start;
    justify-items: start;
}

.shop-table__actions .shop-link-button {
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    font-size: 0.9rem;
    min-height: 34px;
    min-width: 74px;
    padding: 0.45rem 0.7rem;
}

.shop-table__actions .shop-link-button--muted {
    background: var(--shop-surface-alt);
    color: var(--shop-ink-soft);
}

.shop-table__actions .shop-link-button:not(.shop-link-button--muted) {
    background: rgba(244, 67, 54, 0.08);
}

.shop-table__actions .shop-link-button:hover,
.shop-table__actions .shop-link-button:focus {
    border-color: rgba(244, 202, 0, 0.45);
    box-shadow: 0 10px 24px rgba(20, 33, 61, 0.08);
}

.shop-form-group select,
.shop-buy-box select {
    appearance: none;
    cursor: pointer;
    background-image:
        linear-gradient(45deg, transparent 50%, var(--shop-ink-soft) 50%),
        linear-gradient(135deg, var(--shop-ink-soft) 50%, transparent 50%);
    background-position:
        calc(100% - 18px) calc(50% - 4px),
        calc(100% - 12px) calc(50% - 4px);
    background-repeat: no-repeat;
    background-size: 6px 6px, 6px 6px;
    padding-right: 2.4rem;
}

.shop-cart-table__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.shop-cart-table__status {
    align-items: center;
    color: var(--shop-ink-soft);
    display: inline-flex;
    flex: 1 1 100%;
    font-size: 0.84rem;
    min-height: 1.25rem;
    opacity: 0;
    transition: opacity 0.18s ease;
}

.shop-cart-table__status.is-visible {
    opacity: 1;
}

.shop-cart-table__status.is-success {
    color: var(--shop-success);
}

.shop-cart-table__status.is-error {
    color: var(--shop-danger);
}

.shop-cart-table__status.is-warning {
    color: #bd7a00;
}

.shop-cart-table.is-updating .shop-button--update-cart {
    opacity: 0.72;
}

.shop-summary-card__metrics {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0.15rem 0 1rem;
}

.shop-summary-card__metrics > div {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    padding: 0.85rem 0.95rem;
}

.shop-summary-card__metrics span {
    color: var(--shop-ink-soft);
    display: block;
    font-size: 0.82rem;
    margin-bottom: 0.2rem;
}

.shop-summary-card dl {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(120px, 1fr) auto;
    margin: 1rem 0 1.5rem;
}

.shop-summary-card dt,
.shop-summary-lines span {
    color: var(--shop-ink-soft);
}

.shop-summary-card dd {
    margin: 0;
    text-align: right;
}

.shop-summary-lines {
    display: grid;
    gap: 0.8rem;
}

.shop-summary-lines:not(.shop-summary-lines--checkout) > div {
    align-items: baseline;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.shop-summary-lines--checkout {
    gap: 0.9rem;
}

.shop-summary-line-item {
    align-items: start;
    column-gap: 0.75rem;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
}

.shop-summary-line-item__thumb {
    align-items: center;
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: 8px;
    display: flex;
    height: 56px;
    justify-content: center;
    overflow: hidden;
    width: 56px;
}

.shop-summary-line-item__thumb img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.shop-summary-line-item__thumb span {
    color: var(--shop-ink-soft);
    font-size: 0.82rem;
    font-weight: 700;
}

.shop-summary-line-item__body {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.shop-summary-card__notes {
    border-top: 1px solid var(--shop-line);
    display: grid;
    gap: 0.6rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.shop-summary-card__notes p {
    margin: 0;
}

.shop-summary-card__actions {
    margin-top: 1rem;
}

.shop-packing-video {
    align-items: center;
    background:
        linear-gradient(135deg, #fffef5 0%, #ffffff 44%),
        var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 1.1rem;
    grid-template-columns: minmax(0, 1fr) minmax(150px, 205px);
    margin-top: 1rem;
    overflow: hidden;
    padding: 1rem 1.1rem;
}

.shop-packing-video__copy {
    align-content: center;
    display: grid;
    gap: 0.45rem;
    max-width: 620px;
}

.shop-packing-video__copy h2 {
    font-size: 1.25rem;
    line-height: 1.18;
    margin: 0;
}

.shop-packing-video__copy p {
    color: var(--shop-ink-soft);
    margin: 0;
}

.shop-packing-video__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    list-style: none;
    margin: 0.2rem 0 0;
    padding: 0;
}

.shop-packing-video__points li {
    background: #fff8d6;
    border: 1px solid rgba(244, 202, 0, 0.36);
    border-radius: 999px;
    color: var(--shop-ink);
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.15;
    padding: 0.34rem 0.62rem;
}

.shop-packing-video__preview {
    background: #111827;
    border: 1px solid rgba(17, 24, 39, 0.18);
    border-radius: 16px;
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
    justify-self: end;
    padding: 0.4rem;
    width: min(100%, 190px);
}

.shop-packing-video__media {
    aspect-ratio: 9 / 16;
    background: #111827;
    border-radius: 12px;
    display: block;
    height: auto;
    object-fit: contain;
    width: 100%;
}

.shop-packing-video--compact {
    align-content: start;
    gap: 0.85rem;
    grid-template-columns: 1fr;
    padding: 0.95rem;
}

.shop-packing-video--compact .shop-packing-video__copy {
    max-width: none;
}

.shop-packing-video--compact .shop-packing-video__copy h2 {
    font-size: 1.12rem;
}

.shop-packing-video--compact .shop-packing-video__points {
    gap: 0.35rem;
}

.shop-packing-video--compact .shop-packing-video__points li {
    font-size: 0.78rem;
    padding: 0.28rem 0.52rem;
}

.shop-packing-video--compact .shop-packing-video__preview {
    justify-self: center;
    width: min(100%, 220px);
}

.shop-form-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-checkout-fields {
    display: grid;
    gap: 0.75rem 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-form-group--wide {
    grid-column: 1 / -1;
}

.shop-checkout-form .shop-form-group {
    gap: 0.28rem;
}

.shop-checkout-form .shop-form-group input,
.shop-checkout-form .shop-form-group textarea {
    min-height: 40px;
    padding: 0.56rem 0.72rem;
}

.shop-checkout-form #checkout-note {
    min-height: 72px;
}

.shop-checkout-main {
    display: grid;
    gap: 1rem;
}

.shop-success-card,
.shop-empty-state {
    text-align: center;
}

.shop-empty-state--search {
    display: grid;
    gap: 1rem;
}

.shop-search-fallback {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    box-shadow: var(--shop-shadow);
    display: grid;
    gap: 1rem;
    padding: 1.2rem;
}

.shop-search-fallback__head {
    display: grid;
    gap: 0.3rem;
    text-align: left;
}

.shop-search-fallback__head strong {
    font-size: 1.1rem;
}

.shop-checkout-form__lead {
    font-size: 0.9rem;
    margin: 0;
}

.shop-checkout-form__actions {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 1.2rem;
}

.shop-checkout-form__footnote {
    font-size: 0.84rem;
    line-height: 1.6;
    margin: 0.15rem 0 0;
}

.shop-success-card__summary {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin: 1.5rem 0;
}

.shop-success-card__summary div {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    padding: 1rem;
}

.shop-success-card__summary span {
    color: var(--shop-ink-soft);
    display: block;
    margin-bottom: 0.3rem;
}

.shop-success-card--order {
    text-align: left;
}

.shop-success-card__lead {
    color: var(--shop-ink-soft);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

.shop-success-card__steps {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 0.4rem;
}

.shop-success-card__steps article {
    background: var(--shop-surface-alt);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius);
    display: grid;
    gap: 0.35rem;
    padding: 0.95rem 1rem;
}

.shop-success-card__steps strong {
    color: var(--shop-ink);
    font-size: 0.96rem;
}

.shop-success-card__steps p {
    color: var(--shop-ink-soft);
    line-height: 1.6;
    margin: 0;
}

.shop-success-card--order .shop-hero__actions {
    justify-content: flex-start;
    margin-top: 0.15rem;
}

.shop-order-items {
    display: grid;
    gap: 0.8rem;
}

.shop-order-items__row {
    align-items: start;
    column-gap: 0.75rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
}

.shop-order-items__body {
    display: grid;
    gap: 0.18rem;
    min-width: 0;
}

.shop-order-items__body strong {
    font-size: 0.98rem;
}

.shop-order-items__body span,
.shop-order-items__body small {
    color: var(--shop-ink-soft);
}

.shop-order-items__body span,
.shop-order-items__body small {
    font-size: 0.86rem;
}

.shop-summary-card__notes strong {
    color: var(--shop-ink);
}

.shop-footer {
    background: #2f3941;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 3rem;
}

.shop-footer__grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1.3fr repeat(3, minmax(0, 1fr));
    padding-bottom: 2.5rem;
    padding-top: 2.5rem;
}

.shop-footer__eyebrow {
    color: rgba(255, 255, 255, 0.58);
    display: inline-block;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.4rem;
    text-transform: uppercase;
}

.shop-footer h3 {
    color: #fff;
    font-size: 1rem;
    margin: 0 0 0.7rem;
}

.shop-footer p,
.shop-footer a,
.shop-footer__links span,
.shop-footer__links li {
    color: rgba(255, 255, 255, 0.76);
}

.shop-footer__brand {
    display: grid;
    gap: 0.8rem;
}

.shop-footer__brand p,
.shop-footer__steps li,
.shop-footer__highlights li,
.shop-footer__links li {
    line-height: 1.65;
}

.shop-footer ul {
    display: grid;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.shop-footer__highlights li,
.shop-footer__steps li {
    align-items: start;
    display: grid;
    gap: 0.55rem;
    grid-template-columns: 10px minmax(0, 1fr);
}

.shop-footer__highlights li::before,
.shop-footer__steps li::before {
    background: var(--shop-accent);
    border-radius: 999px;
    content: '';
    display: block;
    height: 10px;
    margin-top: 0.45rem;
    width: 10px;
}

.shop-footer a:hover,
.shop-footer a:focus {
    color: #fff;
}

.shop-footer__heart {
    color: #e53935;
    display: inline-block;
    font-size: 1.05em;
    line-height: 1;
    margin: 0 0.1rem;
    transform: translateY(0.03rem);
}

.shop-footer__base {
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.62);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.88rem;
    gap: 0.75rem 1.25rem;
    justify-content: space-between;
    padding: 1rem 0 1.3rem;
}

.shop-back-to-top {
    align-items: center;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 50%;
    bottom: 1.35rem;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.16);
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    font-size: 1.28rem;
    font-weight: 900;
    height: 54px;
    justify-content: center;
    opacity: 0;
    position: fixed;
    right: 1.25rem;
    touch-action: manipulation;
    transform: translateY(12px);
    transition: opacity 0.18s ease, transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
    user-select: none;
    width: 54px;
    -webkit-tap-highlight-color: transparent;
    z-index: 82;
}

.shop-back-to-top[hidden] {
    display: none;
}

.shop-back-to-top.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.shop-back-to-top:focus-visible {
    background: var(--shop-accent);
    border-color: var(--shop-accent-dark);
    outline: none;
}

@media (hover: hover) and (pointer: fine) {
    .shop-back-to-top:hover {
        background: var(--shop-accent);
        border-color: var(--shop-accent-dark);
        outline: none;
    }
}

.shop-back-to-top span {
    line-height: 1;
    transform: translateY(2px);
}

@keyframes shopHeroSlideFade {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shopSidebarFadeIn {
    from {
        opacity: 0;
        transform: translateX(10px) scale(0.985);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes shopSidebarSlideInLeft {
    from {
        opacity: 0.88;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 1220px) {
    .shop-utility__inner {
        grid-template-columns: 1fr;
    }

    .shop-utility__links {
        justify-content: flex-start;
    }

    .shop-utility__ticker {
        width: 100%;
    }

    .shop-home-grid {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .shop-deal-panel {
        grid-column: 1 / -1;
    }

    .shop-home-brief__stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 1080px) {
    .shop-topbar,
    .shop-home-grid,
    .shop-about-hero,
    .shop-about-grid,
    .shop-service-hero,
    .shop-service-intro,
    .shop-service-steps,
    .shop-service-models,
    .shop-trade-layout,
    .shop-catalog-layout,
    .shop-catalog-sidebar,
    .shop-product-detail,
    .shop-cart-layout,
    .shop-checkout-layout,
    .shop-detail-panels,
    .shop-footer__grid {
        grid-template-columns: 1fr;
    }

    .shop-navband {
        grid-template-columns: 1fr;
        row-gap: 0.75rem;
    }

    .shop-primary-nav {
        flex-wrap: wrap;
    }

    .shop-service-hero__media {
        min-height: 280px;
    }

    .shop-service-hero__copy h1 {
        max-width: 22ch;
    }

    .shop-service-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-utility {
        display: none;
    }

    .shop-header__mobile-note {
        background: var(--shop-surface-alt);
        border: 1px solid var(--shop-line);
        border-radius: var(--shop-radius);
        box-shadow: var(--shop-shadow);
        display: grid;
        gap: 0.2rem;
        margin-top: 0.9rem;
        padding: 0.9rem 1rem;
    }

    .shop-navband {
        grid-template-columns: 1fr;
    }

    .shop-catalog-intro {
        align-items: start;
        flex-direction: column;
    }

    .shop-catalog-intro--compact-mobile {
        border-radius: 12px;
        box-shadow: 0 8px 22px rgba(51, 62, 72, 0.08);
        gap: 0;
        padding: 0.72rem 0.9rem;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-intro__copy {
        min-width: 0;
        width: 100%;
    }

    .shop-catalog-intro--compact-mobile h1,
    .shop-catalog-intro--compact-mobile .shop-section__lead,
    .shop-catalog-intro--compact-mobile .shop-catalog-intro__stats {
        display: none;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location {
        font-size: 0.7rem;
        gap: 0.32rem;
        letter-spacing: 0.1em;
        margin: 0;
        min-width: 0;
        width: 100%;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location strong {
        color: #0f1f2e;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-intro__topline {
        align-items: center;
        display: grid;
        gap: 0.55rem;
        grid-template-columns: minmax(0, 1fr) auto;
        width: 100%;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location {
        grid-column: 1;
        overflow: hidden;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location span,
    .shop-catalog-intro--compact-mobile .shop-catalog-location strong {
        flex: 0 1 auto;
        min-width: 0;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location span:not(.shop-catalog-location__separator) {
        max-width: 10.5ch;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-location strong {
        max-width: 16ch;
    }

    .shop-catalog-intro--compact-mobile .shop-catalog-intro__summary-line {
        grid-column: 2;
        justify-content: end;
        margin-left: 0;
        min-width: 0;
    }

    .shop-catalog-intro__stats {
        align-items: start;
        text-align: left;
        white-space: normal;
    }

    .shop-product-summary {
        position: static;
    }

    .shop-cart-info-grid {
        grid-template-columns: 1fr;
    }

    .shop-product-summary__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-product-summary__header-meta {
        justify-items: start;
        text-align: left;
    }

    .shop-navband__mobile-actions {
        display: grid;
        gap: 0.6rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-navband__menu,
    .shop-primary-nav {
        display: none;
    }

    .shop-navband__menu.is-open,
    .shop-primary-nav.is-open {
        animation: shopSidebarFadeIn 0.18s ease;
        display: flex;
    }

    .shop-success-card__steps {
        grid-template-columns: 1fr;
    }

    .shop-navband__menu.is-open {
        flex-direction: column;
        align-items: stretch;
        gap: 0.85rem;
        padding-top: 0.25rem;
    }

    .shop-navband__title {
        display: none;
    }

    .shop-category-bar {
        display: grid;
        gap: 0.6rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-category-bar__item {
        align-items: center;
        background: rgba(255, 255, 255, 0.36);
        border-radius: 12px;
        font-weight: 700;
        justify-content: center;
        min-height: 46px;
        padding: 0.75rem 0.85rem;
        text-align: center;
    }

    .shop-category-bar__item.is-active {
        margin-right: 0.45rem;
    }

    .shop-category-bar__item--retro {
        margin-left: 0;
    }

    .shop-primary-nav.is-open {
        align-items: stretch;
        flex-direction: column;
        gap: 0.55rem;
        padding-top: 0.25rem;
    }

    .shop-primary-nav.is-open a {
        background: rgba(255, 255, 255, 0.38);
        min-height: 46px;
        justify-content: center;
    }

    .shop-global-category-sidebar {
        display: block;
    }

    .shop-global-category-sidebar .shop-category-sidebar:not(.is-mobile-open) {
        display: none;
    }

    .shop-category-sidebar {
        overflow: visible;
    }

    .shop-category-sidebar.is-mobile-open {
        animation: shopSidebarSlideInLeft 0.36s cubic-bezier(0.22, 1, 0.36, 1);
        border-radius: 0 18px 18px 0;
        bottom: auto;
        box-shadow: 24px 0 60px rgba(16, 24, 40, 0.24);
        display: block;
        height: auto;
        left: 0;
        max-height: calc(100dvh - var(--shop-mobile-sidebar-top, 0px) - 0.5rem);
        max-width: 420px;
        overflow-x: hidden;
        overflow-y: auto;
        position: fixed;
        right: auto;
        top: var(--shop-mobile-sidebar-top, 0px);
        width: min(88vw, 420px);
        z-index: 120;
    }

    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__head,
    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__department,
    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__cascade-head,
    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__brand-trigger,
    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__leaf-link,
    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__service-link {
        padding-left: 1.1rem;
        padding-right: 1rem;
    }

    .shop-category-sidebar:not(.is-mobile-open) .shop-category-sidebar__body {
        display: none;
    }

    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__head-chevron {
        transform: rotate(90deg);
    }

    .shop-category-sidebar__body {
        animation: shopSidebarFadeIn 0.18s ease;
    }

    .shop-category-sidebar__head-chevron {
        display: inline-block;
    }

    .shop-category-sidebar__head {
        cursor: pointer;
    }

    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__head {
        position: sticky;
        top: 0;
        z-index: 2;
    }

    .shop-category-sidebar__flyout {
        left: auto;
        pointer-events: auto;
        position: static;
        top: auto;
        width: auto;
    }

    .shop-category-sidebar__panel {
        border-left: 0;
        border-radius: 0;
        border-right: 0;
        border-top: 1px solid var(--shop-line);
        box-shadow: none;
        min-height: 0;
        padding: 1rem 1.1rem;
    }

    .shop-category-sidebar__panel.is-active {
        display: block;
    }

    .shop-category-sidebar__submenu {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .shop-category-sidebar__brand-menu {
        border-right: 0;
    }

    .shop-category-sidebar__brand-trigger {
        padding-left: 0;
    }

    .shop-category-sidebar__brand-panels {
        border-top: 1px solid var(--shop-line);
        padding-top: 0.9rem;
    }

    .shop-category-sidebar__leaf-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    body::before {
        inset: 0;
        background-position: center top;
        transform: none;
        will-change: auto;
    }

    .shop-topbar {
        column-gap: 1rem;
        grid-template-areas:
            "brand cart"
            "search search";
        grid-template-columns: minmax(0, 1fr) auto;
        row-gap: 0.95rem;
    }

    .shop-brand {
        grid-area: brand;
    }

    .shop-search {
        grid-area: search;
    }

    .shop-topbar__actions {
        grid-area: cart;
        justify-self: end;
        gap: 0.45rem;
    }

    .shop-account-icon-button {
        display: inline-flex;
    }

    .shop-search__bar {
        grid-template-columns: 110px minmax(0, 1fr) 110px;
    }

    .shop-navband {
        background: transparent;
        border-radius: 0;
        padding: 0;
    }

    .shop-mobile-toggle {
        box-shadow: none;
    }

    .shop-service-strip {
        grid-template-columns: 1fr;
    }

    .shop-hero-banner {
        grid-template-columns: 1fr;
    }

    .shop-home-brief__stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-gallery {
        grid-template-columns: 1fr;
    }

    .shop-gallery__nav {
        height: 40px;
        width: 40px;
    }

    .shop-gallery__nav--prev {
        left: 0.55rem;
    }

    .shop-gallery__nav--next {
        right: 0.55rem;
    }

    .shop-gallery__thumbs {
        grid-auto-flow: column;
        grid-auto-columns: 90px;
        height: auto;
        overflow-x: auto;
        overflow-y: hidden;
        order: 2;
        padding-right: 0;
        scrollbar-gutter: auto;
    }
}

@media (max-width: 820px) {
    .shop-shell,
    .shop-shell__header,
    .shop-shell__footer {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .shop-header {
        margin-bottom: 0;
    }

    .shop-section {
        margin-top: 0.75rem;
    }

    .shop-section--compact {
        margin-top: 0.18rem;
    }

    .shop-table__head {
        display: none;
    }

    .shop-table__row {
        grid-template-columns: 1fr;
    }

    .shop-table__cell-label {
        display: block;
    }

    .shop-table__actions,
    .shop-checkout-form__actions,
    .shop-cart-table__actions {
        justify-content: stretch;
    }

    .shop-table__actions {
        column-gap: 0.55rem;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-table__actions .shop-table__cell-label {
        grid-column: 1 / -1;
    }

    .shop-packing-video {
        grid-template-columns: 1fr;
    }

    .shop-checkout-note {
        scroll-margin-top: 190px;
    }

    .shop-packing-video__preview {
        justify-self: center;
        width: min(100%, 280px);
    }

    .shop-checkout-info-links {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-checkout-info-links span {
        grid-column: 1 / -1;
    }

    .shop-checkout-info-links a {
        align-items: center;
        display: flex;
        justify-content: center;
        min-height: 34px;
        padding: 0.32rem 0.45rem;
        text-align: center;
    }

    .shop-table__actions .shop-link-button,
    .shop-checkout-form__actions .shop-button,
    .shop-cart-table__actions .shop-button {
        width: 100%;
    }

    .shop-summary-line-item {
        grid-template-columns: 56px minmax(0, 1fr);
    }

    .shop-summary-line-item > strong {
        grid-column: 2;
    }

    .shop-filter-inline-group {
        align-items: stretch;
        display: grid;
        gap: 0.55rem;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .shop-filter-inline-group__label {
        min-width: 0;
        padding-top: 0.45rem;
    }

    .shop-buy-box__row,
    .shop-filter-price-row,
    .shop-form-grid,
    .shop-checkout-fields,
    .shop-attribute-list {
        grid-template-columns: 1fr;
    }

    .shop-buy-box__footer {
        align-items: stretch;
        flex-direction: column;
    }

    .shop-buy-box__footer .shop-button,
    .shop-buy-box__footer .shop-link-button {
        justify-content: center;
        width: 100%;
    }

    .shop-product-summary__sections {
        flex-direction: column;
    }

    .shop-product-summary__sections a {
        justify-content: center;
    }

    .shop-stock-inline__meta {
        margin-left: auto;
    }

    #shop-product-specs .shop-attribute-list {
        column-gap: 0.75rem;
        grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
    }

    #shop-product-specs .shop-attribute-list > * {
        min-width: 0;
        padding: 0.58rem 0;
    }

    #shop-product-specs .shop-attribute-list dt {
        font-size: 0.9rem;
        line-height: 1.25;
    }

    #shop-product-specs .shop-attribute-list dd {
        font-size: 0.95rem;
        line-height: 1.25;
        text-align: right;
    }

    .shop-attribute-list > * {
        padding: 0.7rem 0;
    }

    .shop-attribute-list > *:nth-last-child(-n + 2) {
        border-bottom: 1px solid var(--shop-line);
        padding-bottom: 0.7rem;
    }

    .shop-attribute-list dd:last-child {
        border-bottom: 0;
        padding-bottom: 0;
    }
}

@media (max-width: 640px) {
    .shop-checkout-note {
        scroll-margin-top: 225px;
    }

    .shop-section--collection .shop-section__head {
        margin-bottom: 0.85rem;
        padding-bottom: 0.58rem;
    }

    .shop-section--collection .shop-section__head::after {
        width: 54px;
    }

    .shop-collection-kicker {
        font-size: 0.64rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.3rem;
    }

    .shop-section--collection h2 {
        line-height: 1.04;
    }

    .shop-registration-prompt__panel {
        border-radius: 16px;
        max-height: calc(100vh - 0.75rem);
        max-width: calc(100vw - 1rem);
    }

    .shop-registration-prompt__hero {
        padding: 1.05rem 3.6rem 0.95rem 1.15rem;
    }

    .shop-registration-prompt__hero span {
        font-size: 0.78rem;
    }

    .shop-registration-prompt__hero h2 {
        font-size: 1.32rem;
    }

    .shop-registration-prompt__body {
        gap: 0.42rem;
        padding: 0.82rem 1rem 0.9rem;
    }

    .shop-registration-prompt__body > strong {
        font-size: 1.08rem;
    }

    .shop-registration-prompt__form {
        gap: 0.42rem 0.55rem;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shop-registration-prompt__field--wide,
    .shop-registration-prompt__submit {
        grid-column: 1 / -1;
    }

    .shop-header {
        background: var(--shop-bg);
        box-shadow: none;
        position: sticky;
        top: 0;
        z-index: 80;
    }

    .shop-back-to-top {
        bottom: 1rem;
        height: 48px;
        right: 0.85rem;
        width: 48px;
    }

    .shop-service-hero__copy {
        padding: 1.05rem;
    }

    .shop-service-hero__copy h1 {
        font-size: 1.65rem;
    }

    .shop-service-hero__media {
        min-height: 220px;
    }

    .shop-service-gallery {
        display: flex;
        gap: 0.75rem;
        margin-left: -0.85rem;
        margin-right: -0.85rem;
        overflow-x: auto;
        padding: 0 0.85rem 0.35rem;
        scroll-snap-type: x mandatory;
    }

    .shop-service-gallery__item {
        flex: 0 0 min(78vw, 320px);
        scroll-snap-align: start;
    }

    .shop-service-matrix__group {
        padding: 0.95rem;
    }

    .shop-topbar {
        background: var(--shop-bg);
        box-shadow: 0 10px 24px rgba(51, 62, 72, 0.1);
        grid-template-areas:
            "menu brand cart"
            "search search search";
        grid-template-columns: auto minmax(0, 1fr) auto;
        margin-left: -0.85rem;
        margin-right: -0.85rem;
        padding: 0.65rem 0.85rem 0.58rem;
        column-gap: 0.55rem;
        row-gap: 0.65rem;
    }

    .shop-topbar-menu-toggle {
        background: var(--shop-accent);
        border-color: rgba(244, 202, 0, 0.82);
        display: inline-flex;
        grid-area: menu;
        justify-content: center;
        min-width: 44px;
        padding: 0.4rem;
    }

    .shop-topbar-menu-toggle span:last-child {
        display: none;
    }

    .shop-brand {
        gap: 0.65rem;
        justify-self: center;
        min-width: 0;
    }

    .shop-brand__mark {
        border-radius: 11px;
        height: 46px;
        width: 46px;
    }

    .shop-brand__text strong {
        font-size: 1.2rem;
    }

    .shop-brand__text small {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .shop-topbar__actions {
        gap: 0.38rem;
        justify-self: end;
    }

    .shop-account-icon-button {
        order: 1;
    }

    .shop-cart-link {
        background: transparent;
        border-color: transparent;
        border-radius: 0;
        box-shadow: none;
        color: var(--shop-ink);
        gap: 0;
        justify-content: center;
        min-height: 44px;
        min-width: 38px;
        padding: 0;
        position: relative;
        order: 2;
        width: auto;
    }

    .shop-account-icon-button {
        background: transparent;
        border-color: transparent;
        border-radius: 0;
        box-shadow: none;
        color: var(--shop-ink);
        height: 44px;
        padding: 0;
        width: 34px;
    }

    .shop-cart-link:hover,
    .shop-cart-link:focus,
    .shop-account-icon-button:hover,
    .shop-account-icon-button:focus {
        background: rgba(254, 215, 0, 0.22);
        border-color: transparent;
        box-shadow: none;
        outline: none;
        transform: none;
    }

    .shop-cart-link__icon {
        display: inline-flex;
        height: 28px;
        position: relative;
        width: 28px;
    }

    .shop-cart-link__icon {
        font-size: 0;
        line-height: 1;
    }

    .shop-cart-link__icon::before {
        background:
            linear-gradient(64deg, transparent 0 42%, currentColor 43% 57%, transparent 58%) 0 0 / 10px 12px no-repeat,
            linear-gradient(currentColor, currentColor) 8px 7px / 17px 2.4px no-repeat,
            linear-gradient(currentColor, currentColor) 10px 20px / 13px 2.4px no-repeat,
            linear-gradient(105deg, transparent 0 40%, currentColor 41% 56%, transparent 57%) 7px 9px / 5px 12px no-repeat,
            linear-gradient(105deg, transparent 0 40%, currentColor 41% 56%, transparent 57%) 21px 9px / 5px 12px no-repeat,
            linear-gradient(currentColor, currentColor) 13px 12px / 11px 2px no-repeat,
            linear-gradient(currentColor, currentColor) 12px 16px / 12px 2px no-repeat;
        content: '';
        height: 23px;
        left: 1px;
        position: absolute;
        top: 2px;
        width: 26px;
    }

    .shop-cart-link__icon::after {
        background: currentColor;
        border-radius: 999px;
        box-shadow: 11px 0 0 currentColor;
        content: '';
        height: 4px;
        left: 10px;
        position: absolute;
        top: 23px;
        width: 4px;
    }

    .shop-cart-link__label {
        display: none;
    }

    .shop-cart-link strong {
        border: 2px solid var(--shop-bg);
        box-shadow: 0 2px 6px rgba(51, 62, 72, 0.16);
        font-size: 0.64rem;
        height: 17px;
        min-width: 17px;
        padding: 0 0.22rem;
        position: absolute;
        right: -0.48rem;
        top: 0;
    }

    .shop-account-icon-button .shop-account-icon {
        height: 24px;
        width: 24px;
    }

    .shop-search__bar {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }

    .shop-search__label {
        display: none;
    }

    .shop-search__submit-icon {
        display: none;
    }

    .shop-search input {
        min-height: 50px;
        padding: 0 0.95rem;
    }

    .shop-product-summary__header {
        gap: 0.65rem;
    }

    .shop-search button {
        display: none;
    }

    .shop-search__panel {
        border-radius: 16px;
        left: 0;
        right: 0;
        top: calc(100% + 0.4rem);
        z-index: 95;
    }

    .shop-search__status {
        font-size: 0.72rem;
        padding: 0.65rem 0.85rem;
    }

    .shop-search__results {
        max-height: min(58dvh, 430px);
    }

    .shop-navband__mobile-actions {
        display: none;
    }

    .shop-navband {
        background: var(--shop-accent);
        border: 1px solid rgba(244, 202, 0, 0.88);
        border-radius: 14px;
        box-shadow: 0 8px 18px rgba(51, 62, 72, 0.1);
        margin-top: 0.5rem;
        overflow: hidden;
        padding: 0.28rem;
        position: relative;
    }

    .shop-navband::before,
    .shop-navband::after {
        content: '';
        height: 100%;
        opacity: 0;
        pointer-events: none;
        position: absolute;
        top: 0;
        transition: opacity 0.18s ease;
        width: 1.35rem;
        z-index: 2;
    }

    .shop-navband::before {
        background: linear-gradient(90deg, rgba(196, 124, 0, 0.48), rgba(196, 124, 0, 0));
        left: 0;
    }

    .shop-navband::after {
        background: linear-gradient(270deg, rgba(196, 124, 0, 0.48), rgba(196, 124, 0, 0));
        right: 0;
    }

    .shop-navband.has-quick-filter-interaction.has-scroll-left::before,
    .shop-navband.has-scroll-right::after {
        opacity: 1;
    }

    .shop-navband__menu {
        display: flex;
        min-width: 0;
        padding: 0;
    }

    .shop-navband__menu.is-open {
        animation: none;
    }

    .shop-category-bar {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.32rem;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0.02rem 1.1rem 0.12rem;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }

    .shop-category-bar::-webkit-scrollbar {
        display: none;
    }

    .shop-category-bar__item {
        background: rgba(255, 255, 255, 0.46);
        border: 1px solid rgba(51, 62, 72, 0.1);
        border-radius: 999px;
        flex: 0 0 auto;
        font-size: 0.78rem;
        font-weight: 800;
        justify-content: center;
        min-height: 30px;
        padding: 0.28rem 0.58rem;
        scroll-snap-align: start;
        text-align: center;
        white-space: nowrap;
    }

    .shop-category-bar__item.is-active {
        background: #ffffff;
        box-shadow: inset 0 -2px 0 var(--shop-ink);
        margin-right: 0;
    }

    .shop-category-bar__item--deals {
        margin-left: 0;
    }

    .shop-category-bar__item--retro {
        border-radius: 5px 2px 5px 2px;
        box-shadow:
            inset 0 0 0 1px rgba(255, 255, 255, 0.45),
            2px 2px 0 rgba(42, 27, 18, 0.24);
        font-size: 0.7rem;
        margin-left: 0;
        min-height: 31px;
        padding: 0.28rem 0.62rem;
        transform: skewX(-5deg);
    }
    .shop-category-bar__item--retro::before {
        height: 4px;
        width: 14px;
    }

    .shop-product-card .shop-price--card {
        display: grid;
        gap: 0.45rem;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        justify-content: normal;
    }

    .shop-product-card .shop-price--card strong {
        justify-self: end;
        text-align: right;
    }

    .shop-product-card .shop-price--card .shop-badge {
        justify-self: start;
    }

    .shop-product-card .shop-price--card .shop-price__old {
        grid-column: 1 / -1;
        justify-self: center;
    }

    .shop-category-sidebar:not(.is-mobile-open) {
        display: none;
    }

    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__head {
        display: none;
    }

    .shop-category-sidebar.is-mobile-open .shop-category-sidebar__department:first-child {
        border-top: 0;
    }

    .shop-filter-mobile-toggle {
        align-items: center;
        background: var(--shop-accent);
        border: 1px solid rgba(244, 202, 0, 0.88);
        border-radius: 0 14px 14px 0;
        box-shadow: 0 10px 24px rgba(51, 62, 72, 0.16);
        color: var(--shop-ink);
        cursor: pointer;
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        justify-content: center;
        left: 0;
        min-height: 72px;
        padding: 0.45rem 0.22rem;
        position: fixed;
        top: 48vh;
        transform: translateY(-50%);
        width: 28px;
        z-index: 78;
    }

    .shop-filter-mobile-toggle span {
        display: none;
    }

    .shop-filter-mobile-toggle strong {
        background: #111820;
        border-radius: 999px;
        color: #ffffff;
        display: block;
        font-size: 0.78rem;
        font-weight: 900;
        letter-spacing: 0;
        line-height: 1;
        padding: 0.42rem 0.28rem;
        text-orientation: mixed;
        writing-mode: vertical-rl;
    }

    .shop-filter-card[data-shop-filter-panel] {
        animation: shopSidebarSlideInLeft 0.34s cubic-bezier(0.22, 1, 0.36, 1);
        border-radius: 0 18px 18px 0;
        bottom: 0;
        box-shadow: 24px 0 60px rgba(16, 24, 40, 0.22);
        display: none;
        left: 0;
        max-width: 390px;
        overflow-x: hidden;
        overflow-y: auto;
        padding: 1rem;
        position: fixed;
        top: var(--shop-mobile-panel-top, 0px);
        width: min(88vw, 390px);
        z-index: 120;
    }

    .shop-filter-card[data-shop-filter-panel].is-open {
        display: block;
    }

    .shop-filter-apply {
        display: inline-flex;
    }

    .shop-filter-card__head {
        margin-bottom: 0.75rem;
    }

    .shop-filter-form {
        gap: 0.75rem;
    }

    .shop-filter-group {
        gap: 0.5rem;
    }

    .shop-filter-group--price {
        align-items: start;
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .shop-filter-group--price > label {
        margin: 0;
        padding-top: 0.1rem;
    }

    .shop-filter-group--price .shop-price-filter,
    .shop-filter-group--price .shop-filter-help {
        grid-column: 2;
    }

    .shop-filter-group--price .shop-price-filter {
        gap: 0.3rem;
    }

    .shop-filter-group--price .shop-price-filter__slider {
        height: 26px;
    }

    .shop-filter-group--price .shop-price-filter__values {
        font-size: 0.78rem;
        order: 2;
        padding-top: 0.05rem;
    }

    .shop-filter-group:has(> select) {
        align-items: center;
        display: grid;
        grid-template-columns: 96px minmax(0, 1fr);
    }

    .shop-filter-group:has(> select) label {
        margin: 0;
    }

    .shop-primary-nav.is-open {
        align-items: stretch;
        background: var(--shop-surface);
        border-radius: 0 18px 18px 0;
        bottom: 0;
        box-shadow: 24px 0 60px rgba(16, 24, 40, 0.22);
        display: flex;
        flex-direction: column;
        gap: 0.55rem;
        left: 0;
        max-width: 320px;
        padding: 1rem;
        position: fixed;
        top: 0;
        width: min(82vw, 320px);
        z-index: 92;
    }

    .shop-primary-nav.is-open a {
        background: var(--shop-surface-alt);
        justify-content: flex-start;
        min-height: 46px;
    }

    .shop-search-result {
        grid-template-columns: 52px minmax(0, 1fr);
        padding: 0.75rem 0.85rem;
    }

    .shop-search-result--category {
        grid-template-columns: minmax(0, 1fr);
    }

    .shop-search-result__thumb {
        height: 52px;
        width: 52px;
    }

    .shop-search-result__aside {
        align-items: flex-start;
        flex-direction: row;
        flex-wrap: wrap;
        grid-column: 2;
        justify-content: flex-start;
        text-align: left;
    }

    .shop-search-result--category .shop-search-result__aside {
        grid-column: 1;
    }

    .shop-hero-banner {
        gap: 0.75rem;
        padding: 0.85rem;
    }

    .shop-hero-banner__copy {
        gap: 0;
    }

    .shop-hero-banner__copy h1,
    .shop-hero-banner__copy p,
    .shop-hero-banner__highlights {
        display: none;
    }

    .shop-hero-banner__media img {
        padding: 0.5rem;
    }

    .shop-hero-product {
        border-radius: 14px;
        gap: 0.55rem;
        padding: 0.7rem;
    }

    .shop-hero-product__meta strong {
        font-size: 1rem;
        line-height: 1.18;
    }

    .shop-hero-product__price {
        font-size: 1.18rem;
    }

    .shop-success-card--order .shop-hero__actions {
        flex-direction: column;
    }

    .shop-success-card--order .shop-hero__actions .shop-button {
        justify-content: center;
        width: 100%;
    }

    .shop-hero-product {
        grid-template-columns: 1fr;
    }

    .shop-primary-nav,
    .shop-utility__inner,
    .shop-navband__menu,
    .shop-hero-banner__actions,
    .shop-hero-product__actions,
    .shop-hero-banner__highlights,   
    .shop-filter-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-home-brief__stats {
        grid-template-columns: 1fr;
    }

    .shop-footer__base {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-product-grid {
        grid-template-columns: 1fr;
    }

    #shop-product-related {
        margin-top: 1.15rem;
    }

    #shop-product-related .shop-section__head {
        align-items: center;
        gap: 0.65rem;
        margin-bottom: 0.65rem;
    }

    #shop-product-related .shop-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.14em;
        margin-bottom: 0.12rem;
    }

    #shop-product-related h2 {
        font-size: 1.28rem;
        line-height: 1.08;
    }

    #shop-product-related .shop-related-link {
        font-size: 0.78rem;
        min-height: 30px;
        padding: 0.34rem 0.62rem;
    }

    .shop-gallery {
        --shop-gallery-hero-height: 320px;
    }

    .shop-catalog-intro__reset {
        font-size: 0.78rem;
        min-height: 28px;
        padding: 0.28rem 0.58rem;
        white-space: nowrap;
    }

    .shop-reset-text-full {
        display: none;
    }

    .shop-reset-text-short {
        display: inline;
    }
}

.shop-contact-page {
    display: block;
}

.shop-contact-page__intro {
    max-width: 760px;
    margin-bottom: 24px;
}

.shop-contact-page__intro h1 {
    margin: 8px 0 12px;
}

.shop-contact-page__intro p {
    color: var(--shop-muted, #667085);
    line-height: 1.7;
}

.shop-contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.4fr;
    gap: 24px;
    align-items: start;
}

.shop-contact-card,
.shop-contact-form-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.shop-contact-card h2,
.shop-contact-form-card h2 {
    margin: 8px 0 20px;
}

.shop-contact-form {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-form-row {
    display: grid;
    gap: 7px;
}

.shop-contact-form .shop-form-row--wide {
    grid-column: 1 / -1;
}

.shop-form-row label {
    font-weight: 600;
    color: #344054;
}

.shop-form-row input,
.shop-form-row select,
.shop-form-row textarea {
    width: 100%;
    border: 1px solid #d0d5dd;
    border-radius: 10px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.shop-form-row textarea {
    resize: vertical;
}

.shop-form-honeypot {
    height: 1px !important;
    left: -10000px !important;
    opacity: 0 !important;
    position: absolute !important;
    top: auto !important;
    width: 1px !important;
}

.shop-alert {
    padding: 12px 14px;
    border-radius: 10px;
    margin-bottom: 18px;
    font-weight: 600;
}

.shop-alert--success {
    background: #ecfdf3;
    color: #027a48;
}

.shop-alert--error {
    background: #fef3f2;
    color: #b42318;
}

.shop-trade-inquiry {
    padding-top: 0;
}

.shop-inquiry-card {
    background:
        linear-gradient(135deg, rgba(254, 215, 0, 0.14), rgba(255, 255, 255, 0) 34%),
        #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-left: 4px solid var(--shop-accent);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
    display: grid;
    gap: 1.4rem;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
    overflow: hidden;
    padding: 24px;
}

.shop-inquiry-card__form p {
    color: var(--shop-ink-soft);
    line-height: 1.7;
    margin: 0.35rem 0 1.45rem;
    max-width: 74ch;
}

.shop-trade-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.shop-form-row--wide {
    grid-column: 1 / -1;
}

.shop-inquiry-submit.btn.btn-warning {
    align-items: center;
    background: var(--shop-accent);
    border: 1px solid rgba(51, 62, 72, 0.14);
    border-radius: 999px;
    box-shadow: 0 12px 24px rgba(254, 215, 0, 0.25);
    color: var(--shop-ink);
    cursor: pointer;
    display: inline-flex;
    font-weight: 900;
    justify-content: center;
    min-height: 46px;
    padding: 0.72rem 1.4rem;
}

.shop-inquiry-submit.btn.btn-warning:hover,
.shop-inquiry-submit.btn.btn-warning:focus {
    background: #ffe04d;
    box-shadow: 0 14px 28px rgba(254, 215, 0, 0.32);
}

.shop-inquiry-card__media {
    align-content: start;
    background: linear-gradient(180deg, #fffef5 0%, #fff 100%);
    border: 1px solid rgba(254, 215, 0, 0.24);
    border-radius: 14px;
    display: grid;
    gap: 1rem;
    overflow: hidden;
}

.shop-inquiry-card__media img {
    aspect-ratio: 16 / 10;
    background: #fff;
    display: block;
    height: auto;
    object-fit: contain;
    padding: 0.7rem;
    width: 100%;
}

.shop-inquiry-card__media div {
    display: grid;
    gap: 0.4rem;
    padding: 0 1rem 1.1rem;
    position: relative;
}

.shop-inquiry-card__media strong {
    color: var(--shop-ink);
}

.shop-inquiry-card__media span {
    color: var(--shop-ink-soft);
    line-height: 1.55;
}

@media (max-width: 900px) {
    .shop-contact-layout {
        grid-template-columns: 1fr;
    }

    .shop-contact-form {
        grid-template-columns: 1fr;
    }

    .shop-inquiry-card {
        grid-template-columns: 1fr;
    }

    .shop-trade-form {
        grid-template-columns: 1fr;
    }

    .shop-inquiry-card__media {
        gap: 0.65rem;
    }

    .shop-inquiry-card__media img {
        padding: 0.55rem;
    }

    .shop-inquiry-card__media div {
        padding: 0 0.85rem 1rem;
    }
}

.shop-utility__links--primary a {
    font-weight: 600;
}

.shop-utility__icon {
    align-items: center;
    color: var(--shop-accent);
    display: inline-flex;
    justify-content: center;
    margin-right: 0.42rem;
    opacity: 0.95;
    width: 13px;
    vertical-align: middle;
}

.shop-utility__icon i {
    font-size: 12px;
    line-height: 1;
}

.shop-utility__links .shop-utility__icon,
.shop-utility__links .shop-utility__icon i {
    color: var(--shop-accent);
}

.shop-utility__links--primary a:first-child,
.shop-utility__links--primary a:nth-child(2) {
    font-weight: 400;
    opacity: 0.82;
}
@media (max-width: 1080px) {
    .shop-category-sidebar__body {
        display: flex;
        flex-direction: column;
    }

    .shop-category-sidebar__departments {
        order: 1;
    }

    .shop-category-sidebar__cascade {
        order: 2;
    }

    .shop-category-sidebar__services {
        order: 3;
    }

    .shop-category-sidebar.is-mobile-open[data-shop-cascade-current-level="brands"] .shop-category-sidebar__services,
    .shop-category-sidebar.is-mobile-open[data-shop-cascade-current-level="leaves"] .shop-category-sidebar__services {
        display: none;
    }
}

.shop-section--collection .shop-product-card .shop-card-actions {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 0.55rem;
}

.shop-section--collection .shop-product-card .shop-card-actions .shop-button {
    border-radius: 999px;
    font-size: 0.78rem;
    line-height: 1.1;
    min-height: 36px;
    min-width: 108px;
    padding: 0.5rem 0.75rem;
    white-space: nowrap;
    width: auto;
}

@media (max-width: 640px) {
    .shop-account-drawer__panel {
        padding: 1.1rem;
    }

    .shop-account-tabs button {
        font-size: 0.86rem;
        min-height: 36px;
    }

    .shop-account-form--register {
        grid-template-columns: 1fr;
    }

    .shop-account-form--login,
    .shop-account-form--reset {
        max-width: none;
    }

    .shop-section--collection .shop-product-card .shop-card-actions {
        justify-content: center;
    }

    .shop-section--collection .shop-product-card .shop-card-actions .shop-button {
        min-height: 40px;
        min-width: 132px;
        font-size: 0.86rem;
    }
}
