:root {
    --shop-font-body: var(--website-brand-font-body, 'DM Sans', sans-serif);
    --shop-font-display: var(--website-brand-font-display, 'Space Grotesk', sans-serif);
    --shop-heading-scale: var(--website-brand-heading-scale, 1.00);
    --shop-body-scale: var(--website-brand-body-scale, 1.00);
    /* Shared typography roles: component rules opt in so prices, badges, and hero art retain their hierarchy. */
    --shop-type-meta: calc(0.75rem * var(--shop-body-scale));
    --shop-type-label: calc(0.8125rem * var(--shop-body-scale));
    --shop-type-control: calc(0.875rem * var(--shop-body-scale));
    --shop-type-body: calc(1rem * var(--shop-body-scale));
    --shop-type-card-title: calc(0.95rem * var(--shop-body-scale));
    --shop-type-heading-sm: calc(1.25rem * var(--shop-heading-scale));
    --shop-type-heading-md: calc(1.58rem * var(--shop-heading-scale));
    --shop-heading-weight: var(--website-brand-heading-weight, 700);
    --shop-heading-letter-spacing: var(--website-brand-heading-letter-spacing, 0.01em);
    --shop-ink: var(--website-brand-text, #102436);
    --shop-muted: var(--website-brand-muted, #627089);
    --shop-bg: var(--website-brand-background, #f2f8ea);
    --shop-surface: var(--website-brand-surface, #ffffff);
    --shop-brand: var(--website-brand-primary, #159365);
    --shop-brand-dark: var(--website-brand-primary-hover, #0f744f);
    --shop-brand-soft: var(--website-brand-primary-soft, rgba(31, 122, 84, 0.16));
    --shop-secondary: var(--website-brand-secondary, #0f2d4a);
    --shop-secondary-dark: var(--website-brand-secondary, #0f2d4a);
    --shop-secondary-soft: var(--website-brand-secondary-soft, rgba(15, 45, 74, 0.10));
    --shop-link: var(--website-brand-link, #1f7a54);
    --shop-link-hover: var(--website-brand-link-hover, var(--website-brand-primary-hover, #0f744f));
    --shop-accent: var(--website-brand-accent, #f6d64a);
    --shop-badge-text: var(--website-brand-badge-text, #102436);
    --shop-accent-soft: var(--website-brand-accent-soft, rgba(246, 214, 74, 0.22));
    --shop-danger: var(--website-brand-danger, #dc3f61);
    --shop-danger-soft: var(--website-brand-danger-soft, rgba(220, 63, 97, 0.14));
    --shop-notice-success-bg: var(--website-brand-notice-success-background, var(--shop-accent, #f6d64a));
    --shop-notice-success-text: var(--website-brand-notice-success-text, #102436);
    --shop-notice-warning-bg: var(--website-brand-notice-warning-background, var(--shop-brand, #1f7a54));
    --shop-notice-warning-text: var(--website-brand-notice-warning-text, #ffffff);
    --shop-notice-info-bg: var(--website-brand-notice-info-background, var(--shop-secondary, #0f2d4a));
    --shop-notice-info-text: var(--website-brand-notice-info-text, #ffffff);
    --shop-notice-danger-bg: var(--website-brand-notice-danger-background, var(--shop-danger, #dc3f61));
    --shop-notice-danger-text: var(--website-brand-notice-danger-text, #ffffff);
    --shop-line: var(--website-brand-border, #d8e4d6);
    --shop-announcement-bar-bg: var(--website-brand-announcement-bar-background, #0f2d4a);
    --shop-announcement-bar-text: var(--website-brand-announcement-bar-text, #ffffff);
    --shop-header-bg: var(--website-brand-header-background, #f6faeb);
    --shop-footer-bg: var(--website-brand-footer-background, #f8fbf6);
    /* Keep footer colors on the dedicated footer tokens so storefront overrides stay in sync with admin settings. */
    --shop-footer-text: var(--website-brand-footer-text, #ffffff);
    --shop-footer-heading: var(--website-brand-footer-heading, var(--shop-footer-text, #ffffff));
    --shop-footer-link: var(--website-brand-footer-link, var(--shop-footer-text, #ffffff));
    --shop-footer-bottom: var(--website-brand-footer-bottom, var(--shop-footer-text, #ffffff));
    --shop-header-border: var(--website-brand-border, #d8e4d6);
    --shop-shadow: 0 14px 40px rgba(16, 36, 54, 0.08);
    --shop-radius-lg: 24px;
    --shop-radius-md: 16px;
    --shop-radius-sm: 12px;
}

.shopfront-body {
    margin: 0;
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    color: var(--shop-ink);
    font-family: var(--shop-font-body);
    font-size: var(--shop-type-body);
    background-color: var(--shop-bg);
    background-image: var(--shop-background-image, none);
    background-size: cover;
    background-attachment: fixed;
}

.shopfront-body * {
    box-sizing: border-box;
}

.shop-container-fluid {
    width: 100%;
    max-width: none;
    padding-left: 1.15rem;
    padding-right: 1.15rem;
}

.shopfront-body a {
    color: inherit;
}

.shop-stage {
    animation: shopFadeUp 0.45s ease-out;
}

@keyframes shopFadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes shopCardRise {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-grid-stagger > [class*='col-'] {
    animation: shopCardRise 0.38s ease-out both;
}

.shop-grid-stagger > [class*='col-']:nth-child(1) {
    animation-delay: 0.03s;
}

.shop-grid-stagger > [class*='col-']:nth-child(2) {
    animation-delay: 0.06s;
}

.shop-grid-stagger > [class*='col-']:nth-child(3) {
    animation-delay: 0.09s;
}

.shop-grid-stagger > [class*='col-']:nth-child(4) {
    animation-delay: 0.12s;
}

.shop-grid-stagger > [class*='col-']:nth-child(5) {
    animation-delay: 0.15s;
}

.shop-grid-stagger > [class*='col-']:nth-child(6) {
    animation-delay: 0.18s;
}

.shop-top-strip {
    background: var(--shop-announcement-bar-bg);
    color: var(--shop-announcement-bar-text);
    font-size: 0.83rem;
    font-weight: 500;
}

.shop-top-strip-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 34px;
    gap: 0.75rem;
}

.shop-top-strip strong {
    color: var(--shop-announcement-bar-text);
    font-weight: 700;
}

.shop-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    backdrop-filter: blur(9px);
    background: var(--shop-header-bg);
    border-bottom: 1px solid var(--shop-header-border);
}

.shop-header-main {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 1rem;
    min-height: 86px;
}

.shop-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--shop-font-display);
    text-decoration: none;
}

.shop-logo:hover {
    text-decoration: none;
}

.shop-logo-mark {
    width: 100%;
    height: 40px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-weight: 800;
    color: var(--shop-secondary);
    background: linear-gradient(135deg, var(--shop-accent) 0%, color-mix(in srgb, var(--shop-accent) 78%, white) 100%);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--shop-accent) 28%, transparent);
}

.shop-logo-text {
    line-height: 1;
}

.shop-logo-title {
    font-size: calc(1.15rem * var(--shop-heading-scale));
    font-weight: var(--shop-heading-weight);
    letter-spacing: var(--shop-heading-letter-spacing);
    color: var(--shop-secondary);
}

.shop-logo-sub {
    font-size: 0.72rem;
    color: var(--shop-muted);
    margin-top: 2px;
}

.shop-search {
    position: relative;
    margin: 0;
}

.shop-search .form-control {
    border-radius: 999px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    padding: 0.7rem 1rem 0.7rem 2.7rem;
    height: auto;
    color: var(--shop-ink);
    box-shadow: inset 0 1px 0 rgba(16, 36, 54, 0.03);
}

.shop-search .form-control:focus {
    border-color: var(--shop-focus-ring);
    box-shadow: 0 0 0 0.2rem var(--shop-focus-ring-soft);
}

.shop-search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--shop-muted);
}

.shop-search .btn {
    position: absolute;
    right: 4px;
    top: 4px;
    border-radius: 999px;
    background: var(--shop-brand);
    border-color: var(--shop-brand);
    color: #ffffff;
    font-weight: 700;
    padding: 0.36rem 1rem;
}

.shop-search .btn:hover,
.shop-search .btn:focus {
    background: var(--shop-brand-dark);
    border-color: var(--shop-brand-dark);
}

.shop-search-suggestions {
    position: absolute;
    top: calc(100% + 0.35rem);
    left: 0;
    right: 0;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: 14px;
    box-shadow: 0 16px 32px rgba(16, 36, 54, 0.15);
    z-index: 1050;
    max-height: 480px;
    overflow-y: auto;
}

.shop-search-overlay-shell {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.shop-search-overlay-head {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 0.95rem;
    border-bottom: 1px solid var(--shop-line);
    background: var(--shop-surface);
    position: sticky;
    top: 0;
    z-index: 2;
}

.shop-search-overlay-head-copy-wrap {
    display: flex;
    align-items: center;
    min-width: 0;
    flex: 1 1 auto;
}

.shop-search-overlay-head .btn {
    position: static !important;
    inset: auto !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    touch-action: manipulation;
}

.shop-search-overlay-input-wrap {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.3rem;
    margin-top: 0;
    padding: 0.14rem 0.28rem 0.14rem 0.18rem;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    background: var(--shop-surface);
    color: var(--shop-muted);
    flex: 1 1 auto;
    min-height: 48px;
    box-shadow: 0 1px 0 rgba(16, 36, 54, 0.02), 0 10px 24px rgba(16, 36, 54, 0.04);
}

.shop-search-overlay-input {
    appearance: none;
    -webkit-appearance: none;
    border: 0 !important;
    background: transparent !important;
    border-radius: 0;
    padding: 0 !important;
    min-width: 0;
    width: 100%;
    min-height: 0;
    height: auto;
    margin: 0;
    box-shadow: none !important;
    -webkit-box-shadow: none !important;
    color: var(--shop-ink);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.shop-search-overlay-input-wrap .shop-search-overlay-submit {
    min-width: 0;
    width: auto;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 0;
    padding: 0 0.55rem 0 0.8rem;
    background: transparent;
    border: 0;
    border-left: 1px solid var(--shop-line);
    color: var(--shop-brand-dark);
    font-weight: 700;
    font-size: 0.88rem;
    box-shadow: none;
    white-space: nowrap;
}

.shop-search-overlay-input-wrap .shop-search-overlay-submit:hover,
.shop-search-overlay-input-wrap .shop-search-overlay-submit:focus {
    background: var(--shop-brand-soft);
    border-left-color: var(--shop-line);
}

.shop-search-overlay-input:focus {
    outline: none;
    box-shadow: none !important;
}

.shop-search-overlay-input-wrap .shop-search-overlay-back {
    width: 38px;
    min-width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-self: center;
    border-radius: 50%;
    color: var(--shop-brand);
    border-color: transparent;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.shop-search-overlay-input-wrap .shop-search-overlay-back span {
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1;
    color: inherit;
}

.shop-search-overlay-submit {
    border-radius: 999px;
    width: auto;
    min-width: 88px;
    flex: 0 0 auto;
    padding-inline: 0.9rem;
    gap: 0.35rem;
    background: var(--shop-brand);
    border-color: var(--shop-brand);
    color: var(--shop-action-text);
    font-weight: 700;
    white-space: nowrap;
}

.shop-search-overlay-body {
    min-height: 0;
}

.shop-recent-searches {
    margin-top: 0.38rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.32rem;
}

.shop-recent-search-chip,
.shop-recent-search-restore,
.shop-recent-search-clear {
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    color: var(--shop-secondary);
    border-radius: 999px;
    font-size: 0.72rem;
    line-height: 1;
    padding: 0.32rem 0.55rem;
    text-decoration: none;
}

.shop-recent-search-chip:hover,
.shop-recent-search-restore:hover {
    text-decoration: none;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-recent-search-clear {
    background: var(--shop-surface);
    cursor: pointer;
}

.shop-search-single-column {
    display: flex;
    flex-direction: column;
}

.shop-search-queryless-pill-section {
    padding-bottom: 0.15rem;
}

.shop-search-queryless-pill-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0 0.85rem 0.75rem;
}

.shop-search-query-pill {
    display: flex;
    align-items: center;
    max-width: 100%;
    min-height: 34px;
    padding: 0.45rem 0.75rem;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    background: var(--shop-surface);
    color: var(--shop-secondary);
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    line-height: 1.1;
    box-shadow: 0 1px 0 rgba(16, 36, 54, 0.03);
}

.shop-search-query-pill:hover,
.shop-search-query-pill:focus {
    text-decoration: none;
    background: var(--shop-brand-soft);
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
}

.shop-search-query-pill-label {
    display: block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-search-suggestion-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.7rem;
    padding: 0.62rem 0.85rem;
    color: var(--shop-secondary);
    text-decoration: none;
    border-bottom: 1px solid var(--shop-line);
}

.shop-search-item-icon {
    width: 1.2rem;
    min-width: 1.2rem;
    text-align: center;
    color: var(--shop-muted);
    font-size: 0.88rem;
}

.shop-search-rail-section {
    padding-bottom: 0.2rem;
}

.shop-search-rail {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0 0.85rem 0.25rem;
    scrollbar-width: thin;
}

.shop-search-rail-card {
    min-width: 118px;
    max-width: 132px;
    border: 1px solid var(--shop-line);
    border-radius: 10px;
    background: var(--shop-surface);
    text-decoration: none;
    color: var(--shop-secondary);
    padding: 0.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.shop-search-rail-card:hover,
.shop-search-rail-card:focus {
    text-decoration: none;
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-search-rail-title {
    font-size: 0.78rem;
    line-height: 1.25;
    max-height: 3.75em;
    overflow: hidden;
}

.shop-search-rail-thumb-wrap {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--shop-line);
    border-radius: 8px;
    background: var(--shop-surface);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-search-rail-thumb {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
}

.shop-search-product-rail-section {
    padding-bottom: 0.2rem;
}

.shop-search-product-rail {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0 0.75rem 0.3rem;
    scrollbar-width: thin;
}

.shop-search-product-rail-card {
    min-width: 144px;
    max-width: 164px;
    border: 1px solid var(--shop-line);
    border-radius: 14px;
    background: var(--shop-surface);
    text-decoration: none;
    color: var(--shop-secondary);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.24rem;
    box-shadow: 0 3px 10px rgba(22, 47, 64, 0.06);
    overflow: hidden;
}

.shop-search-product-rail-card:hover,
.shop-search-product-rail-card:focus {
    text-decoration: none;
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-search-product-rail-card--exact {
    border-color: color-mix(in srgb, var(--shop-brand) 55%, var(--shop-line));
    background: color-mix(in srgb, var(--shop-brand-soft) 55%, white);
}

.shop-search-product-rail-card--exact:hover,
.shop-search-product-rail-card--exact:focus {
    background: var(--shop-brand-soft);
}

.shop-search-product-rail-main {
    display: flex;
    flex-direction: column;
    gap: 0.08rem;
    min-width: 0;
    padding: 0 0.38rem 0.44rem;
}

.shop-search-product-rail-card .shop-search-thumb-wrap {
    width: 100%;
    height: 90px;
    flex: 0 0 auto;
    border-radius: 13px 13px 0 0;
    position: relative;
    border: 0;
    background: var(--shop-surface);
}

.shop-search-product-rail-card .shop-search-name {
    font-size: 0.78rem;
    line-height: 1.22;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-search-product-rail-card .shop-search-sku {
    font-size: 0.68rem;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.shop-search-product-rail-card .shop-search-price {
    font-size: 0.78rem;
    line-height: 1.2;
    margin-left: 0;
    align-self: flex-start;
}

.shop-search-product-card {
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    margin: 0.45rem 0.6rem;
    background: var(--shop-surface);
    box-shadow: 0 3px 10px rgba(22, 47, 64, 0.06);
    position: relative;
}

.shop-search-product-card:last-child {
    margin-bottom: 0.6rem;
}

.shop-search-product-primary {
    border-bottom: 1px dashed var(--shop-line);
    border-radius: 12px 12px 0 0;
}

.shop-search-thumb-wrap {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
    border: 1px solid var(--shop-line);
    border-radius: 8px;
    background: var(--shop-surface);
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-search-thumb {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.shop-search-product-match-item {
    gap: 0.65rem;
}

.shop-search-brand-overlay {
    position: absolute;
    top: 5px;
    right: 5px;
    left: auto;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0.18rem 0.45rem;
    border-radius: 9px;
    background: rgba(255, 255, 255, 0.94);
    border: 0;
    color: #111111;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.02em;
    line-height: 1;
    max-width: calc(100% - 12px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-shadow: none;
}

.shop-search-product-match-thumb {
    width: 100%;
    min-width: 0;
    position: relative;
}

.shop-search-product-match-thumb .shop-search-rail-thumb {
    object-fit: cover;
}

@media (max-width: 767.98px) {
    .shop-search-product-rail {
        gap: 0.45rem;
        padding: 0 0.65rem 0.25rem;
    }

    .shop-search-product-rail-card {
        min-width: 136px;
        max-width: 154px;
    }

    .shop-search-product-rail-card .shop-search-thumb-wrap {
        height: 84px;
    }

    .shop-search-brand-overlay {
        min-height: 22px;
        font-size: 0.66rem;
        padding: 0.16rem 0.4rem;
    }
}

/* Customer navigation drawer: native dialog keeps the mobile shell independent of Bootstrap JS. */
.shop-mobile-drawer {
    position: fixed;
    top: 0;
    right: auto;
    bottom: 0;
    left: 0;
    width: min(360px, 88vw);
    max-width: 360px;
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    border: 0;
    border-right: 1px solid var(--shop-line);
    color: var(--shop-ink);
    background: var(--shop-surface);
    overflow: hidden;
}

.shop-mobile-drawer::backdrop {
    background: rgba(15, 23, 42, 0.42);
}

.shop-mobile-drawer__header {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 0.75rem;
    border-bottom: 1px solid var(--shop-line);
}

.shop-mobile-drawer__header-spacer {
    width: 40px;
    margin-left: auto;
}

.shop-mobile-drawer__icon-button,
.shop-mobile-drawer__back {
    min-width: 40px;
    min-height: 40px;
    border: 0;
    color: var(--shop-secondary);
    background: transparent;
}

.shop-mobile-drawer__icon-button:focus-visible,
.shop-mobile-drawer__back:focus-visible,
.shop-mobile-drawer__row:focus-visible,
.shop-mobile-drawer__account:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--shop-brand) 38%, transparent);
    outline-offset: -3px;
}

.shop-mobile-drawer__body,
.shop-mobile-drawer__panel {
    height: calc(100dvh - 58px);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 0.55rem 0.8rem 1.25rem;
}

.shop-mobile-drawer__body[hidden],
.shop-mobile-drawer__panel[hidden] {
    display: none;
}

.shop-mobile-drawer__account {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-height: 64px;
    padding: 0.55rem 0.55rem;
    color: var(--shop-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--shop-line);
}

.shop-mobile-drawer__account:hover,
.shop-mobile-drawer__account:focus {
    color: var(--shop-ink);
    text-decoration: none;
}

.shop-mobile-drawer__account-icon {
    width: 34px;
    height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 34px;
    border-radius: 50%;
    color: var(--shop-brand-dark);
    background: var(--shop-brand-soft);
}

.shop-mobile-drawer__account-copy {
    min-width: 0;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.12rem;
}

.shop-mobile-drawer__account-greeting {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--shop-muted);
    font-size: 0.78rem;
}

.shop-mobile-drawer__account-link {
    font-weight: 700;
    font-size: 0.92rem;
}

.shop-mobile-drawer__section {
    margin-top: 1.1rem;
}

.shop-mobile-drawer__section-title {
    margin: 0 0 0.3rem;
    padding: 0 0.55rem;
    color: var(--shop-muted);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.shop-mobile-drawer__row {
    width: 100%;
    min-height: 52px;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem;
    border: 0;
    border-bottom: 1px solid var(--shop-line);
    color: var(--shop-ink);
    background: transparent;
    font: inherit;
    text-align: left;
    text-decoration: none;
}

.shop-mobile-drawer__row:hover,
.shop-mobile-drawer__row:focus {
    color: var(--shop-brand-dark);
    background: var(--shop-brand-soft);
    text-decoration: none;
}

.shop-mobile-drawer__row--featured {
    border-radius: 10px;
    border-bottom-color: transparent;
    color: var(--shop-brand-dark);
    background: var(--shop-brand-soft);
    font-weight: 800;
}

.shop-mobile-drawer__row--button {
    cursor: pointer;
}

.shop-mobile-drawer__row-icon {
    width: 1.2rem;
    flex: 0 0 1.2rem;
    color: var(--shop-secondary);
    text-align: center;
}

.shop-mobile-drawer__row--featured .shop-mobile-drawer__row-icon {
    color: var(--shop-brand-dark);
}

.shop-mobile-drawer__chevron {
    margin-left: auto;
    color: var(--shop-muted);
    font-size: 0.72rem;
}

.shop-mobile-drawer__panel-header {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: -0.55rem -0.8rem 0.55rem;
    padding: 0.3rem 0.55rem;
    border-bottom: 1px solid var(--shop-line);
}

.shop-mobile-drawer__panel-header h2 {
    margin: 0;
    font-size: 1rem;
}

.shop-mobile-drawer__back {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.45rem;
    font-size: 0.82rem;
    font-weight: 700;
}

.shop-mobile-drawer__nested {
    border-bottom: 1px solid var(--shop-line);
}

.shop-mobile-drawer__nested > summary {
    list-style: none;
    cursor: pointer;
}

.shop-mobile-drawer__nested > summary::-webkit-details-marker {
    display: none;
}

.shop-mobile-drawer__nested > summary .fa-chevron-down {
    transition: transform 0.16s ease;
}

.shop-mobile-drawer__nested[open] > summary .fa-chevron-down {
    transform: rotate(180deg);
}

.shop-mobile-drawer__nested-link {
    display: block;
    padding: 0.7rem 0.55rem 0.7rem 2.45rem;
    color: var(--shop-secondary);
    font-size: 0.88rem;
    text-decoration: none;
}

.shop-mobile-drawer__nested-link:hover,
.shop-mobile-drawer__nested-link:focus {
    color: var(--shop-brand-dark);
    text-decoration: underline;
}

.shop-mobile-drawer__nested--child {
    margin-left: 0.8rem;
}

.shop-mobile-drawer__nested-link--grandchild {
    padding-left: 3.25rem;
    font-size: 0.82rem;
}

.shop-mobile-drawer__empty {
    margin: 0.75rem 0.55rem;
    color: var(--shop-muted);
    font-size: 0.88rem;
}

@media (max-width: 991.98px) {
    .shop-nav-row {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-mobile-drawer__nested > summary .fa-chevron-down {
        transition: none;
    }
}

.shop-search-attribute-summary {
    padding: 0 0.85rem 0.45rem 3.95rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.shop-search-attribute-chip {
    display: inline-block;
    font-size: 0.72rem;
    line-height: 1.2;
    color: var(--shop-secondary);
    background: var(--shop-brand-soft);
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    padding: 0.15rem 0.5rem;
}

.shop-search-variation-list {
    margin: 0.1rem 0.55rem 0.55rem 3.55rem;
    padding: 0.35rem 0.2rem 0.15rem 0.75rem;
    border-left: 2px solid var(--shop-brand);
    background: var(--shop-surface);
    border-radius: 0 10px 10px 0;
}

.shop-search-variation-title {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--shop-muted);
    font-weight: 700;
    margin: 0 0 0.3rem;
}

.shop-search-variation-item {
    border: 1px solid var(--shop-line);
    border-radius: 8px;
    margin-bottom: 0.3rem;
    padding: 0.34rem 0.55rem;
    background: var(--shop-surface);
}

.shop-search-variation-item:last-child {
    margin-bottom: 0;
}

.shop-search-variation-main {
    flex-direction: row;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    overflow: hidden;
}

.shop-search-main.shop-search-variation-main {
    flex-direction: row;
}

.shop-search-variation-line {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-width: 0;
    max-width: 100%;
    white-space: nowrap;
}

.shop-search-variation-main .shop-search-name,
.shop-search-variation-line .shop-search-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-search-variation-sku {
    font-size: 0.72rem;
    color: var(--shop-muted);
    font-weight: 500;
    white-space: nowrap;
    flex: 0 0 auto;
}

.shop-search-variation-item.is-oos .shop-search-name,
.shop-search-variation-item.is-oos .shop-search-variation-sku {
    color: var(--shop-muted);
}

.shop-search-price-oos {
    color: var(--shop-muted);
}

.shop-search-variation-more {
    display: inline-block;
    margin: 0.25rem 0.15rem 0.05rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--shop-brand-dark);
    text-decoration: none;
}

.shop-search-variation-more:hover,
.shop-search-variation-more:focus {
    color: var(--shop-link-hover);
    text-decoration: underline;
}

.shop-search-suggestion-item:last-child {
    border-bottom: none;
}

.shop-search-suggestions-section + .shop-search-suggestions-section {
    border-top: 1px solid var(--shop-line);
}

.shop-search-suggestions-title {
    display: block;
    padding: 0.45rem 0.85rem 0.35rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--shop-muted);
    font-weight: 700;
}

.shop-search-suggestion-item:hover {
    text-decoration: none;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-search-suggestion-item.is-active {
    text-decoration: none;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-search-main {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.shop-search-suggestion-item .shop-search-main {
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.shop-search-suggestion-item .shop-search-name {
    min-width: 0;
}

.shop-search-suggestion-item .shop-search-suggestion-meta {
    flex: 0 0 auto;
    margin-left: auto;
}

.shop-search-name {
    font-weight: 600;
    line-height: 1.3;
    white-space: normal;
    word-break: break-word;
}

.shop-search-sku {
    color: var(--shop-muted);
    font-size: 0.78rem;
    white-space: nowrap;
}

.shop-search-price {
    color: var(--shop-price);
    font-weight: 700;
    font-size: 0.83rem;
    white-space: nowrap;
    margin-left: auto;
}

.shop-search-match {
    background: var(--shop-accent-soft);
    color: inherit;
    border-radius: 3px;
    padding: 0 2px;
}

.shop-search-empty {
    padding: 0.7rem 0.85rem 0.8rem;
    color: var(--shop-muted);
    font-size: 0.84rem;
}

.shop-search-loading {
    padding: 0.72rem 0.85rem;
    color: var(--shop-muted);
    font-size: 0.84rem;
}

.shop-header-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.shop-action-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    color: var(--shop-ink);
    text-decoration: none;
    line-height: 1;
    padding: 0;
    overflow: visible;
}

.shop-action-link:hover {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: var(--shop-brand);
}

.shop-action-link i {
    font-size: 0.94rem;
}

.shop-action-link--cart,
.shop-action-link--account,
.shop-action-link--wishlist {
    width: auto;
    min-width: 80px;
    height: 44px;
    border-radius: 999px;
    padding: 0 0.78rem;
    flex-direction: row;
    gap: 0.4rem;
    transition: all 0.2s ease;
}

.shop-action-link--location {
    width: auto;
    min-width: 112px;
    max-width: 150px;
    justify-content: flex-start;
    gap: 0.42rem;
    padding: 0 0.72rem;
    border-radius: 999px;
}

.shop-action-link--location .shop-action-caption {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-action-caption {
    display: inline-block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--shop-secondary);
    margin-top: 0;
    letter-spacing: 0.01em;
    line-height: 1;
}

.shop-action-link--cart.has-items {
    border-color: var(--shop-brand);
    background: linear-gradient(135deg, var(--shop-brand-soft) 0%, color-mix(in srgb, var(--shop-surface) 94%, transparent) 100%);
    color: var(--shop-brand-dark);
    box-shadow: 0 0 0 2px color-mix(in srgb, var(--shop-brand) 18%, transparent), 0 10px 20px rgba(16, 36, 54, 0.09);
}

.shop-action-link--cart.has-items .shop-action-caption {
    color: var(--shop-brand-dark);
}

.shop-action-badge {
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(38%, -38%);
    min-width: 20px;
    height: 18px;
    padding: 0 0.35rem;
    border-radius: 999px;
    background: var(--shop-danger);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.shop-action-link--wishlist:hover,
.shop-action-link--wishlist:focus {
    background: var(--shop-danger-soft);
    border-color: var(--shop-danger);
    color: var(--shop-danger);
}

.shop-action-link--wishlist:hover .shop-action-caption,
.shop-action-link--wishlist:focus .shop-action-caption {
    color: var(--shop-danger);
}

.shop-user-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 44px;
    border: 1px solid var(--shop-line);
    border-radius: 999px;
    padding: 0 0.78rem 0 0.34rem;
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    color: var(--shop-secondary);
    background: var(--shop-surface);
}

.shop-user-chip:hover,
.shop-user-chip:focus {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: var(--shop-brand);
}

.shop-user-chip.dropdown-toggle::after {
    margin-left: 0.32rem;
    vertical-align: middle;
}

.shop-user-avatar {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--shop-secondary);
    background: var(--shop-brand-soft);
}

.shop-nav-row {
    border-top: 1px solid var(--shop-header-border);
}

.shop-nav-wrap {
    display: flex;
    align-items: center;
    min-height: 52px;
}

.shop-nav-list {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0;
    padding: 0.55rem 0;
    list-style: none;
}

/* Navigation-owned menus: one bounded panel works for every menu/provider. */
.shop-nav-tree__item { position: relative; }
.shop-nav-tree__submenu {
    display: none;
    position: absolute;
    z-index: 1200;
    top: calc(100% + .35rem);
    left: 0;
    width: min(26rem, calc(100vw - 2rem));
    min-width: 16rem;
    max-width: calc(100vw - 2rem);
    max-height: min(70vh, 42rem, var(--shop-nav-panel-max-height, 70vh));
    overflow: auto;
    padding: .7rem;
    border: 1px solid var(--shop-line);
    border-radius: .75rem;
    background: var(--shop-surface);
    box-shadow: 0 1rem 2.5rem rgba(16, 36, 54, .16);
}
.shop-nav-tree__item.is-open > .shop-nav-tree__submenu { display: block; }
.shop-nav-tree__list { list-style: none; padding: 0; margin: 0; }
.shop-nav-tree__item:not(.shop-nav-tree__item--top) { min-width: 0; }
.shop-nav-tree__top-trigger { border: 0; cursor: pointer; background: transparent; }
.shop-nav-tree__link,
.shop-nav-tree__trigger,
.shop-nav-tree__view-all {
    display: flex; align-items: center; justify-content: space-between; gap: .7rem;
    width: 100%; padding: .55rem .7rem; border: 0; background: transparent;
    color: var(--shop-ink); text-align: left; text-decoration: none; cursor: pointer;
}
.shop-nav-tree__link:hover, .shop-nav-tree__trigger:hover, .shop-nav-tree__link:focus, .shop-nav-tree__trigger:focus { background: var(--shop-brand-soft); color: var(--shop-brand-dark); text-decoration: none; }
.shop-nav-tree__view-all { margin-bottom: .35rem; border-bottom: 1px solid var(--shop-line); color: var(--shop-brand-dark); font-weight: 700; }
.shop-nav-tree__chevron { font-size: .7rem; }
.shop-nav-tree__item:not(.shop-nav-tree__item--top) > .shop-nav-tree__submenu {
    top: 0;
    left: 100%;
    width: min(26rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    max-height: min(70vh, 42rem, var(--shop-nav-panel-max-height, 70vh));
    margin-left: 0;
    padding: .7rem;
    border: 1px solid var(--shop-line);
    border-radius: .75rem;
    box-shadow: 0 1rem 2.5rem rgba(16, 36, 54, .16);
}
.shop-nav-tree__item.is-flipped > .shop-nav-tree__submenu {
    right: 100%;
    left: auto;
}
.shop-nav-tree__submenu--mega {
    position: fixed;
    width: min(72rem, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    max-height: min(72vh, 44rem);
    overflow: hidden;
    padding: 0;
}
.shop-nav-mega { display: grid; grid-template-columns: minmax(13rem, 20rem) minmax(0, 1fr); min-height: 20rem; max-height: inherit; }
.shop-nav-mega__rail { overflow-y: auto; border-right: 1px solid var(--shop-line); padding: .7rem; background: color-mix(in srgb, var(--shop-brand-soft) 28%, var(--shop-surface)); }
.shop-nav-mega__rail-trigger, .shop-nav-mega__rail-link { display: flex; align-items: center; justify-content: space-between; gap: .5rem; width: 100%; min-height: 2.5rem; padding: .55rem .7rem; border: 0; border-radius: .3rem; background: transparent; color: var(--shop-ink); text-align: left; text-decoration: none; cursor: pointer; }
.shop-nav-mega__rail-trigger:hover, .shop-nav-mega__rail-trigger:focus-visible, .shop-nav-mega__rail-trigger.is-active, .shop-nav-mega__rail-link:hover, .shop-nav-mega__rail-link:focus-visible { background: var(--shop-brand-soft); color: var(--shop-brand-dark); outline: none; }
.shop-nav-mega__rail-trigger > span, .shop-nav-mega__rail-link { overflow-wrap: anywhere; }
.shop-nav-mega__content { min-width: 0; overflow-y: auto; padding: 1rem 1.15rem; }
.shop-nav-mega__promos { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1rem; padding-top: .7rem; border-top: 1px solid var(--shop-line); }
.shop-nav-mega__panel { display: none; }
.shop-nav-mega__panel.is-active { display: block; }
.shop-nav-mega__heading { display: block; margin-bottom: .8rem; padding-bottom: .65rem; border-bottom: 1px solid var(--shop-line); color: var(--shop-ink); font-size: 1.05rem; font-weight: 700; text-decoration: none; }
.shop-nav-mega__columns { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 1rem 1.3rem; }
.shop-nav-mega__column-heading { display: block; margin-bottom: .35rem; color: var(--shop-brand-dark); font-weight: 700; text-decoration: none; }
.shop-nav-mega__links { list-style: none; margin: 0; padding: 0; }
.shop-nav-mega__links a, .shop-nav-mega__standalone { display: block; padding: .28rem 0; color: var(--shop-ink); text-decoration: none; }
.shop-nav-mega__links a:hover, .shop-nav-mega__links a:focus-visible, .shop-nav-mega__standalone:hover, .shop-nav-mega__standalone:focus-visible, .shop-nav-mega__column-heading:focus-visible, .shop-nav-mega__heading:focus-visible { color: var(--shop-brand-dark); text-decoration: underline; }
.shop-nav-mega__standalone { font-weight: 600;
}
.shop-nav-tree__thumb { width: 1.8rem; height: 1.8rem; object-fit: contain; margin-right: .45rem; vertical-align: middle; }
.shop-nav-tree__badge { margin-left: .4rem; padding: .1rem .35rem; border-radius: .35rem; background: var(--shop-brand-soft); color: var(--shop-brand-dark); font-size: .68rem; font-weight: 700; }
.shop-nav-tree__promo { display: inline-flex; flex-direction: column; gap: .2rem; width: 12rem; margin: .8rem .4rem 0 0; padding: .55rem; border: 1px solid var(--shop-line); border-radius: .55rem; color: var(--shop-ink); text-decoration: none; }
.shop-nav-tree__promo img { width: 100%; height: 4rem; object-fit: cover; border-radius: .35rem; }
.shop-nav-tree__promo small { color: var(--shop-muted); }
.shop-nav-tree__item.has-children > .shop-nav-tree__trigger:focus-visible,
.shop-nav-tree__item.has-children > .shop-nav-tree__top-trigger:focus-visible {
    outline: 2px solid var(--shop-brand-dark);
    outline-offset: 2px;
}
@media (max-width: 991.98px) {
    .shop-nav-tree__submenu { position: static; display: block; width: auto; min-width: 0; max-width: none; max-height: none; overflow: visible; padding: 0 0 0 .75rem; border: 0; box-shadow: none; }
    .shop-nav-tree__submenu--desktop { display: none; }
    .shop-nav-tree__item:not(.shop-nav-tree__item--top) > .shop-nav-tree__submenu { position: static; }
    .shop-nav-tree__item.is-flipped > .shop-nav-tree__submenu { right: auto; left: auto; }
    .shop-nav-tree__submenu--mega { position: static; width: auto; max-width: none; max-height: none; overflow: visible; padding: 0; }
    .shop-nav-mega { display: block; min-height: 0; max-height: none; }
    .shop-nav-mega__rail { border-right: 0; padding: 0 0 0 .75rem; background: transparent; }
    .shop-nav-mega__content { padding: 0 0 0 .75rem; overflow: visible; }
    .shop-nav-mega__panel { display: block; padding: .25rem 0; }
    .shop-nav-mega__panel:not(:first-child) { display: none; }
    .shop-nav-mega__columns { display: block; }
}
@media (prefers-reduced-motion: reduce) {
    .shop-nav-pill { transition: none; }
}

.shop-nav-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border-radius: 999px;
    padding: 0.34rem 0.88rem;
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--shop-ink);
    text-decoration: none;
    transition: all 0.18s ease;
}

.shop-nav-pill:hover {
    text-decoration: none;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-nav-pill.active {
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-main {
    padding: 1.55rem 0 2rem;
}

.shop-footer {
    margin-top: 1.2rem;
    border-top: 1px solid var(--shop-header-border);
    background: var(--shop-footer-bg);
    padding: 1.5rem 0 1rem;
}

.shop-footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 1rem;
}

.shop-footer h5 {
    font-size: 0.95rem;
    margin-bottom: 0.55rem;
    color: var(--shop-footer-heading);
}

.shop-footer p,
.shop-footer a {
    display: block;
    color: var(--shop-footer-text);
    font-size: 0.86rem;
    line-height: 1.45;
    text-decoration: none;
}

.shop-footer a:hover {
    color: var(--shop-link-hover);
}

.shop-footer-bottom {
    margin-top: 0.9rem;
    border-top: 1px solid var(--shop-header-border);
    padding-top: 0.65rem;
    color: var(--shop-footer-bottom);
    font-size: 0.82rem;
}

.shop-alert {
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius-sm);
    box-shadow: 0 7px 20px rgba(16, 36, 54, 0.06);
}

.shop-alert--success {
    background: var(--shop-notice-success-bg);
    border-color: var(--shop-notice-success-bg);
    color: var(--shop-notice-success-text);
}

.shop-alert--warning {
    background: var(--shop-notice-warning-bg);
    border-color: var(--shop-notice-warning-bg);
    color: var(--shop-notice-warning-text);
}

.shop-alert--info,
.shop-info-banner {
    background: var(--shop-notice-info-bg);
    border-color: var(--shop-notice-info-bg);
    color: var(--shop-notice-info-text);
}

.shop-alert--danger {
    background: var(--shop-notice-danger-bg);
    border-color: var(--shop-notice-danger-bg);
    color: var(--shop-notice-danger-text);
}

.shop-surface {
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    border-radius: var(--shop-radius-lg);
    box-shadow: var(--shop-shadow);
}

.shop-surface.soft {
    background: var(--shop-surface);
}

.shop-surface-header {
    border-bottom: 1px solid var(--shop-line);
    padding: 1rem 1.2rem;
    font-weight: 700;
}

.shop-padded {
    padding: 1.25rem;
}

.shop-title {
    font-family: var(--shop-font-display);
    font-size: var(--shop-type-heading-md);
    font-weight: var(--shop-heading-weight);
    letter-spacing: var(--shop-heading-letter-spacing);
    line-height: 1.2;
    margin: 0;
    color: var(--shop-heading);
}

.shop-subtitle {
    color: var(--shop-muted);
    margin-top: 0.25rem;
    font-size: var(--shop-type-label);
}

.shop-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 1rem;
}

.shop-section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    background: var(--shop-accent-soft);
    color: var(--shop-secondary-dark);
    font-size: 0.75rem;
    font-weight: var(--shop-heading-weight);
    text-transform: uppercase;
    letter-spacing: var(--shop-heading-letter-spacing);
}

.shop-display-heading {
    font-family: var(--shop-font-display);
}

.shop-brand-note {
    color: var(--shop-brand-dark);
}

.shop-link-inline {
    color: var(--shop-link);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-color: color-mix(in srgb, var(--shop-link) 78%, transparent);
    text-decoration-thickness: 0.08em;
    text-underline-offset: 0.16em;
    transition: color 0.12s ease, text-decoration-color 0.12s ease;
}

.shop-link-inline:hover,
.shop-link-inline:focus {
    color: var(--shop-link-hover);
    text-decoration: underline;
    text-decoration-color: currentColor;
}

.shop-plain-link {
    color: inherit;
    text-decoration: none;
}

.shop-plain-link:hover,
.shop-plain-link:focus {
    color: inherit;
    text-decoration: none;
}

.shop-inline-action {
    appearance: none;
    background: transparent;
    border: 0;
    color: var(--shop-link);
    cursor: pointer;
    padding: 0;
    text-decoration: none;
}

.shop-inline-action:hover,
.shop-inline-action:focus {
    color: var(--shop-link-hover);
    text-decoration: none;
    outline: none;
}

.shop-inline-action--danger,
.shop-inline-action--danger:hover,
.shop-inline-action--danger:focus {
    color: var(--shop-danger);
}

.shop-soft-panel {
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    background: var(--shop-surface-soft);
    padding: 1rem;
}

.shop-thumb-frame {
    object-fit: cover;
    border: 1px solid var(--shop-line);
    border-radius: 8px;
}

.shop-thumb-frame--42 {
    width: 42px;
    height: 42px;
}

.shop-thumb-frame--54 {
    width: 54px;
    height: 54px;
}

.shop-thumb-frame--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--shop-surface-soft);
    color: var(--shop-muted);
}

.shop-rail-controls {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.shop-rail-control {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    color: var(--shop-brand-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(16, 36, 54, 0.08);
}

.shop-rail-control:hover,
.shop-rail-control:focus {
    background: var(--shop-brand-soft);
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
    outline: none;
}

.shop-rail-control:disabled {
    opacity: 0.45;
    cursor: not-allowed;
    box-shadow: none;
}

.shop-product-rail-wrap {
    position: relative;
}

.shop-product-rail {
    display: flex;
    flex-wrap: nowrap;
    gap: 0.9rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 0.2rem 0.1rem 0.95rem;
    scrollbar-width: auto;
    scrollbar-color: var(--shop-brand-soft) var(--shop-bg);
    cursor: grab;
    scroll-snap-type: x proximity;
}

.shop-product-rail::-webkit-scrollbar {
    height: 12px;
}

.shop-product-rail::-webkit-scrollbar-track {
    background: var(--shop-bg);
    border-radius: 999px;
}

.shop-product-rail::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--shop-brand) 0%, var(--shop-brand-dark) 100%);
    border-radius: 999px;
    border: 2px solid var(--shop-bg);
}

.shop-product-rail-item {
    flex: 0 0 280px;
    min-width: 280px;
    max-width: 280px;
    scroll-snap-align: start;
}

.shop-product-rail.is-dragging {
    cursor: grabbing;
    user-select: none;
}

.shop-product-rail.is-dragging a,
.shop-product-rail.is-dragging button {
    pointer-events: none;
}

.shop-rail-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin: 0.55rem auto 0;
    width: 100%;
    padding: 0 0.4rem;
}

.shop-rail-indicator {
    width: 12px;
    height: 12px;
    border: 1px solid var(--shop-brand-soft);
    border-radius: 999px;
    background: var(--shop-surface);
    padding: 0;
    line-height: 0;
    transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.shop-rail-indicator:hover,
.shop-rail-indicator:focus {
    outline: none;
    border-color: var(--shop-brand-dark);
    transform: scale(1.08);
}

.shop-rail-indicator.is-active {
    background: var(--shop-brand);
    border-color: var(--shop-brand);
}

.btn-shop-primary,
.btn-shop-secondary,
.btn-shop-light,
.btn-shop-danger,
.btn-shop-outline {
    border-radius: 12px;
    font-weight: 700;
    border-width: 1px;
    padding: 0.56rem 1rem;
}

.btn-shop-primary {
    background: var(--shop-brand);
    border-color: var(--shop-brand);
    color: var(--shop-action-text);
}

.btn-shop-primary:hover,
.btn-shop-primary:focus {
    background: var(--shop-brand-dark);
    border-color: var(--shop-brand-dark);
    color: var(--shop-action-text);
}

.btn-shop-secondary {
    background: var(--shop-brand-soft);
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
}

.btn-shop-secondary:hover,
.btn-shop-secondary:focus {
    background: var(--shop-brand);
    border-color: var(--shop-brand-dark);
    color: var(--shop-action-text);
}

.btn-shop-light {
    background: var(--shop-surface);
    border-color: var(--shop-line);
    color: var(--shop-ink);
}

.btn-shop-light:hover,
.btn-shop-light:focus {
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
}

.btn-shop-danger {
    background: var(--shop-danger-soft);
    border-color: color-mix(in srgb, var(--shop-danger) 28%, transparent);
    color: var(--shop-danger);
}

.btn-shop-danger:hover,
.btn-shop-danger:focus {
    background: color-mix(in srgb, var(--shop-danger-soft) 82%, white);
    border-color: var(--shop-danger);
    color: color-mix(in srgb, var(--shop-danger) 80%, black);
}

.btn-shop-outline {
    background: transparent;
    border-color: var(--shop-line);
    color: var(--shop-secondary);
}

.btn-shop-outline:hover,
.btn-shop-outline:focus {
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
    background: var(--shop-brand-soft);
}

.btn-shop-retry {
    background: linear-gradient(135deg, var(--shop-brand) 0%, var(--shop-brand-dark) 100%);
    border-color: var(--shop-brand-dark);
    color: var(--shop-action-text);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--shop-brand-dark) 32%, transparent);
}

.btn-shop-retry:hover,
.btn-shop-retry:focus {
    background: linear-gradient(135deg, var(--shop-brand-dark) 0%, color-mix(in srgb, var(--shop-brand-dark) 78%, black) 100%);
    border-color: var(--shop-brand-dark);
    color: var(--shop-action-text);
    box-shadow: 0 10px 20px color-mix(in srgb, var(--shop-brand-dark) 38%, transparent);
}

.shop-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    border-radius: 999px;
    padding: 0.32rem 0.68rem;
    background: var(--shop-secondary-soft);
    color: var(--shop-secondary);
    font-weight: 600;
    font-size: 0.77rem;
}

.shop-pill.yellow {
    background: var(--shop-accent-soft);
    color: var(--shop-badge-text);
}

.shop-pill--accent {
    background: var(--shop-accent-soft);
    color: var(--shop-badge-text);
}

.shop-pill--secondary {
    background: var(--shop-secondary-soft);
    color: var(--shop-secondary);
}

.shop-pill--brand {
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-pill--danger {
    background: var(--shop-danger-soft);
    color: var(--shop-danger);
}

.shop-pill.green {
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-hero {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    background: linear-gradient(124deg, var(--shop-hero-start) 0%, var(--shop-hero-end) 100%);
    color: var(--shop-hero-text);
    padding: 2rem;
    box-shadow: 0 22px 48px rgba(16, 36, 54, 0.17);
}

.shop-hero::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 38% 62% 42% 58%;
    right: -60px;
    top: -60px;
    background: var(--shop-accent-soft);
}

.shop-hero h1 {
    font-family: var(--shop-font-display);
    font-size: clamp(calc(1.8rem * var(--shop-heading-scale)), 2.4vw, calc(2.6rem * var(--shop-heading-scale)));
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0.7rem;
    color: inherit;
}

.shop-hero p {
    color: color-mix(in srgb, var(--shop-hero-text) 88%, transparent);
    margin-bottom: 1.15rem;
    max-width: 560px;
}

.shop-home-hero-kicker {
    background: color-mix(in srgb, var(--shop-hero-text) 14%, transparent);
    border: 1px solid color-mix(in srgb, var(--shop-hero-text) 24%, transparent);
    color: var(--shop-hero-text);
    box-shadow: 0 8px 18px color-mix(in srgb, var(--shop-hero-text) 12%, transparent);
}

.shop-home-hero-kicker i {
    color: inherit;
}

.shop-hero-stat {
    background: color-mix(in srgb, var(--shop-surface) 13%, transparent);
    border: 1px solid color-mix(in srgb, var(--shop-surface) 18%, transparent);
    border-radius: 14px;
    padding: 0.55rem 0.75rem;
    min-width: 110px;
}

.shop-hero-stat strong {
    display: block;
    font-size: 1rem;
    color: inherit;
}

.shop-hero-stat span {
    font-size: 0.74rem;
    color: color-mix(in srgb, var(--shop-hero-text) 84%, transparent);
}

.shop-category-tile {
    border-radius: var(--shop-radius-md);
    border: 1px solid var(--shop-line);
    background: linear-gradient(150deg, var(--shop-surface) 0%, var(--shop-surface) 100%);
    padding: 1rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.shop-category-tile:hover {
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px rgba(16, 36, 54, 0.09);
}

.shop-category-tile-media {
    width: 100%;
    height: 96px;
    border-radius: 12px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shop-category-tile-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.shop-category-card-media {
    width: 100%;
    height: 128px;
    border-radius: 14px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.shop-category-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
}

.shop-category-tile-name {
    font-family: var(--shop-font-display);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.25em * 2);
}

.shop-category-card-head {
    min-width: 0;
}

.shop-category-card-title {
    font-family: var(--shop-font-display);
    min-width: 0;
    margin-right: 0.5rem;
    overflow: hidden;
    text-overflow: ellipsis;
    word-break: break-word;
    overflow-wrap: anywhere;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.3em * 2);
}

.shop-category-card-description {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    min-height: calc(1.4em * 2);
}

.shop-category-sub-pill {
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-decoration: none;
}

.shop-category-explore-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
}

.shop-category-explore-btn-text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.shop-muted {
    color: var(--shop-muted);
}

.product-tile {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 18px;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    box-shadow: 0 13px 30px rgba(16, 36, 54, 0.07);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    height: 100%;
}

.product-tile-main-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.product-tile-main-link:hover,
.product-tile-main-link:focus {
    text-decoration: none;
    color: inherit;
}

.product-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 35px rgba(16, 36, 54, 0.13);
}

.product-tile-media {
    position: relative;
    background: var(--shop-surface);
    border-bottom: 1px solid var(--shop-line);
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    min-height: 0;
    max-height: none;
    flex: 0 0 auto;
    overflow: hidden;
    display: grid;
    place-items: center;
    padding: 10px;
}

.product-image-value-tabs {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    max-width: calc(100% - 56px);
    z-index: 3;
}

.product-image-value-tabs--brand {
    top: 40px;
}

.product-tile-wishlist {
    position: absolute;
    right: 8px;
    bottom: 4px;
    top: auto;
    left: auto;
    margin: 0;
    z-index: 4;
}

.product-tile-wishlist-btn {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    color: #e91e63;
    box-shadow: none;
    line-height: 1;
    appearance: none;
}

.product-tile-wishlist-btn:hover,
.product-tile-wishlist-btn:focus,
.product-tile-wishlist-btn:active {
    color: #e91e63;
    background: rgba(255, 255, 255, 0.98);
}

.product-tile-wishlist-icon {
    font-size: 1rem;
    line-height: 1;
}

.product-tile-wishlist-btn:focus-visible {
    outline: 2px solid rgba(233, 30, 99, 0.35);
    outline-offset: 2px;
}

.product-image-value-tabs-detail {
    top: 10px;
    left: 10px;
}

.product-image-value-tabs-detail.product-image-value-tabs--brand {
    top: 44px;
}

.product-brand-overlay {
    position: absolute;
    top: 8px;
    right: 8px;
    left: auto;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: calc(100% - 56px);
    min-height: 28px;
    padding: 0.18rem 0.45rem;
    border-radius: 9px;
    border: 1px solid var(--shop-line);
    background: color-mix(in srgb, var(--shop-surface) 94%, transparent);
    box-shadow: 0 4px 12px rgba(16, 36, 54, 0.12);
    overflow: hidden;
}

.product-brand-overlay--detail {
    top: 10px;
    right: 10px;
    left: auto;
    max-width: min(112px, calc(100% - 20px));
    min-height: 32px;
    z-index: 4;
}

.product-brand-overlay--detail img {
    height: 24px;
}

.product-brand-overlay--detail .product-brand-overlay__text {
    font-size: 0.8rem;
}

.product-brand-overlay--card {
    top: 8px;
    right: 8px;
    left: auto;
    max-width: min(92px, calc(100% - 16px));
    min-height: 28px;
    border: 1px solid color-mix(in srgb, var(--shop-line) 70%, transparent);
    box-shadow: none;
    background: rgba(255, 255, 255, 0.94);
}

.product-rating-badge {
    position: absolute;
    left: 8px;
    bottom: 8px;
    right: auto;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 0.2rem;
    max-width: calc(100% - 16px);
    padding: 0.18rem 0.32rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111111;
    box-shadow: 0 1px 4px rgba(16, 36, 54, 0.12);
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
}

.product-rating-badge__value {
    letter-spacing: 0.01em;
    color: inherit;
}

.product-rating-badge__star {
    color: var(--shop-accent);
    font-size: 0.74rem;
}

.product-rating-badge__sep {
    color: #444444;
    font-weight: 700;
}

.product-rating-badge__count {
    overflow: hidden;
    text-overflow: ellipsis;
    color: inherit;
}

.product-tile-stock-pill {
    position: absolute;
    right: 8px;
    bottom: 48px;
    z-index: 2;
}

.product-brand-overlay img {
    display: block;
    width: auto;
    height: 20px;
    max-width: 100%;
    object-fit: contain;
}

.product-brand-overlay__text {
    display: inline-block;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #111111;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1;
}

.product-image-value-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    min-height: 24px;
    max-height: 26px;
    padding: 0.15rem 0.35rem;
    background: color-mix(in srgb, var(--shop-surface) 95%, transparent);
    border: 1px solid var(--shop-line);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(16, 36, 54, 0.1);
    overflow: hidden;
}

.product-image-value-tab img {
    display: block;
    width: auto;
    height: 20px;
    max-width: 78px;
    object-fit: contain;
}

.product-image-value-tab-text {
    display: inline-block;
    font-size: 0.68rem;
    line-height: 1.05;
    font-weight: 700;
    color: var(--shop-ink);
    white-space: nowrap;
    max-width: 108px;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-image-value-tabs .product-image-value-tab:first-child {
    min-width: 44px;
    min-height: 28px;
    max-height: 30px;
    padding: 0.17rem 0.42rem;
}

.product-image-value-tabs .product-image-value-tab:first-child .product-image-value-tab-text {
    font-size: 0.78rem;
}

.product-tile-media__image {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: center;
}

.product-tile-body {
    padding: 0.78rem 0.78rem 0.82rem;
    background: var(--shop-surface);
    position: relative;
    z-index: 1;
}

.product-tile-actions-wrap {
    padding: 0 0.78rem 0.82rem;
}

.product-tile-category {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.product-tile-name {
    font-weight: 700;
    font-size: var(--shop-type-card-title);
    line-height: 1.3;
    margin: 0.2rem 0 0.36rem;
    white-space: normal;
    overflow: visible;
    text-overflow: initial;
    min-height: 0;
}

.product-price-wrap {
    line-height: 1.22;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    gap: 0.45rem;
    --price-size: 1rem;
}

.product-price-row--single-line {
    align-items: center;
    flex-wrap: nowrap;
}

.product-price-tax {
    white-space: nowrap;
    flex: 0 0 auto;
    margin-top: 0.14rem;
}

.product-price {
    font-size: var(--price-size);
    font-weight: 800;
    color: var(--shop-price);
    font-family: var(--shop-font-display);
    white-space: nowrap;
}

.product-price-old {
    color: var(--shop-muted);
    text-decoration: line-through;
    font-size: calc(var(--price-size) * 0.75);
    font-weight: 600;
    white-space: nowrap;
}

.product-price-discount-pill {
    margin-left: auto;
    background: linear-gradient(135deg, var(--shop-accent) 0%, color-mix(in srgb, var(--shop-accent) 82%, black) 100%);
    color: var(--shop-badge-text);
    border: 1px solid color-mix(in srgb, var(--shop-accent) 75%, black);
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.67rem;
    line-height: 1.1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    padding: 0.22rem 0.5rem;
    letter-spacing: 0.01em;
}

.product-tile .product-price-row--single-line {
    justify-content: flex-start;
}

.product-tile .product-price-row--single-line .product-price {
    order: 1;
    min-width: 0;
}

.product-tile .product-price-row--single-line .product-price-old {
    order: 2;
    min-width: 0;
}

.product-tile .product-price-row--single-line .product-price-discount-pill {
    order: 3;
    justify-self: auto;
    align-self: center;
}

.product-price-alt {
    font-weight: 700;
}

.pdp-price-row {
    --price-size: 1.55rem;
}

.product-rating {
    font-size: 0.76rem;
    color: var(--shop-muted);
}

.product-rating i {
    color: var(--shop-accent);
}

.product-variant-more-link {
    display: block;
    margin-bottom: 0.3rem;
    color: var(--shop-link);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.2;
    text-align: left;
    white-space: normal;
    word-break: break-word;
}

.product-variant-more-link:hover,
.product-variant-more-link:focus {
    color: var(--shop-link-hover);
    text-decoration: underline;
}

.product-tile-actions .btn {
    min-height: 42px;
    white-space: nowrap;
}

.product-tile-actions--variable {
    width: 100%;
}

.product-tile-actions--variable .btn {
    flex: 1 1 0;
    min-width: 0;
}

.shop-qty-control,
.product-card-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--shop-line);
    border-radius: 14px;
    background: var(--shop-surface);
    box-shadow: inset 0 1px 0 rgba(16, 36, 54, 0.03);
    padding: 0;
    min-width: 0;
    width: 100%;
    overflow: visible;
    height: 42px;
    position: relative;
}

.shop-qty-control--compact {
    height: 40px;
    border-radius: 12px;
}

.shop-product-cart-cta {
    width: 100%;
    min-width: 0;
}

.shop-product-cart-cta.is-add-state .shop-product-cart-qty {
    display: none !important;
}

.shop-product-cart-cta.is-qty-state .shop-product-cart-add-btn {
    display: none !important;
}

.shop-product-cart-add-btn {
    width: 100%;
    min-width: 0;
    min-height: 42px;
    font-weight: 700;
    border-radius: 12px;
    justify-content: center;
    touch-action: pan-y;
}

.shop-product-cart-qty {
    position: relative;
    display: grid;
    grid-template-columns: 44px minmax(32px, 1fr) 44px;
    align-items: stretch;
    width: 100%;
    min-width: 0;
    min-height: 42px;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--shop-brand);
    background: var(--shop-brand);
    color: var(--shop-surface);
}

.shop-product-cart-qty-btn {
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: inherit;
    font-weight: 700;
    width: 40px;
    height: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
    align-self: stretch;
}

.shop-product-cart-qty-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 2px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: currentColor;
    pointer-events: none;
}

.shop-product-cart-qty-btn.js-product-cart-inc::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 12px;
    border-radius: 999px;
    transform: translate(-50%, -50%);
    background: currentColor;
    pointer-events: none;
}

.shop-product-cart-qty-btn > span {
    display: none;
}

.shop-product-cart-qty-value {
    width: 100%;
    min-width: 0;
    align-self: stretch;
    position: relative;
    z-index: 2;
    text-align: center;
    font-weight: 800;
    color: inherit;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: calc(0.92rem * var(--product-cart-qty-fit-scale, 1));
    line-height: 1;
    padding: 0 0.35rem;
    white-space: nowrap;
    appearance: textfield;
    -moz-appearance: textfield;
    user-select: text;
    -webkit-user-select: text;
    caret-color: currentColor;
    pointer-events: auto;
    overflow: hidden;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
    font-variant-numeric: normal;
}

.shop-product-cart-qty-value::-webkit-outer-spin-button,
.shop-product-cart-qty-value::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.shop-product-cart-manager-trigger {
    width: 100%;
    min-height: 44px;
    display: grid;
    grid-template-columns: 44px minmax(32px, 1fr) 44px;
    align-items: center;
    justify-items: center;
    padding: 0;
    border: 1px solid var(--shop-brand);
    border-radius: 12px;
    background: var(--shop-brand);
    color: var(--shop-surface);
    font-weight: 800;
    line-height: 1;
}

.shop-product-cart-seller-context {
    margin-top: 0.3rem;
    color: var(--shop-secondary);
    font-size: 0.74rem;
    line-height: 1.2;
    text-align: center;
}

.shop-product-cart-manager-trigger:hover,
.shop-product-cart-manager-trigger:focus-visible {
    background: var(--shop-brand-dark);
    color: var(--shop-surface);
}

.shop-product-cart-manager-trigger span {
    font-size: 1.2rem;
    font-weight: 400;
}

.shop-product-cart-manager-lines {
    display: grid;
    gap: 0.75rem;
}

.shop-product-cart-manager-line {
    border: 1px solid var(--shop-line);
    border-radius: 0.75rem;
    padding: 0.75rem;
    background: var(--shop-surface);
}

.shop-product-cart-manager-line__meta {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.shop-product-cart-manager-line__summary {
    color: var(--shop-secondary);
    font-size: 0.78rem;
}

.shop-product-cart-manager-line__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
    margin-top: 0.65rem;
}

.shop-product-cart-manager-stepper {
    display: grid;
    grid-template-columns: 44px 64px 44px;
    min-height: 44px;
    border: 1px solid var(--shop-brand);
    border-radius: 0.65rem;
    overflow: hidden;
    background: var(--shop-brand);
    color: var(--shop-surface);
}

.shop-product-cart-manager-stepper button,
.shop-product-cart-manager-stepper input {
    min-width: 44px;
    min-height: 44px;
    border: 0;
    background: transparent;
    color: inherit;
    text-align: center;
    font-weight: 800;
}

.shop-product-cart-manager-stepper input {
    width: 64px;
    padding: 0 0.2rem;
    appearance: textfield;
}

.shop-product-cart-manager-stepper input::-webkit-outer-spin-button,
.shop-product-cart-manager-stepper input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

@media (max-width: 575.98px) {
    #shopProductCartManagerModal .modal-dialog {
        min-height: 100%;
        margin: 0;
    }

    #shopProductCartManagerModal .modal-content {
        min-height: 100vh;
        border-radius: 0;
    }
}

.shop-product-cart-cta--card .shop-product-cart-add-btn {
    background: var(--shop-surface);
    border: 1px solid var(--shop-brand);
    color: var(--shop-brand-dark);
}

.shop-product-cart-cta--card .shop-product-cart-add-btn:hover,
.shop-product-cart-cta--card .shop-product-cart-add-btn:focus-visible {
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
}

.shop-product-cart-add-btn:active,
.shop-product-cart-add-btn:focus,
.shop-product-cart-add-btn:focus-visible,
.shop-product-cart-qty-btn:active,
.shop-product-cart-qty-btn:focus,
.shop-product-cart-qty-btn:focus-visible {
    outline: none;
    box-shadow: none;
    background: inherit !important;
}

.shop-product-cart-cta--card .shop-product-cart-qty {
    background: var(--shop-brand);
    color: var(--shop-surface);
}

.shop-product-cart-cta--card .shop-product-cart-qty-btn {
    width: 100%;
    min-width: 0;
}

.shop-product-cart-cta--card .shop-product-cart-qty-value {
    min-width: 0;
    padding: 0 0.1rem;
    font-size: 1.04rem;
    letter-spacing: -0.005em;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    font-variant-numeric: normal;
}

.shop-product-cart-cta.is-product-cart-holding .shop-product-cart-qty-value {
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    caret-color: transparent;
    background: transparent;
}

.shop-product-cart-cta.is-product-cart-editing .shop-product-cart-qty-value {
    color: inherit;
}

.shop-product-cart-cta--pdp .shop-product-cart-add-btn {
    background: var(--shop-brand);
    border: 1px solid var(--shop-brand);
    color: var(--shop-surface);
}

.shop-product-cart-cta--pdp .shop-product-cart-add-btn:hover,
.shop-product-cart-cta--pdp .shop-product-cart-add-btn:focus-visible {
    background: var(--shop-brand-dark);
    border-color: var(--shop-brand-dark);
    color: var(--shop-surface);
}

.shop-product-cart-cta--pdp .shop-product-cart-qty {
    background: var(--shop-brand);
    color: var(--shop-surface);
}

.shop-product-cart-cta--card .shop-product-cart-qty-btn::before,
.shop-product-cart-cta--pdp .shop-product-cart-qty-btn::before {
    color: inherit;
}

.shop-qty-control--cart {
    height: 34px;
    border-radius: 10px;
}

.shop-qty-btn,
.product-card-qty-btn {
    border: 0;
    background: transparent !important;
    box-shadow: none !important;
    color: var(--shop-secondary);
    font-weight: 700;
    font-size: 1.1rem;
    width: 44px;
    height: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    flex: 0 0 auto;
    padding: 0;
    position: relative;
    z-index: 2;
    opacity: 1;
    font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.shop-qty-control--cart .shop-qty-btn {
    width: 40px;
    font-size: 1rem;
}

.shop-qty-btn > span,
.product-card-qty-btn > span {
    display: none;
}

.shop-qty-btn::before,
.product-card-qty-btn::before {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
    color: var(--shop-secondary);
    pointer-events: none;
}

.shop-qty-control--cart .shop-qty-btn::before {
    font-size: 1.05rem;
}

.shop-qty-btn.js-shop-qty-dec::before,
.product-card-qty-btn.js-card-qty-dec::before {
    content: "\2212";
}

.shop-qty-btn.js-shop-qty-inc::before,
.product-card-qty-btn.js-card-qty-inc::before {
    content: "+";
}

.shop-qty-btn:hover,
.shop-qty-btn:focus,
.product-card-qty-btn:hover,
.product-card-qty-btn:focus {
    color: var(--shop-brand-dark);
    background: transparent !important;
}

.shop-action-link:focus-visible,
.shop-rail-control:focus-visible,
.shop-qty-btn:focus-visible,
.product-card-qty-btn:focus-visible,
.shop-search .btn:focus-visible,
.product-tile-wishlist .btn-shop-danger:focus-visible {
    outline: 2px solid var(--shop-focus-ring);
    outline-offset: 2px;
}

.shop-product-cart-qty-btn:focus-visible {
    outline: 2px solid rgba(255, 255, 255, 0.82);
    outline-offset: -2px;
    box-shadow: inset 0 0 0 1px rgba(16, 36, 54, 0.18);
}

.shop-qty-btn.js-shop-qty-dec,
.product-card-qty-btn.js-card-qty-dec {
    border-right: 0;
}

.shop-qty-btn.js-shop-qty-inc,
.product-card-qty-btn.js-card-qty-inc {
    border-left: 0;
}

.shop-qty-input,
.product-card-qty-input {
    position: absolute;
    inset: 0;
    width: 100%;
    border: 0;
    background: transparent !important;
    text-align: center;
    font-weight: 700;
    color: var(--shop-ink);
    padding: 0 4px;
    height: 42px;
    line-height: 1.1;
    font-size: 1rem;
    border-radius: 0;
    -moz-appearance: textfield;
    appearance: textfield;
    z-index: 1;
    pointer-events: auto;
    caret-color: var(--shop-ink);
    overflow: visible;
}

.shop-qty-control--cart .shop-qty-input {
    height: 34px;
    font-size: 0.98rem;
}

.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button,
.product-card-qty-input::-webkit-outer-spin-button,
.product-card-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
    opacity: 0;
}

.shop-qty-input[readonly] {
    pointer-events: none;
}

.js-simple-card-add-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
}

.js-variant-card-add-form {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem;
    align-items: stretch;
}

.js-simple-card-add-form .btn,
.js-simple-card-add-form .product-card-qty-wrap,
.js-variant-card-add-form .btn,
.js-variant-card-add-form .product-card-qty-wrap {
    min-width: 0;
    width: 100%;
}

.js-simple-card-add-form .btn,
.js-variant-card-add-form .btn {
    justify-content: center;
}

#shopVariantQuickAddDropdown .dropdown-menu {
    max-height: 320px;
    overflow-y: auto;
    overflow-x: hidden;
}

#shopVariantQuickAddSelectedLabel {
    flex: 1 1 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: left;
}

#shopVariantQuickAddSelectedPrice {
    flex: 0 0 auto;
    white-space: nowrap;
    max-width: 40%;
    overflow: hidden;
    text-overflow: ellipsis;
}

#shopVariantQuickAddMenu .variant-direct-option {
    align-items: flex-start !important;
    gap: 0.75rem;
}

.shop-variant-quick-add-image-wrap {
    width: 108px;
    height: 108px;
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    background: var(--shop-surface);
    overflow: hidden;
}

.shop-variant-quick-add-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.shop-variant-quick-add-head {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.shop-variant-quick-add-pricebox {
    flex: 1 1 auto;
    min-width: 0;
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    padding: 0.55rem 0.65rem;
    background: var(--shop-surface);
}

.shop-variant-quick-add-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-variant-quick-add-price-current {
    font-weight: 800;
    color: var(--shop-secondary);
    font-size: 1.08rem;
    line-height: 1.1;
}

.shop-variant-quick-add-price-old {
    color: var(--shop-muted);
    text-decoration: line-through;
    font-size: 0.89rem;
    line-height: 1.1;
    display: none;
}

.shop-variant-quick-add-discount {
    display: none;
    font-size: 0.78rem;
    font-weight: 700;
    color: color-mix(in srgb, var(--shop-secondary) 78%, var(--shop-accent));
    background: var(--shop-accent-soft);
    border: 1px solid var(--shop-accent);
    border-radius: 999px;
    padding: 0.08rem 0.42rem;
}

.shop-variant-quick-add-actions {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    flex-wrap: nowrap;
}

.shop-variant-quick-add-qty-wrap {
    flex: 0 0 108px;
    width: 108px;
}

#shopVariantQuickAddQty {
    font-weight: 700;
}

.shop-quick-add-custom-inputs {
    border-top: 1px solid var(--shop-line);
    padding-top: 0.7rem;
}

.shop-quick-add-custom-inputs__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.5rem;
    margin-bottom: 0.45rem;
}

.shop-quick-add-custom-inputs .form-group:last-child {
    margin-bottom: 0;
}

.shop-quick-add-custom-inputs .form-control {
    min-height: 40px;
}

.shop-quick-add-custom-inputs .form-check {
    margin-bottom: 0.25rem;
}

@media (max-width: 767.98px) {
    #shopVariantQuickAddModal .modal-dialog {
        width: calc(100% - 1rem);
        max-width: calc(100% - 1rem);
        margin: 0.5rem auto;
    }

    #shopVariantQuickAddModal .modal-content {
        max-height: calc(100dvh - 1rem);
        overflow: hidden;
    }

    #shopVariantQuickAddModal .modal-body {
        overflow-y: auto;
        max-height: calc(100dvh - 12rem);
        padding-bottom: 0.65rem;
    }

    #shopVariantQuickAddDropdownButton {
        min-height: 46px;
        align-items: flex-start !important;
        text-align: left;
    }

    #shopVariantQuickAddSelectedLabel {
        max-width: 66vw;
        white-space: normal;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        line-height: 1.2;
    }

    #shopVariantQuickAddSelectedPrice {
        max-width: 28vw;
        margin-left: 0.4rem !important;
        font-size: 0.83rem;
    }

    #shopVariantQuickAddDropdown .dropdown-menu {
        max-height: 42vh;
        max-height: 42dvh;
        overflow-y: auto;
        width: 100%;
    }

    #shopVariantQuickAddMenu .variant-direct-option {
        gap: 0.45rem;
        padding: 0.62rem 0.7rem;
        font-size: 0.95rem;
    }

    .shop-variant-quick-add-head {
        align-items: stretch;
    }

    .shop-variant-quick-add-pricebox {
        padding: 0.5rem 0.55rem;
    }

    .shop-variant-quick-add-price-current {
        font-size: 1rem;
    }

    #shopVariantQuickAddMenu .variant-option-label {
        flex: 1 1 auto;
        min-width: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    #shopVariantQuickAddMenu .variant-option-price {
        flex: 0 0 auto;
        margin-left: 0.45rem;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .shop-variant-quick-add-actions {
        flex-wrap: wrap;
        gap: 0.55rem;
        justify-content: space-between;
    }

    .shop-variant-quick-add-qty-wrap {
        flex: 0 0 calc(34% - 0.3rem);
        width: calc(34% - 0.3rem);
        min-width: 108px;
    }

    #shopVariantQuickAddSubmitBtn {
        flex: 1 1 calc(66% - 0.3rem);
        min-width: 0;
    }

    #shopVariantQuickAddViewProduct {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }
}

@media (max-width: 420px) {
    .shop-variant-quick-add-actions {
        gap: 0.45rem;
    }

    .shop-variant-quick-add-qty-wrap {
        flex: 1 1 100%;
        width: 100%;
        min-width: 0;
    }

    #shopVariantQuickAddSubmitBtn,
    #shopVariantQuickAddViewProduct {
        flex: 1 1 100%;
        width: 100%;
    }
}

.shop-panel {
    border-radius: 18px;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    box-shadow: 0 12px 26px rgba(16, 36, 54, 0.07);
}

.shop-panel-body {
    padding: 1rem;
}

.shop-label {
    font-size: var(--shop-type-meta);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--shop-muted);
    margin-bottom: 0.36rem;
}

/* Keep variation selector headings readable in title case. */
.shop-label.shop-label--title {
    text-transform: none;
    letter-spacing: 0;
    font-size: var(--shop-type-label);
    font-weight: 700;
    line-height: 1.35;
}

.shopfront-body .form-control,
.shopfront-body .custom-select,
.shopfront-body select.form-control,
.shopfront-body input.form-control,
.shopfront-body textarea.form-control {
    border-radius: 12px;
    border: 1px solid var(--shop-line);
    color: var(--shop-secondary);
    font-size: var(--shop-type-body);
    min-height: 42px;
}

.shopfront-body .form-control:focus,
.shopfront-body .custom-select:focus,
.shopfront-body select.form-control:focus,
.shopfront-body input.form-control:focus,
.shopfront-body textarea.form-control:focus {
    border-color: var(--shop-focus-ring);
    box-shadow: 0 0 0 0.2rem var(--shop-focus-ring-soft);
}

.shopfront-body textarea.form-control {
    min-height: 96px;
}

.shopfront-body .breadcrumb {
    font-size: var(--shop-type-control);
}

.shopfront-body small,
.shopfront-body .small {
    font-size: var(--shop-type-meta);
}

.shopfront-body .breadcrumb a {
    color: var(--shop-link);
    font-weight: 600;
}

.shop-cta-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-hero .shop-cta-stack .btn {
    min-height: 48px;
    min-width: 190px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.shop-hero-secondary-cta {
    background: color-mix(in srgb, var(--shop-surface) 96%, transparent);
    border: 1px solid var(--shop-line);
    color: var(--shop-secondary) !important;
    box-shadow: 0 8px 18px rgba(10, 42, 29, 0.16);
}

.shop-hero-secondary-cta:hover,
.shop-hero-secondary-cta:focus {
    background: var(--shop-surface);
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark) !important;
}

.shop-summary-list {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    font-size: 0.9rem;
}

.shop-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.shop-summary-row.total {
    border-top: 1px dashed var(--shop-line);
    padding-top: 0.65rem;
    margin-top: 0.35rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--shop-secondary);
}

.shop-table {
    width: 100%;
}

.shop-table thead th {
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--shop-muted);
    border-bottom-width: 1px;
    border-color: var(--shop-line);
}

.shop-table td {
    border-color: var(--shop-line);
    vertical-align: middle;
}

.shop-empty {
    text-align: center;
    border: 1px dashed var(--shop-line);
    border-radius: var(--shop-radius-md);
    padding: 2rem 1rem;
    color: var(--shop-muted);
    background: var(--shop-surface);
}

.shop-empty i {
    font-size: 2.2rem;
    color: var(--shop-muted);
    margin-bottom: 0.55rem;
}

.shop-empty .btn-shop-primary {
    color: var(--shop-action-text) !important;
}

.shop-checkout-step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--shop-secondary);
    padding: 0.28rem 0.68rem;
    border-radius: 999px;
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
    cursor: pointer;
    transition: all 0.16s ease;
    white-space: nowrap;
    flex: 0 0 auto;
}

.shop-checkout-wizard {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    padding-bottom: 0.1rem;
}

.shop-checkout-step:hover,
.shop-checkout-step:focus {
    text-decoration: none;
    background: var(--shop-brand-soft);
    border-color: var(--shop-brand);
    outline: none;
}

.shop-checkout-step.active {
    background: var(--shop-brand-soft);
    border-color: var(--shop-brand);
    color: var(--shop-brand-dark);
}

.shop-checkout-step i {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--shop-surface);
    font-size: 0.65rem;
    color: var(--shop-secondary);
}

.shop-checkout-step.is-complete i {
    background: var(--shop-brand);
    color: #ffffff;
}

.shop-checkout-step.is-current {
    background: linear-gradient(135deg, var(--shop-brand) 0%, var(--shop-brand-dark) 100%);
    border-color: var(--shop-brand-dark);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(16, 36, 54, 0.22);
    transform: translateY(-1px);
}

.shop-checkout-step.is-current i {
    background: var(--shop-surface);
    color: var(--shop-brand-dark);
}

.shop-checkout-step.is-current span {
    color: #ffffff;
}

.shop-payment-option {
    border: 1px solid var(--shop-line);
    border-radius: 13px;
    padding: 0.72rem 0.85rem;
    margin-bottom: 0.65rem;
    transition: all 0.16s ease;
}

.shop-payment-option:hover {
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
}

.shop-payment-option.active {
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
}

.shop-sticky {
    position: sticky;
    top: 122px;
}

.shop-info-banner {
    border: 1px solid var(--shop-notice-info-bg);
    border-radius: 12px;
    padding: 0.55rem 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.shop-blog-content {
    width: 100%;
    max-width: 100%;
    overflow-wrap: anywhere;
}

.shop-blog-content::after {
    content: '';
    display: block;
    clear: both;
}

.shop-blog-content > *:first-child {
    margin-top: 0;
}

.shop-blog-content img {
    display: block;
    max-width: 100%;
    width: auto;
    height: auto;
    margin: 1rem auto;
    border-radius: 14px;
}

.shop-blog-content figure,
.shop-blog-content .wp-caption,
.shop-blog-content div,
.shop-blog-content p,
.shop-blog-content span {
    max-width: 100%;
}

.shop-blog-content table {
    display: block;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.shop-blog-content iframe,
.shop-blog-content embed,
.shop-blog-content object,
.shop-blog-content video {
    max-width: 100%;
}

.shop-blog-content [style*='float:left'],
.shop-blog-content [style*='float: left'],
.shop-blog-content .alignleft {
    float: left;
    max-width: min(46%, 320px);
    margin: 0.4rem 1rem 0.85rem 0;
}

.shop-blog-content [style*='float:right'],
.shop-blog-content [style*='float: right'],
.shop-blog-content .alignright {
    float: right;
    max-width: min(46%, 320px);
    margin: 0.4rem 0 0.85rem 1rem;
}

.shop-blog-content .aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.shop-blog-content [style*='width:'],
.shop-blog-content [width] {
    max-width: 100%;
}

.shop-blog-content .shop-blog-cta-wrap {
    display: inline-flex;
    margin: 0.55rem 0.65rem 0.85rem 0;
    vertical-align: top;
}

.shop-blog-content .shop-blog-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 220px;
    min-height: 58px;
    padding: 0.95rem 1.7rem;
    border-radius: 18px;
    border: 1px solid transparent;
    box-shadow: 0 16px 28px rgba(20, 42, 74, 0.12);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
    text-decoration: none !important;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.shop-blog-content .shop-blog-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 32px rgba(20, 42, 74, 0.16);
}

.shop-blog-content .shop-blog-cta--whatsapp {
    color: #ffffff !important;
    background: linear-gradient(135deg, var(--shop-brand) 0%, var(--shop-brand-dark) 100%);
}

.shop-blog-content .shop-blog-cta--primary {
    color: var(--shop-secondary) !important;
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-surface) 100%);
    border-color: var(--shop-brand);
}

.shop-blog-lead {
    padding: 0;
    overflow: hidden;
    background: linear-gradient(90deg, var(--shop-secondary) 0%, var(--shop-brand) 52%, var(--shop-brand-dark) 100%);
    border-radius: 18px;
}

.shop-blog-lead__inner {
    gap: 1rem;
    padding: 1.15rem 1.35rem;
}

.shop-blog-lead__content {
    min-width: 0;
    gap: 1rem;
}

.shop-blog-lead__logo {
    width: 58px;
    height: 58px;
    border-radius: 10px;
    background: color-mix(in srgb, var(--shop-surface) 95%, transparent);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    overflow: hidden;
}

.shop-blog-lead__logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.shop-blog-lead__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    line-height: 1.2;
    color: var(--shop-surface);
    font-weight: 700;
    word-break: break-word;
}

.shop-blog-lead__button {
    padding: 0.8rem 1.35rem;
    font-weight: 700;
    border-radius: 10px;
}

.shop-about-hero {
    position: relative;
    overflow: hidden;
    padding: 2.4rem 2.2rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 22%, var(--shop-accent-soft), rgba(255, 214, 91, 0) 34%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand) 38%, var(--shop-brand-dark) 68%, var(--shop-secondary-dark) 100%);
    color: #ffffff;
    box-shadow: 0 24px 54px color-mix(in srgb, var(--shop-secondary) 18%, transparent);
}

.shop-about-hero__backdrop {
    position: absolute;
    inset: auto -64px -92px auto;
    width: 280px;
    height: 280px;
    border-radius: 46% 54% 40% 60%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-about-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-about-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2.1rem, 4vw, 3.35rem);
    font-weight: var(--shop-heading-weight);
    letter-spacing: var(--shop-heading-letter-spacing);
    line-height: 1.02;
    margin-bottom: 0.9rem;
    max-width: 620px;
}

.shop-about-hero__intro {
    max-width: 640px;
    font-size: 1.02rem;
    line-height: 1.72;
    color: color-mix(in srgb, white 86%, transparent);
}

.shop-about-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 14%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 28%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.2rem;
}

.shop-about-hero__metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.shop-about-hero__metric {
    border-radius: 18px;
    background: color-mix(in srgb, white 10%, transparent);
    padding: 0.9rem 0.8rem;
    text-align: center;
}

.shop-about-hero__metric-value {
    font-family: var(--shop-font-display);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
}

.shop-about-hero__metric-label {
    margin-top: 0.35rem;
    font-size: 0.76rem;
    color: color-mix(in srgb, white 72%, transparent);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-about-hero__support {
    border-radius: 18px;
    background: color-mix(in srgb, white 8%, transparent);
    padding: 0.95rem 1rem;
}

.shop-about-hero__support-title {
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.shop-about-hero__support-copy {
    color: color-mix(in srgb, white 80%, transparent);
    line-height: 1.65;
    font-size: 0.94rem;
}

.shop-about-highlight {
    height: 100%;
}

.shop-about-highlight__icon {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    margin-bottom: 0.95rem;
    background: linear-gradient(135deg, var(--shop-surface) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-brand-dark);
    font-size: 1.1rem;
}

.shop-about-highlight__title {
    font-family: var(--shop-font-display);
    font-size: 1.28rem;
    margin-bottom: 0.55rem;
    color: var(--shop-secondary);
}

.shop-about-highlight__copy {
    color: var(--shop-muted);
    line-height: 1.7;
}

.shop-about-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-about-summary__item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--shop-line);
    border-radius: 22px;
    padding: 1.15rem 1.2rem;
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-surface) 100%);
    box-shadow: 0 16px 34px color-mix(in srgb, var(--shop-secondary) 7%, transparent);
}

.shop-about-summary__item::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: linear-gradient(180deg, var(--shop-secondary) 0%, var(--shop-brand) 100%);
}

.shop-about-summary__value {
    font-family: var(--shop-font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--shop-secondary);
    margin-bottom: 0.35rem;
}

.shop-about-summary__label {
    color: var(--shop-muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

.shop-about-section {
    position: relative;
    overflow: hidden;
}

.shop-about-section::after {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--shop-secondary) 0%, var(--shop-brand) 100%);
}

.shop-about-section__eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    height: 44px;
    border-radius: 14px;
    margin-bottom: 0.9rem;
    background: var(--shop-secondary-soft);
    color: var(--shop-secondary);
    font-weight: 700;
}

.shop-about-section__title {
    font-family: var(--shop-font-display);
    font-size: 1.52rem;
    margin-bottom: 0.85rem;
    color: var(--shop-secondary);
}

.shop-about-section__copy {
    color: var(--shop-muted);
    line-height: 1.76;
}

.shop-about-section__copy + .shop-about-section__copy {
    margin-top: 0.85rem;
}

.shop-about-section__list {
    margin-top: 1rem;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-about-section__list li + li {
    margin-top: 0.45rem;
}

.shop-about-section--product-range,
.shop-about-section--clientele,
.shop-about-section--our-journey {
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-about-section__list--product-range {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
    padding-left: 0;
    list-style: none;
}

.shop-about-section__list--product-range li {
    display: flex;
    align-items: center;
    min-height: 52px;
    padding: 0.75rem 0.9rem;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-secondary);
    font-weight: 600;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--shop-secondary) 10%, transparent);
}

.shop-about-section__list--product-range li::before {
    content: '';
    width: 9px;
    height: 9px;
    border-radius: 50%;
    margin-right: 0.7rem;
    background: linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand) 100%);
    flex: 0 0 auto;
}

.shop-about-section__list--clientele {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
    padding-left: 0;
    list-style: none;
}

.shop-about-section__list--clientele li {
    min-height: 78px;
    padding: 0.9rem 1rem;
    border-radius: 18px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    color: var(--shop-secondary);
    font-weight: 700;
    box-shadow: 0 12px 24px color-mix(in srgb, var(--shop-secondary) 6%, transparent);
    display: flex;
    align-items: center;
}

.shop-about-section__list--our-journey {
    padding-left: 0;
    list-style: none;
    position: relative;
}

.shop-about-section__list--our-journey::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, color-mix(in srgb, var(--shop-secondary) 32%, transparent) 0%, color-mix(in srgb, var(--shop-brand) 32%, transparent) 100%);
}

.shop-about-section__list--our-journey li {
    position: relative;
    margin-left: 0;
    padding: 0 0 0.95rem 2rem;
    color: var(--shop-secondary);
    line-height: 1.72;
}

.shop-about-section__list--our-journey li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.45rem;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 4px solid var(--shop-surface);
    background: linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand) 100%);
    box-shadow: 0 0 0 1px rgba(26, 95, 141, 0.14);
}

.shop-about-contact-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.55rem;
    color: var(--shop-secondary);
}

.shop-about-contact-card__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-about-contact-card__list {
    display: grid;
    gap: 0.55rem;
    color: var(--shop-secondary);
    font-size: 0.94rem;
}

.shop-contact-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--shop-accent) 20%, transparent), rgba(255, 222, 172, 0) 32%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 48%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-contact-hero__backdrop {
    position: absolute;
    inset: auto -54px -78px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

    .shop-contact-hero__kicker {
        white-space: nowrap;
        background: color-mix(in srgb, white 12%, transparent);
        color: #ffffff;
    }

.shop-contact-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-contact-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-contact-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 22%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-contact-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.85rem;
}

.shop-contact-hero__metrics {
    display: grid;
    gap: 0.8rem;
}

.shop-contact-hero__metric {
    display: grid;
    gap: 0.15rem;
}

.shop-contact-hero__metric strong {
    font-size: 1.08rem;
}

.shop-contact-hero__metric span {
    color: color-mix(in srgb, white 82%, transparent);
    font-size: 0.93rem;
}

.shop-contact-highlight {
    height: 100%;
}

.shop-contact-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-secondary);
    font-size: 1rem;
}

.shop-contact-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-contact-card {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-contact-card__eyebrow,
.shop-contact-form__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-secondary-soft);
    color: var(--shop-secondary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-contact-card__title,
.shop-contact-form__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: var(--shop-secondary);
    margin-bottom: 0.95rem;
}

.shop-contact-card__section + .shop-contact-card__section {
    margin-top: 1.45rem;
    padding-top: 1.45rem;
    border-top: 1px solid var(--shop-line);
}

.shop-contact-card__section-title {
    font-family: var(--shop-font-display);
    font-size: 1.12rem;
    color: var(--shop-secondary);
    margin-bottom: 0.55rem;
}

.shop-contact-card__line {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-contact-card__line + .shop-contact-card__line {
    margin-top: 0.3rem;
}

.shop-contact-card__link {
    display: inline-flex;
    align-items: center;
    margin-top: 0.7rem;
    color: var(--shop-link);
    font-weight: 600;
}

.shop-contact-card__link:hover {
    color: var(--shop-link-hover);
    text-decoration: none;
}

.shop-contact-form__copy {
    color: var(--shop-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.shop-contact-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.shop-contact-form__full {
    grid-column: 1 / -1;
}

.shop-contact-form__label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--shop-secondary);
    font-weight: 600;
    font-size: 0.93rem;
}

.shop-contact-form__label span {
    color: var(--shop-danger);
}

.shop-contact-form .form-control {
    min-height: 52px;
    border-radius: 14px;
    border-color: var(--shop-line);
    box-shadow: none;
}

.shop-contact-form textarea.form-control {
    min-height: 160px;
    resize: vertical;
}

.shop-contact-form .form-control:focus {
    border-color: var(--shop-brand);
    box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--shop-brand) 12%, transparent);
}

.shop-contact-form__submit {
    min-width: 160px;
}

.shop-enquiry-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--shop-accent) 22%, transparent), rgba(255, 201, 164, 0) 32%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 48%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-enquiry-hero__backdrop {
    position: absolute;
    inset: auto -54px -78px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-enquiry-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-enquiry-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-enquiry-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-enquiry-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 22%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-enquiry-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.85rem;
}

.shop-enquiry-hero__metrics {
    display: grid;
    gap: 0.8rem;
}

.shop-enquiry-hero__metric {
    display: grid;
    gap: 0.15rem;
}

.shop-enquiry-hero__metric strong {
    font-size: 1.08rem;
}

.shop-enquiry-hero__metric span {
    color: color-mix(in srgb, white 82%, transparent);
    font-size: 0.93rem;
}

.shop-enquiry-highlight {
    height: 100%;
}

.shop-enquiry-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-brand-dark);
    font-size: 1rem;
}

.shop-enquiry-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-enquiry-form__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-enquiry-form__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: var(--shop-secondary);
    margin-bottom: 0.35rem;
}

.shop-enquiry-form__copy {
    color: var(--shop-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.shop-enquiry-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.shop-enquiry-form__full {
    grid-column: 1 / -1;
}

.shop-enquiry-form__label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--shop-secondary);
    font-weight: 600;
    font-size: 0.93rem;
}

.shop-enquiry-form__label span {
    color: var(--shop-danger);
}

.shop-enquiry-form .form-control,
.shop-enquiry-form select.form-control {
    min-height: 52px;
    border-radius: 14px;
    border-color: var(--shop-line);
    box-shadow: none;
}

.shop-enquiry-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.shop-enquiry-form .form-control:focus,
.shop-enquiry-form select.form-control:focus {
    border-color: var(--shop-brand);
    box-shadow: 0 0 0 0.18rem color-mix(in srgb, var(--shop-brand) 12%, transparent);
}

.shop-enquiry-form .form-control-file {
    display: block;
    width: 100%;
    padding: 0.8rem 0.95rem;
    border: 1px solid var(--shop-line);
    border-radius: 14px;
    background: var(--shop-surface);
}

.shop-enquiry-form__submit {
    min-width: 160px;
}

.shop-enquiry-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-enquiry-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-enquiry-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-faq-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, color-mix(in srgb, var(--shop-accent) 22%, transparent), rgba(255, 208, 98, 0) 34%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 45%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-faq-hero__orb {
    position: absolute;
    inset: auto -48px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-faq-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-faq-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 620px;
}

.shop-faq-hero__intro {
    max-width: 620px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-faq-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 15%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 26%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-faq-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-faq-hero__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.shop-faq-hero__chips span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 0.78rem;
    border-radius: 999px;
    background: color-mix(in srgb, white 12%, transparent);
    color: color-mix(in srgb, white 90%, transparent);
    font-size: 0.82rem;
    font-weight: 600;
}

.shop-faq-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.shop-faq-summary__item {
    border: 1px solid var(--shop-line);
    border-radius: 22px;
    padding: 1.1rem 1.15rem;
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
    box-shadow: 0 14px 30px color-mix(in srgb, var(--shop-secondary) 6%, transparent);
}

.shop-faq-summary__value {
    font-family: var(--shop-font-display);
    font-size: 1.32rem;
    font-weight: 700;
    color: var(--shop-secondary);
    margin-bottom: 0.35rem;
}

.shop-faq-summary__label {
    color: var(--shop-muted);
    line-height: 1.65;
    font-size: 0.93rem;
}

.shop-faq-card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: flex-start;
}

.shop-faq-card__index {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-secondary);
    font-weight: 700;
    flex: 0 0 44px;
}

.shop-faq-card__question {
    font-family: var(--shop-font-display);
    font-size: 1.34rem;
    line-height: 1.35;
    color: var(--shop-secondary);
    margin-bottom: 0.7rem;
}

.shop-faq-card__answer {
    color: var(--shop-muted);
    line-height: 1.74;
}

.shop-faq-card__answer + .shop-faq-card__answer {
    margin-top: 0.65rem;
}

.shop-faq-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-faq-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-faq-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-privacy-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--shop-brand-soft) 24%, transparent), rgba(197, 180, 255, 0) 32%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 45%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 17%, transparent);
}

.shop-privacy-hero__glow {
    position: absolute;
    inset: auto -52px -74px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-privacy-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-privacy-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-privacy-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-privacy-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 28%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-privacy-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-privacy-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-privacy-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-privacy-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-privacy-hero__timeline span {
    color: color-mix(in srgb, white 80%, transparent);
    font-size: 0.92rem;
}

.shop-privacy-highlight {
    height: 100%;
}

.shop-privacy-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-brand-dark);
    font-size: 1rem;
}

.shop-privacy-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-privacy-block {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-privacy-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: var(--shop-secondary);
    margin-bottom: 1rem;
}

.shop-privacy-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-privacy-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-privacy-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-privacy-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-privacy-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-privacy-note-block {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-brand-soft) 100%);
}

.shop-privacy-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-privacy-note-block__copy {
    color: var(--shop-muted);
    line-height: 1.74;
}

.shop-terms-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 18%, color-mix(in srgb, var(--shop-accent) 24%, transparent), rgba(255, 224, 163, 0) 32%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 46%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-terms-hero__glow {
    position: absolute;
    inset: auto -52px -74px auto;
    width: 230px;
    height: 230px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-terms-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-terms-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-terms-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-terms-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 24%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-terms-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-terms-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-terms-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-terms-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-terms-hero__timeline span {
    color: color-mix(in srgb, white 80%, transparent);
    font-size: 0.92rem;
}

.shop-terms-highlight {
    height: 100%;
}

.shop-terms-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-accent-soft) 0%, color-mix(in srgb, var(--shop-accent) 35%, white) 100%);
    color: color-mix(in srgb, var(--shop-secondary) 78%, var(--shop-accent));
    font-size: 1rem;
}

.shop-terms-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-terms-block,
.shop-terms-note-block {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-terms-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: var(--shop-secondary);
    margin-bottom: 1rem;
}

.shop-terms-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-terms-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-terms-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-accent-soft);
    color: color-mix(in srgb, var(--shop-secondary) 74%, var(--shop-accent));
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-terms-note-block__copy {
    color: var(--shop-muted);
    line-height: 1.74;
}

.shop-terms-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-terms-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-terms-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-info-layout__row {
    margin-left: 0;
    margin-right: 0;
}

.shop-policy-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, color-mix(in srgb, var(--shop-accent) 20%, transparent), rgba(255, 178, 120, 0) 34%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 45%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-policy-hero__glow {
    position: absolute;
    inset: auto -46px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-policy-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-policy-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-policy-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-policy-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 15%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 22%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-policy-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-policy-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-policy-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-policy-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-policy-hero__timeline span {
    color: color-mix(in srgb, white 80%, transparent);
    font-size: 0.92rem;
}

.shop-policy-highlight {
    height: 100%;
}

.shop-policy-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-accent-soft) 100%);
    color: color-mix(in srgb, var(--shop-secondary) 82%, var(--shop-brand));
    font-size: 1rem;
}

.shop-policy-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-policy-note-block {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-policy-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-accent-soft);
    color: color-mix(in srgb, var(--shop-secondary) 74%, var(--shop-brand));
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-policy-note-block__list {
    display: grid;
    gap: 0.65rem;
}

.shop-policy-note-block__item {
    color: var(--shop-muted);
    line-height: 1.7;
}

.shop-policy-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: var(--shop-accent-soft);
    color: color-mix(in srgb, var(--shop-secondary) 74%, var(--shop-brand));
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-policy-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: var(--shop-secondary);
    margin-bottom: 1rem;
}

.shop-policy-step-list,
.shop-policy-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-policy-step-list li + li,
.shop-policy-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-policy-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-policy-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-policy-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-shipping-hero {
    position: relative;
    overflow: hidden;
    padding: 2.25rem 2.1rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 82% 24%, color-mix(in srgb, var(--shop-brand-soft) 18%, transparent), rgba(171, 255, 210, 0) 34%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 45%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
}

.shop-shipping-hero__glow {
    position: absolute;
    inset: auto -46px -70px auto;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-shipping-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-shipping-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3rem);
    line-height: 1.04;
    margin-bottom: 0.8rem;
    max-width: 660px;
}

.shop-shipping-hero__intro {
    max-width: 650px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
}

.shop-shipping-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 15%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 22%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.1rem 1.15rem;
}

.shop-shipping-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.08rem;
    margin-bottom: 0.8rem;
}

.shop-shipping-hero__timeline {
    display: grid;
    gap: 0.8rem;
}

.shop-shipping-hero__timeline div {
    display: grid;
    gap: 0.15rem;
}

.shop-shipping-hero__timeline strong {
    font-size: 1.18rem;
}

.shop-shipping-hero__timeline span {
    color: color-mix(in srgb, white 80%, transparent);
    font-size: 0.92rem;
}

.shop-shipping-highlight {
    height: 100%;
}

.shop-shipping-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-brand-soft) 0%, var(--shop-secondary-soft) 100%);
    color: var(--shop-brand-dark);
    font-size: 1rem;
}

.shop-shipping-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-shipping-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-shipping-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.6rem;
    color: var(--shop-secondary);
    margin-bottom: 1rem;
}

.shop-shipping-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-shipping-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-shipping-note-block {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-shipping-note-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.8rem;
    background: var(--shop-brand-soft);
    color: var(--shop-brand-dark);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-shipping-note-block__copy {
    color: var(--shop-muted);
    line-height: 1.7;
}

.shop-shipping-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.42rem;
    color: var(--shop-secondary);
}

.shop-shipping-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-shipping-aside__details {
    display: grid;
    gap: 0.5rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-warranty-hero {
    position: relative;
    overflow: hidden;
    padding: 2.35rem 2.15rem;
    border-radius: 30px;
    background:
        radial-gradient(circle at 84% 20%, color-mix(in srgb, var(--shop-brand-soft) 18%, transparent), rgba(116, 220, 255, 0) 34%),
        linear-gradient(135deg, var(--shop-secondary) 0%, var(--shop-brand-dark) 45%, var(--shop-brand) 100%);
    color: #ffffff;
    box-shadow: 0 24px 52px color-mix(in srgb, var(--shop-secondary) 18%, transparent);
}

.shop-warranty-hero__glow {
    position: absolute;
    inset: auto -52px -82px auto;
    width: 260px;
    height: 260px;
    border-radius: 42% 58% 60% 40%;
    background: color-mix(in srgb, white 8%, transparent);
    pointer-events: none;
}

.shop-warranty-hero__kicker {
    background: color-mix(in srgb, white 12%, transparent);
    color: #ffffff;
}

.shop-warranty-hero__title {
    font-family: var(--shop-font-display);
    font-size: clamp(2rem, 3.8vw, 3.05rem);
    line-height: 1.04;
    margin-bottom: 0.85rem;
    max-width: 620px;
}

.shop-warranty-hero__intro {
    max-width: 630px;
    color: color-mix(in srgb, white 86%, transparent);
    line-height: 1.72;
    font-size: 1rem;
}

.shop-warranty-hero__panel {
    position: relative;
    z-index: 1;
    border: 1px solid color-mix(in srgb, white 16%, transparent);
    border-radius: 24px;
    background: color-mix(in srgb, var(--shop-secondary) 28%, transparent);
    backdrop-filter: blur(6px);
    padding: 1.15rem 1.2rem;
}

.shop-warranty-hero__panel-title {
    font-family: var(--shop-font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.shop-warranty-hero__panel-list {
    padding-left: 1.1rem;
    color: color-mix(in srgb, white 82%, transparent);
}

.shop-warranty-hero__panel-list li + li {
    margin-top: 0.45rem;
}

.shop-warranty-highlight {
    height: 100%;
}

.shop-warranty-highlight__icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    margin-bottom: 0.8rem;
    background: linear-gradient(135deg, var(--shop-secondary-soft) 0%, var(--shop-brand-soft) 100%);
    color: var(--shop-brand-dark);
    font-size: 1rem;
}

.shop-warranty-highlight__copy {
    color: var(--shop-secondary);
    line-height: 1.68;
}

.shop-warranty-definition {
    border: 1px solid var(--shop-line);
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-warranty-definition__title {
    font-family: var(--shop-font-display);
    font-size: 1.45rem;
    color: var(--shop-secondary);
    margin-bottom: 0.65rem;
}

.shop-warranty-definition__copy {
    color: var(--shop-muted);
    line-height: 1.76;
}

.shop-warranty-block__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.7rem;
    background: var(--shop-secondary-soft);
    color: var(--shop-secondary);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.shop-warranty-block__title {
    font-family: var(--shop-font-display);
    font-size: 1.65rem;
    color: var(--shop-secondary);
    margin-bottom: 1rem;
}

.shop-warranty-claim-grid {
    display: grid;
    gap: 1rem;
}

.shop-warranty-claim-card {
    border: 1px solid var(--shop-line);
    border-radius: 22px;
    padding: 1rem 1.05rem;
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
}

.shop-warranty-claim-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.18rem;
    color: var(--shop-secondary);
    margin-bottom: 0.7rem;
}

.shop-warranty-claim-card__steps {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-warranty-claim-card__steps li + li {
    margin-top: 0.5rem;
}

.shop-warranty-rule-list {
    margin: 0;
    padding-left: 1.1rem;
    color: var(--shop-muted);
}

.shop-warranty-rule-list li + li {
    margin-top: 0.55rem;
}

.shop-warranty-aside__title {
    font-family: var(--shop-font-display);
    font-size: 1.45rem;
    color: var(--shop-secondary);
}

.shop-warranty-aside__copy {
    color: var(--shop-muted);
    line-height: 1.72;
}

.shop-warranty-aside__details {
    display: grid;
    gap: 0.55rem;
    color: var(--shop-secondary);
    font-size: 0.93rem;
}

.shop-warranty-aside-panel {
    margin-top: 0;
}

.shop-warranty-brand-card__title {
    font-family: var(--shop-font-display);
    font-size: 1.24rem;
    color: var(--shop-secondary);
    margin-bottom: 0.9rem;
}

.shop-warranty-brand-card__items {
    display: grid;
    gap: 0.6rem;
}

.shop-warranty-brand-card__item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: var(--shop-secondary);
    line-height: 1.55;
}

.shop-warranty-brand-card__item i {
    color: var(--shop-brand-dark);
    margin-top: 0.18rem;
    width: 16px;
    flex: 0 0 16px;
}

.shop-warranty-brand-card__item a {
    color: var(--shop-link);
    word-break: break-word;
}

.shop-warranty-brand-card__item a:hover {
    color: var(--shop-link-hover);
    text-decoration: none;
}

.shopfront-body .page-item.active .page-link {
    background: var(--shop-brand);
    border-color: var(--shop-brand);
}

.shopfront-body .page-link {
    color: var(--shop-secondary);
    border-color: var(--shop-line);
    font-size: var(--shop-type-control);
}

.shopfront-body .dropdown-item {
    font-size: var(--shop-type-control);
}

.shopfront-body .page-link:hover {
    color: var(--shop-brand-dark);
    background: var(--shop-brand-soft);
}

.shop-auth-shell {
    width: min(100%, 760px);
    margin: 2rem auto;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 26px 62px color-mix(in srgb, var(--shop-secondary) 19%, transparent);
    background: var(--shop-surface);
    border: 1px solid var(--shop-line);
}

.shop-auth-form-wrap {
    padding: 2.3rem 2.1rem;
    background: var(--shop-auth-card-bg);
    border-left: 0;
}

.shop-auth-form-wrap h2 {
    font-family: var(--shop-font-display);
    font-size: 1.75rem;
    margin-bottom: 0.35rem;
}

.shop-auth-meta {
    color: var(--shop-muted);
    margin-bottom: 1.15rem;
    font-size: 0.9rem;
}

.shop-auth-input-group {
    margin-bottom: 0.85rem;
}

.shop-auth-input-group label {
    display: block;
    margin-bottom: 0.32rem;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--shop-secondary);
}

.shop-auth-input-group .form-control {
    border-radius: 12px;
    min-height: 46px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
}

.shop-auth-input-group .form-control:focus {
    border-color: var(--shop-brand);
    box-shadow: 0 0 0 0.2rem color-mix(in srgb, var(--shop-brand) 14%, transparent);
}

.shop-auth-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    margin-top: 1rem;
}

.shop-auth-helper {
    color: var(--shop-muted);
    font-size: 0.84rem;
}

.shop-auth-link {
    color: var(--shop-link);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 0.15em;
}

.shop-auth-link:hover {
    color: var(--shop-link-hover);
    text-decoration: underline;
}

.shop-auth-link-button {
    appearance: none;
    background: transparent;
    border: 0;
    padding: 0;
    vertical-align: baseline;
    cursor: pointer;
}

.shop-auth-link-button:hover,
.shop-auth-link-button:focus {
    color: var(--shop-link-hover);
    text-decoration: underline;
}

.shop-auth-alert {
    border-radius: 12px;
}

@media (max-width: 1199.98px) {
    .shop-sticky {
        position: static;
    }
}

@media (max-width: 991.98px) {
    .shop-mobile-filter-panel {
        display: none;
    }

    body.shop-filters-open .shop-mobile-filter-panel {
        display: block;
    }

    .shop-stage > .row,
    .shop-stage > .row .shop-grid-stagger {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-container-fluid {
        padding-left: 0.78rem;
        padding-right: 0.78rem;
    }

    .shop-header-main {
        grid-template-columns: auto 1fr;
        grid-template-areas:
            'logo actions'
            'search search';
        gap: 0.85rem;
        padding: 0.8rem 0 0.95rem;
    }

    .shop-logo {
        grid-area: logo;
    }

    .shop-search {
        grid-area: search;
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .shop-header-actions {
        grid-area: actions;
        justify-content: flex-end;
    }

    .shop-user-chip {
        min-height: 42px;
        padding-right: 0.7rem;
    }

    .shop-action-link--cart,
    .shop-action-link--account,
    .shop-action-link--wishlist {
        min-width: 82px;
        height: 42px;
        padding: 0 0.7rem;
    }

    .shop-action-link--location {
        width: 44px;
        min-width: 44px;
        max-width: 44px;
        padding: 0;
        justify-content: center;
    }

    .shop-action-link--location .shop-action-caption {
        display: none;
    }

    .shop-nav-wrap {
        min-height: 0;
        padding: 0.45rem 0 0.6rem;
        align-items: stretch;
    }

    .shop-nav-list {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        padding: 0;
    }

    .shop-nav-list > li {
        min-width: 0;
    }

    .shop-nav-pill {
        width: 100%;
        min-height: 42px;
        justify-content: flex-start;
        border-radius: 12px;
        padding: 0.5rem 0.72rem;
        font-size: 0.86rem;
        font-weight: 700;
        border: 1px solid var(--shop-line);
        background: var(--shop-surface);
        color: var(--shop-secondary);
        line-height: 1.1;
    }

    .shop-nav-pill i {
        width: 1rem;
        text-align: center;
        opacity: 0.92;
    }

    .shop-nav-pill.dropdown-toggle::after {
        margin-left: auto;
    }

    .shop-nav-pill:hover,
    .shop-nav-pill:focus {
        background: var(--shop-brand-soft);
        border-color: var(--shop-brand);
        color: var(--shop-brand-dark);
    }

    .shop-nav-pill.active {
        background: var(--shop-brand-soft);
        border-color: var(--shop-brand);
        color: var(--shop-brand-dark);
    }

    .shop-main {
        padding-top: 1rem;
    }

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

    .shop-auth-form-wrap {
        padding: 1.6rem 1.2rem;
    }

    .shop-blog-lead__inner {
        align-items: flex-start !important;
    }

    .shop-blog-lead__actions {
        width: 100%;
    }

    .shop-blog-lead__button {
        width: 100%;
    }

    .shop-blog-content .shop-blog-cta {
        min-width: 200px;
        min-height: 54px;
        padding: 0.9rem 1.35rem;
    }

    .shop-about-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-about-hero__panel {
        margin-top: 0.35rem;
    }

    .shop-about-hero__metrics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .shop-about-summary {
        grid-template-columns: 1fr;
    }

    .shop-about-section {
        padding-left: 1.15rem;
    }

    .shop-about-section__list--product-range,
    .shop-about-section__list--clientele {
        grid-template-columns: 1fr;
    }

    .shop-contact-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-contact-form__grid {
        grid-template-columns: 1fr;
    }

    .shop-enquiry-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-enquiry-form__grid {
        grid-template-columns: 1fr;
    }

    .shop-faq-summary {
        grid-template-columns: 1fr;
    }

    .shop-faq-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-privacy-hero,
    .shop-terms-hero,
    .shop-policy-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-shipping-hero {
        padding: 1.8rem 1.45rem;
    }

    .shop-warranty-hero {
        padding: 1.8rem 1.45rem;
    }
}

@media (max-width: 575.98px) {
    .shopfront-body .form-control,
    .shopfront-body .form-control-sm,
    .shopfront-body input,
    .shopfront-body select,
    .shopfront-body textarea {
        font-size: max(16px, var(--shop-type-body)) !important;
    }

    .shopfront-body button,
    .shopfront-body .btn,
    .shopfront-body a.btn {
        min-height: 42px;
    }

    .shop-rail-indicator {
        min-height: 12px !important;
        width: 12px;
        height: 12px;
        padding: 0;
    }

    .shop-title {
        font-size: calc(1.32rem * var(--shop-heading-scale));
    }

    .shop-top-strip-inner {
        min-height: 30px;
        font-size: 0.74rem;
    }

    .shop-logo-title {
        font-size: 1.04rem;
    }

    .shop-logo {
        gap: 0.42rem;
    }

    .shop-logo-mark {
        width: 34px;
        height: 34px;
        border-radius: 11px;
        flex: 0 0 34px;
    }

    .shop-logo-sub {
        font-size: 0.68rem;
    }

    .shop-search .form-control {
        padding-left: 2.4rem;
    }

    .shop-search {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .shop-nav-row {
        background: var(--shop-header-bg);
        border-top-color: var(--shop-line);
    }

    .shop-nav-wrap {
        padding-top: 0.4rem;
        padding-bottom: 0.55rem;
    }

    .shop-nav-list {
        gap: 0.4rem;
    }

    .shop-nav-pill {
        min-height: 40px;
        padding: 0.45rem 0.62rem;
        font-size: 0.8rem;
        border-radius: 11px;
    }

    .shop-search-icon {
        left: 0.9rem;
    }

    .shop-action-link {
        width: 46px;
        height: 46px;
    }

    .shop-action-link--cart,
    .shop-action-link--account,
    .shop-action-link--wishlist {
        min-width: 44px;
        width: 44px;
        height: 44px;
        padding: 0;
    }

    .shop-action-link--cart .shop-action-caption,
    .shop-action-link--account .shop-action-caption,
    .shop-action-link--wishlist .shop-action-caption {
        display: none;
    }

    .shop-surface,
    .shop-panel,
    .shop-hero {
        border-radius: 18px;
    }

    .shop-padded,
    .shop-panel-body {
        padding: 0.85rem;
    }

    .shop-auth-shell {
        margin-top: 1rem;
        margin-bottom: 1rem;
        border-radius: 18px;
    }

    .shop-auth-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .shop-footer-grid {
        grid-template-columns: 1fr;
    }

    .shop-rail-controls {
        width: 100%;
        justify-content: flex-end;
    }

    .shop-rail-control {
        width: 38px;
        height: 38px;
    }

    .shop-product-rail {
        gap: 0.7rem;
    }

    .shop-product-rail-item {
        flex: 0 0 calc((100% - 0.7rem) / 2);
        min-width: calc((100% - 0.7rem) / 2);
        max-width: calc((100% - 0.7rem) / 2);
    }

    .shop-blog-content img,
    .shop-blog-content [style*='float:left'],
    .shop-blog-content [style*='float: left'],
    .shop-blog-content [style*='float:right'],
    .shop-blog-content [style*='float: right'],
    .shop-blog-content .alignleft,
    .shop-blog-content .alignright {
        float: none !important;
        max-width: 100%;
        width: 100%;
        margin: 0.85rem 0;
    }

    .shop-blog-lead__logo {
        width: 50px !important;
        height: 50px !important;
    }

    .shop-blog-lead__title {
        font-size: 1.2rem !important;
    }

    .shop-blog-content .shop-blog-cta-wrap {
        display: flex;
        width: 100%;
        margin: 0.55rem 0;
    }

    .shop-blog-content .shop-blog-cta {
        width: 100%;
        min-width: 0;
        font-size: 0.98rem;
        border-radius: 16px;
    }

    .shop-info-layout__row {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-about-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-about-hero__backdrop {
        width: 180px;
        height: 180px;
        inset: auto -38px -58px auto;
    }

    .shop-about-hero__panel {
        padding: 0.95rem;
        border-radius: 18px;
    }

    .shop-about-hero__metrics {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .shop-about-hero__metric {
        text-align: left;
        padding: 0.8rem 0.85rem;
    }

    .shop-about-hero__title {
        font-size: 1.85rem;
    }

    .shop-about-hero__intro,
    .shop-about-hero__support-copy,
    .shop-about-summary__label,
    .shop-about-highlight__copy,
    .shop-about-section__copy,
    .shop-about-contact-card__copy,
    .shop-about-section__list {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-about-section__title,
    .shop-about-contact-card__title {
        font-size: 1.25rem;
    }

    .shop-about-section {
        padding-left: 0.95rem;
    }

    .shop-about-section__eyebrow {
        min-width: 38px;
        height: 38px;
        border-radius: 12px;
        margin-bottom: 0.7rem;
        font-size: 0.88rem;
    }

    .shop-about-highlight__icon {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        margin-bottom: 0.75rem;
    }

    .shop-about-summary__item {
        border-radius: 18px;
        padding: 1rem;
    }

    .shop-about-summary__value {
        font-size: 1.18rem;
    }

    .shop-about-contact-card__list {
        gap: 0.45rem;
        font-size: 0.88rem;
    }

    .shop-about-section__list--product-range li,
    .shop-about-section__list--clientele li {
        min-height: 0;
        padding: 0.8rem 0.9rem;
    }

    .shop-about-section__list--our-journey li {
        padding-left: 1.7rem;
    }

    .shop-about-section__list--our-journey li::before {
        width: 16px;
        height: 16px;
        top: 0.5rem;
    }

    .shop-about-section__list--our-journey::before {
        left: 8px;
    }

    .shop-faq-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-faq-hero__orb {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-faq-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-faq-hero__title {
        font-size: 1.82rem;
    }

    .shop-faq-hero__intro,
    .shop-faq-summary__label,
    .shop-faq-card__answer,
    .shop-faq-aside__copy,
    .shop-faq-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-faq-card {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .shop-faq-card__question,
    .shop-faq-aside__title {
        font-size: 1.2rem;
    }

    .shop-faq-summary__item {
        border-radius: 18px;
        padding: 1rem;
    }

    .shop-faq-summary__value {
        font-size: 1.15rem;
    }

    .shop-contact-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-contact-hero__kicker {
        text-transform: none;
        letter-spacing: 0.01em;
    }

    .shop-contact-hero__backdrop {
        width: 120px;
        height: 120px;
        inset: auto -16px -28px auto;
    }

    .shop-contact-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-contact-hero__title {
        font-size: 1.82rem;
    }

    .shop-contact-hero__intro,
    .shop-contact-highlight__copy,
    .shop-contact-card__line,
    .shop-contact-form__copy,
    .shop-contact-form__label {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-contact-card__title,
    .shop-contact-form__title,
    .shop-contact-card__section-title {
        font-size: 1.2rem;
    }

    .shop-enquiry-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-enquiry-hero__backdrop {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-enquiry-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-enquiry-hero__title {
        font-size: 1.82rem;
    }

    .shop-enquiry-hero__intro,
    .shop-enquiry-highlight__copy,
    .shop-enquiry-form__copy,
    .shop-enquiry-form__label,
    .shop-enquiry-aside__copy,
    .shop-enquiry-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-enquiry-form__title,
    .shop-enquiry-aside__title {
        font-size: 1.2rem;
    }

    .shop-privacy-hero,
    .shop-terms-hero,
    .shop-policy-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-privacy-hero__glow,
    .shop-terms-hero__glow,
    .shop-policy-hero__glow {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-privacy-hero__panel,
    .shop-terms-hero__panel,
    .shop-policy-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-privacy-hero__title,
    .shop-terms-hero__title,
    .shop-policy-hero__title {
        font-size: 1.82rem;
    }

    .shop-privacy-hero__intro,
    .shop-privacy-highlight__copy,
    .shop-privacy-rule-list,
    .shop-privacy-aside__copy,
    .shop-privacy-aside__details,
    .shop-privacy-note-block__copy,
    .shop-terms-hero__intro,
    .shop-terms-highlight__copy,
    .shop-terms-rule-list,
    .shop-terms-aside__copy,
    .shop-terms-aside__details,
    .shop-terms-note-block__copy,
    .shop-policy-hero__intro,
    .shop-policy-highlight__copy,
    .shop-policy-note-block__item,
    .shop-policy-step-list,
    .shop-policy-rule-list,
    .shop-policy-aside__copy,
    .shop-policy-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-privacy-block__title,
    .shop-privacy-aside__title,
    .shop-terms-block__title,
    .shop-terms-aside__title,
    .shop-policy-block__title,
    .shop-policy-aside__title {
        font-size: 1.2rem;
    }

    .shop-shipping-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-shipping-hero__glow {
        width: 150px;
        height: 150px;
        inset: auto -28px -44px auto;
    }

    .shop-shipping-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-shipping-hero__title {
        font-size: 1.82rem;
    }

    .shop-shipping-hero__intro,
    .shop-shipping-highlight__copy,
    .shop-shipping-rule-list,
    .shop-shipping-note-block__copy,
    .shop-shipping-aside__copy,
    .shop-shipping-aside__details {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-shipping-block__title,
    .shop-shipping-aside__title {
        font-size: 1.2rem;
    }

    .shop-warranty-hero {
        padding: 1.3rem 1rem;
        border-radius: 22px;
    }

    .shop-warranty-hero__glow {
        width: 170px;
        height: 170px;
        inset: auto -34px -54px auto;
    }

    .shop-warranty-hero__panel {
        border-radius: 18px;
        padding: 0.95rem;
    }

    .shop-warranty-hero__title {
        font-size: 1.82rem;
    }

    .shop-warranty-hero__intro,
    .shop-warranty-highlight__copy,
    .shop-warranty-definition__copy,
    .shop-warranty-claim-card__steps,
    .shop-warranty-rule-list,
    .shop-warranty-aside__copy,
    .shop-warranty-aside__details,
    .shop-warranty-brand-card__item {
        font-size: 0.94rem;
        line-height: 1.62;
    }

    .shop-warranty-block__title,
    .shop-warranty-definition__title,
    .shop-warranty-aside__title,
    .shop-warranty-brand-card__title {
        font-size: 1.2rem;
    }
}

@media (max-width: 359.98px) {
    .shop-product-rail-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }
}

@media (max-width: 991.98px) {
    .shop-header-menu-toggle {
        display: inline-flex;
        grid-area: menu;
    }

    .shop-header-main {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            'menu logo actions'
            'search search search';
    }

    .shop-nav-list > li.dropdown {
        position: relative;
    }

    .shop-nav-list .dropdown-menu {
        display: block;
        position: static;
        float: none;
        width: 100%;
        margin: 0.45rem 0 0;
        padding: 0.65rem 0.7rem;
        border-radius: 12px;
        border: 1px solid var(--shop-line);
        background: var(--shop-surface);
        box-shadow: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        max-height: 0;
        overflow: hidden;
        transform: none;
        transition: opacity 0.18s ease, visibility 0.18s ease, max-height 0.18s ease;
    }

    .shop-nav-list .dropdown.is-open > .dropdown-menu {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        max-height: 72vh;
        overflow: auto;
    }

    .shop-categories-menu {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .shop-search-queryless-pill-grid {
        display: grid;
        grid-auto-flow: column;
        grid-template-rows: repeat(2, minmax(0, auto));
        grid-auto-columns: max-content;
        gap: 0.45rem;
        width: max-content;
        min-width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0 0.85rem 0.7rem;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
    }

.shop-search-queryless-pill-grid::-webkit-scrollbar {
        height: 6px;
    }

    .shop-search-query-pill {
        scroll-snap-align: start;
    }
}

/* Header categories dropdown */
.shop-categories-dropdown {
    position: relative;
}

.shop-categories-menu {
    display: block;
    width: min(1240px, calc(100vw - 2rem));
    padding: 0.85rem;
    position: fixed;
    left: 50%;
    top: var(--shop-dropdown-top, 128px);
    margin-top: 0;
    border-radius: 16px;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    box-shadow: 0 22px 40px color-mix(in srgb, var(--shop-secondary) 16%, transparent);
    transform: translateX(-50%) translateY(-8px) scale(0.985);
    transform-origin: top center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 1200;
    transition:
        opacity 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.2s cubic-bezier(0.16, 1, 0.3, 1),
        visibility 0.2s linear;
}

.shop-categories-dropdown.is-open > .shop-categories-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0) scale(1);
}

.shop-categories-menu-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.2rem 0.3rem 0.75rem;
    border-bottom: 1px solid var(--shop-line);
    margin-bottom: 0.75rem;
    font-size: 0.92rem;
}

.shop-categories-menu-head strong {
    color: var(--shop-secondary);
}

.shop-categories-menu-head a {
    color: var(--shop-brand-dark);
    font-weight: 700;
    text-decoration: none;
}

.shop-categories-grid {
    column-count: 4;
    column-gap: 0.75rem;
    max-height: min(68vh, 760px);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.shop-category-group {
    border: 1px solid var(--shop-line);
    border-radius: 12px;
    background: linear-gradient(180deg, var(--shop-surface) 0%, var(--shop-bg) 100%);
    padding: 0.72rem 0.78rem;
    display: inline-block;
    width: 100%;
    margin: 0 0 0.75rem;
    break-inside: avoid;
    box-shadow: inset 0 0 0 1px color-mix(in srgb, white 80%, transparent);
}

.shop-category-parent {
    display: inline-block;
    font-weight: 700;
    color: var(--shop-secondary);
    text-decoration: none;
    margin-bottom: 0.3rem;
}

.shop-category-parent:hover {
    color: var(--shop-brand-dark);
    text-decoration: none;
}

.shop-category-children {
    display: flex;
    flex-direction: column;
    gap: 0.32rem;
    padding-top: 0.14rem;
}

.shop-category-child-link {
    color: var(--shop-muted);
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 500;
}

.shop-category-child-link:hover {
    color: var(--shop-brand-dark);
}

.shop-category-grandchildren {
    margin-top: 0.16rem;
    padding-left: 0.75rem;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.14rem;
}

.shop-category-grandchildren a {
    color: var(--shop-muted);
    text-decoration: none;
    font-size: 0.82rem;
    line-height: 1.3;
}

.shop-category-grandchildren a:hover {
    color: var(--shop-brand-dark);
}

.shop-category-empty {
    color: var(--shop-muted);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.shop-brands-dropdown {
    position: relative;
}

.shop-price-list-dropdown {
    position: relative;
}

.shop-price-list-menu {
    width: min(280px, calc(100vw - 2rem));
    padding: 0.5rem;
    margin-top: 0;
    top: calc(100% + 0.2rem);
    left: 0;
    border-radius: 16px;
    border: 1px solid var(--shop-line);
    box-shadow: 0 18px 36px color-mix(in srgb, var(--shop-secondary) 12%, transparent);
}

.shop-price-list-link {
    display: block;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
    color: var(--shop-secondary);
    text-decoration: none;
    font-weight: 600;
    line-height: 1.35;
}

.shop-price-list-link:hover {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
}

.shop-brands-menu {
    width: min(520px, calc(100vw - 2rem));
    padding: 0.85rem;
    margin-top: 0;
    top: calc(100% + 0.2rem);
    left: 0;
    border-radius: 16px;
    border: 1px solid var(--shop-line);
    box-shadow: 0 18px 36px color-mix(in srgb, var(--shop-secondary) 12%, transparent);
}

.shop-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.6rem;
}

.shop-brand-link {
    display: block;
    border: 1px solid var(--shop-line);
    background: var(--shop-surface);
    color: var(--shop-secondary);
    border-radius: 10px;
    padding: 0.5rem 0.65rem;
    text-decoration: none;
    font-weight: 600;
    line-height: 1.3;
}

.shop-brand-link:hover {
    text-decoration: none;
    color: var(--shop-brand-dark);
    border-color: var(--shop-brand);
    background: var(--shop-brand-soft);
}

@media (max-width: 991.98px) {
    .shop-categories-menu {
        width: min(96vw, 900px);
        max-height: calc(100dvh - 150px);
        overflow-y: auto;
    }

    .shop-categories-grid {
        column-count: 2;
        max-height: none;
        overflow: visible;
    }

    .shop-brands-menu {
        width: 100%;
        margin-top: 0.5rem;
    }

    .shop-price-list-menu {
        width: 100%;
        margin-top: 0.5rem;
    }

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

@media (min-width: 992px) {
    .shop-price-list-dropdown {
        padding-bottom: 0.35rem;
        margin-bottom: -0.35rem;
    }

    .shop-price-list-dropdown:hover > .shop-price-list-menu,
    .shop-price-list-dropdown:focus-within > .shop-price-list-menu {
        display: block;
    }

    .shop-brands-dropdown {
        padding-bottom: 0.35rem;
        margin-bottom: -0.35rem;
    }

    .shop-brands-dropdown:hover > .shop-brands-menu,
    .shop-brands-dropdown:focus-within > .shop-brands-menu {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .shop-categories-grid {
        column-count: 1;
    }

    .shop-brands-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile UX Sweep: storefront consistency and touch ergonomics */
@media (max-width: 767.98px) {
    html,
    body,
    .shopfront-body {
        overflow-x: hidden;
    }

    .shop-container-fluid,
    .shop-main,
    .shop-stage {
        max-width: 100%;
        overflow-x: clip;
    }

    .shop-container-fluid {
        padding-left: max(1rem, env(safe-area-inset-left));
        padding-right: max(1rem, env(safe-area-inset-right));
    }

    .shop-header-main {
        grid-template-columns: auto minmax(0, 1fr) auto;
        grid-template-areas:
            'menu logo actions'
            'search search';
        gap: 0.55rem;
        padding: 0.72rem max(1.05rem, env(safe-area-inset-right)) 0.82rem max(1.05rem, env(safe-area-inset-left));
        min-width: 0;
    }

    .shop-logo {
        grid-area: logo;
        gap: 0.5rem;
        min-width: 0;
        max-width: 100%;
        overflow: hidden;
    }

    .shop-logo-text {
        min-width: 0;
        overflow: hidden;
    }

    .shop-logo-title {
        display: block;
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .shop-logo-sub {
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .shop-logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
    }

    .shop-header-actions {
        grid-area: actions;
        min-width: 0;
        gap: 0.35rem;
        max-width: 100%;
        overflow: hidden;
        justify-content: flex-end;
    }

    .shop-user-chip {
        min-height: 40px;
        padding: 0 0.55rem 0 0.3rem;
        max-width: 36vw;
        min-width: 0;
        flex: 1 1 auto;
    }

    .shop-user-chip > span:last-child {
        max-width: 84px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        display: inline-block;
    }

    .shop-search {
        grid-area: search;
    }

    .shop-search-overlay-open .shop-header {
        position: relative;
        z-index: 1170;
        backdrop-filter: none;
    }

    body.shop-search-overlay-open {
        overflow: hidden;
    }

    .shop-search-overlay-open .shop-search-suggestions {
        position: fixed;
        inset: 0;
        top: 0;
        height: 100dvh;
        min-height: 100dvh;
        max-height: none;
        border-radius: 0;
        z-index: 1180;
        display: flex !important;
        flex-direction: column;
        padding-top: env(safe-area-inset-top, 0px);
    }

    .shop-search-overlay-open .shop-search-overlay-body {
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
        flex: 1 1 auto;
    }

    .shop-search-overlay-head {
        padding-top: calc(0.8rem + env(safe-area-inset-top, 0px));
    }

    .shop-action-link--cart,
    .shop-action-link--account,
    .shop-action-link--wishlist {
        min-width: 42px;
        width: 42px;
        height: 42px;
        padding: 0;
        flex: 0 0 42px;
    }

    .shop-action-link--cart .shop-action-caption,
    .shop-action-link--account .shop-action-caption,
    .shop-action-link--wishlist .shop-action-caption {
        display: none;
    }

    .shop-hero {
        padding: 1.15rem;
    }

    .shop-section-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.55rem;
    }

    .shop-section-head > div,
    .shop-section-head > a,
    .shop-section-head > .d-flex {
        width: 100%;
        min-width: 0;
    }

    .shop-section-head > .d-flex {
        flex-wrap: wrap;
        justify-content: flex-start;
        gap: 0.45rem !important;
    }

    .shop-section-head .shop-link-inline {
        display: inline-flex;
        align-self: flex-start;
        max-width: 100%;
        line-height: 1.2;
    }

    .shop-search {
        min-width: 0;
        width: 100%;
    }

    .shop-search .form-control {
        width: 100%;
    }

    .shop-search-overlay-input {
        font-size: 1rem;
    }

    .shop-search-queryless-pill-grid {
        gap: 0.4rem;
        padding: 0 0.85rem 0.7rem;
    }

    .shop-search-query-pill {
        min-height: 38px;
        padding: 0.42rem 0.68rem;
        font-size: 0.8rem;
    }

    .shop-search-overlay-input-wrap .shop-search-overlay-back {
        align-self: center;
    }

    .shop-action-badge {
        top: 2px;
        right: 2px;
        transform: translate(22%, -22%);
    }

    .shop-grid-stagger {
        margin-left: 0;
        margin-right: 0;
    }

    .shop-grid-stagger > [class*='col-'] {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        margin-bottom: 0.7rem !important;
    }

    .product-tile {
        border-radius: 14px;
    }

    .shop-hero .shop-cta-stack .btn {
        min-width: 0;
        width: 100%;
    }

    .shop-checkout-wizard {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem;
        overflow: visible;
        padding-bottom: 0;
    }

    .shop-checkout-step {
        width: 100%;
        min-height: 42px;
        white-space: normal;
        align-items: center;
        justify-content: flex-start;
        text-align: left;
    }

    .shop-checkout-step span {
        white-space: normal;
        line-height: 1.15;
    }

    .product-tile-media {
        padding: 6px;
    }

    .product-brand-overlay--card {
        top: 6px;
        right: 6px;
        max-width: min(72px, calc(100% - 12px));
        min-height: 24px;
        padding: 0.14rem 0.32rem;
    }

    .product-brand-overlay--card img {
        height: 16px;
    }

    .product-brand-overlay--card .product-brand-overlay__text {
        font-size: 0.68rem;
    }

    .product-tile-wishlist {
        bottom: 0;
    }

    .product-image-value-tabs {
        max-width: calc(100% - 52px);
        gap: 0.25rem;
    }

    .product-image-value-tab {
        min-height: 22px;
        max-height: 24px;
    }

    .product-image-value-tabs .product-image-value-tab:first-child {
        min-height: 24px;
        max-height: 26px;
    }

    .product-tile-body {
        padding: 0.58rem 0.55rem 0.62rem;
    }

    .product-tile-actions-wrap {
        padding: 0 0.55rem 0.62rem;
    }

    .product-tile-name {
        font-size: 0.84rem;
        line-height: 1.25;
        margin: 0.16rem 0 0.28rem;
        min-height: calc(1.25em * 2);
        max-height: calc(1.25em * 3);
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .product-price-row {
        --price-size: 0.9rem;
    }

    .product-tile .product-price-discount-pill {
        font-size: 0.58rem;
        padding: 0.16rem 0.32rem;
    }

    .js-simple-card-add-form {
        grid-template-columns: minmax(120px, 1fr) minmax(0, 1fr);
        gap: 0.35rem;
        align-items: center;
    }

    .js-variant-card-add-form {
        grid-template-columns: minmax(120px, 1fr) minmax(0, 1fr);
        gap: 0.35rem;
        align-items: center;
    }

    .js-simple-card-add-form .product-card-qty-wrap,
    .js-variant-card-add-form .product-card-qty-wrap {
        grid-column: auto;
        height: 36px;
        border-radius: 10px;
    }

    .js-simple-card-add-form .product-card-qty-input,
    .js-variant-card-add-form .product-card-qty-input {
        height: 36px;
        font-size: 0.94rem;
    }

    .js-simple-card-add-form .product-card-qty-btn,
    .js-variant-card-add-form .product-card-qty-btn {
        width: 30px;
    }

    .product-tile-actions .btn {
        min-height: 36px;
        font-size: 0.95rem;
        padding-left: 0.55rem;
        padding-right: 0.55rem;
    }

    .product-tile-actions--variable .btn {
        width: 100%;
    }

    .product-tile-discount {
        top: 8px;
        right: 48px;
        max-width: calc(100% - 104px);
        font-size: 0.66rem;
        padding: 0.2rem 0.48rem;
    }

    .shop-variant-quick-add-actions {
        flex-wrap: wrap;
        gap: 0.45rem;
    }

    .shop-variant-quick-add-qty-wrap {
        flex: 0 0 92px;
        width: 92px;
    }

    .shop-variant-quick-add-actions .btn {
        min-height: 40px;
    }

#shopVariantQuickAddViewProductBtn {
        flex: 1 1 auto;
        min-width: 120px;
    }
}
