* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--muted);
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.checkout-flow {
    background: #f6f6f4;
    color: var(--ink);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
}

.sales-section,
.footer-widgets,
.footer-bottom,
.collection-layout,
.product-detail-related,
.blog-layout,
.static-page,
.contact-page {
    content-visibility: auto;
    contain-intrinsic-size: 1px 780px;
}

.announcement {
    display: none;
    background: var(--accent);
    color: #000000;
    font-size: 12px;
    font-weight: 800;
}

.service-strip {
    width: min(1180px, calc(100% - 32px));
    min-height: 42px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    align-items: center;
    text-align: center;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.service-strip span {
    border-right: 1px solid rgba(255, 255, 255, .2);
}

.service-strip span:last-child {
    border-right: 0;
}

.utility-bar {
    border-bottom: 1px solid var(--line);
    background: #fbfbfb;
    color: var(--muted);
    font-size: 13px;
}

.utility-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 52px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
}

.utility-links {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.utility-links a,
.utility-location,
.utility-auth button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 400;
}

.utility-links i,
.utility-location i,
.utility-auth i {
    color: #a5aaa8;
    font-size: 13px;
}

.utility-location {
    justify-content: center;
    text-align: center;
}

.utility-auth {
    display: flex;
    justify-content: flex-end;
}

.utility-auth form {
    margin: 0;
}

.utility-auth button {
    border: 0;
    background: transparent;
    cursor: pointer;
    padding: 0;
    font: inherit;
}

.utility-auth a {
    color: var(--ink);
    font-size: 14px;
}

.currency-switcher {
    margin: 0;
}

.currency-switcher select {
    height: 30px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--muted);
    padding: 0 9px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.site-header {
    position: relative;
    top: 0;
    z-index: 20;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, .28) 0, rgba(255, 255, 255, 0) 12%, rgba(0, 0, 0, .018) 50%, rgba(255, 255, 255, .18) 100%),
        repeating-linear-gradient(90deg, rgba(0, 0, 0, .018) 0 1px, transparent 1px 42px),
        #f5f5f5;
    border-bottom: 1px solid var(--line);
}

.header-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 126px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(220px, 250px) minmax(450px, 1fr) auto;
    align-items: center;
    gap: 26px;
}

.brand {
    display: inline-flex;
    justify-content: flex-start;
    text-align: center;
}

.brand img {
    width: auto;
    max-width: 225px;
    height: 108px;
    object-fit: contain;
}

.nav {
    width: min(1180px, calc(100% - 32px));
    min-height: 52px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(var(--menu-bg), var(--menu-bg-dark));
    color: var(--menu-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0;
    box-shadow:
        inset 0 1px rgba(255, 255, 255, .08),
        inset 0 -1px rgba(0, 0, 0, .22),
        0 8px 18px rgba(0, 0, 0, .05);
    text-transform: uppercase;
}

@media (min-width: 861px) {
    .site-header.nav-fixed {
        padding-bottom: 52px;
    }

    .site-header.nav-fixed .nav {
        position: fixed;
        top: 0;
        left: 50%;
        z-index: 70;
        width: min(1180px, calc(100% - 32px));
        margin: 0;
        transform: translateX(-50%);
        box-shadow:
            inset 0 1px rgba(255, 255, 255, .1),
            inset 0 -1px rgba(0, 0, 0, .24),
            0 14px 30px rgba(0, 0, 0, .16);
    }
}

.nav-item {
    position: relative;
}

.nav > .nav-item + .nav-item::before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    bottom: 11px;
    width: 1px;
    background: color-mix(in srgb, var(--menu-divider) 65%, transparent);
    box-shadow: -1px 0 color-mix(in srgb, var(--menu-bg-dark) 62%, transparent);
    pointer-events: none;
}

.nav-link {
    min-height: 52px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 12px;
    color: inherit;
    white-space: nowrap;
    cursor: pointer;
    text-shadow: 0 1px rgba(0, 0, 0, .24);
    transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

.nav > .nav-item > .nav-link .nav-link-text {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-md);
    padding: 0 12px;
    transition: background .16s ease, box-shadow .16s ease, color .16s ease;
}

.nav-label {
    user-select: none;
}

.nav > .nav-item.has-children > .nav-link .nav-link-text::after {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    margin-left: 9px;
    opacity: .82;
    transform: rotate(45deg);
    translate: 0 -2px;
    flex: 0 0 auto;
}

.nav-submenu {
    min-width: 218px;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 45;
    display: none;
    border: 0;
    border-radius: 0;
    background: var(--submenu-bg);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .18);
    padding: 6px 0;
    text-transform: none;
}

.nav-submenu .nav-submenu {
    top: -8px;
    left: calc(100% - 3px);
}

.nav-submenu .nav-item {
    width: 100%;
    border-right: 0;
}

.nav-submenu .nav-link {
    min-height: 40px;
    justify-content: space-between;
    border-bottom: 1px solid var(--submenu-line);
    padding: 0 18px;
    color: var(--submenu-text);
    font-size: 13px;
    font-weight: 400;
    text-align: left;
    text-shadow: none;
    text-transform: none;
}

.nav-submenu .nav-item.has-children > .nav-link::after {
    content: "\203A";
    display: inline-block;
    color: currentColor;
    font-size: 17px;
    line-height: 1;
    margin-left: 10px;
    opacity: .72;
}

.nav-item:hover > .nav-submenu,
.nav-item:focus-within > .nav-submenu {
    display: block;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--menu-text);
    background: transparent;
    box-shadow: none;
}

.nav-item.active > .nav-link {
    background: transparent;
    color: var(--menu-text);
}

.nav > .nav-item > .nav-link:hover .nav-link-text,
.nav > .nav-item > .nav-link:focus .nav-link-text,
.nav > .nav-item.active > .nav-link .nav-link-text {
    background: var(--menu-active-bg);
    color: var(--menu-active-text);
    box-shadow: inset 0 1px rgba(255, 255, 255, .22);
    text-shadow: none;
}

.nav-submenu .nav-link:hover,
.nav-submenu .nav-link:focus,
.nav-submenu .nav-item.active > .nav-link {
    background: var(--menu-active-bg);
    color: var(--menu-active-text);
}

.header-actions {
    display: grid;
    grid-template-columns: minmax(0, 265px) auto;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
}

.mobile-header-only {
    display: none;
}

.header-search {
    position: relative;
    display: grid;
    gap: 5px;
    color: var(--muted);
    font-size: 14px;
    font-weight: 400;
    min-width: 450px;
}

.header-search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 42px;
}

.header-search input {
    width: 100%;
    height: 34px;
    border: 1px solid #dedede;
    border-right: 0;
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    background: #ffffff;
    color: var(--ink);
    padding: 0 12px;
    font: inherit;
}

.header-search button {
    height: 34px;
    display: grid;
    place-items: center;
    border: 1px solid #dedede;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    background: #dedede;
    color: #ffffff;
    cursor: pointer;
    font-size: 14px;
}

.header-search p {
    margin: 0;
    color: var(--ink);
}

.header-search strong {
    color: var(--accent-dark);
    font-weight: 500;
}

.search-suggestions {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    right: 42px;
    z-index: 70;
    display: none;
    border: 1px solid #d8d8d8;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    background: #ffffff;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .18);
    color: var(--ink);
}

.search-suggestions.open {
    display: block;
}

.search-suggestions::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 78%;
    width: 14px;
    height: 14px;
    border-top: 1px solid #d8d8d8;
    border-left: 1px solid #d8d8d8;
    background: #ffffff;
    transform: rotate(45deg);
}

.search-suggestions-list {
    position: relative;
    z-index: 1;
    display: grid;
    max-height: 430px;
    overflow-y: auto;
    padding: 12px 14px;
    gap: 10px;
}

.search-suggestion-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    color: inherit;
    text-transform: none;
}

.search-suggestion-item:hover,
.search-suggestion-item:focus {
    color: var(--ink);
}

.search-suggestion-item img,
.search-suggestion-placeholder {
    width: 64px;
    height: 64px;
    border: 1px solid var(--line);
    background: var(--soft);
    object-fit: cover;
}

.search-suggestion-title {
    display: block;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.12;
}

.search-suggestion-highlight {
    color: #ff5f57;
}

.search-suggestion-price {
    display: block;
    margin-top: 7px;
    color: #ff5f57;
    font-size: 18px;
    font-weight: 400;
    line-height: 1;
}

.search-suggestions-state {
    position: relative;
    z-index: 1;
    padding: 16px;
    color: var(--muted);
    font-size: 14px;
}

.header-search.searching button i {
    animation: search-spin .75s linear infinite;
}

@keyframes search-spin {
    to {
        transform: rotate(360deg);
    }
}

.header-phone {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    color: var(--ink);
    min-width: 0;
}

.header-phone i {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    color: color-mix(in srgb, var(--accent) 52%, #9fb8ad);
    font-size: 28px;
}

.header-phone span,
.header-cart-caption span {
    display: block;
    color: var(--muted);
    line-height: 1.35;
}

.header-phone a,
.header-cart-caption strong {
    display: block;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
}

.header-phone a {
    overflow-wrap: normal;
}

.header-phone .header-phone-number {
    color: var(--ink);
    white-space: nowrap;
}

.header-cart-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
}

.header-wishlist-link {
    display: none;
}

.header-wishlist-link i {
    color: #6f7774;
    font-size: 15px;
}

.header-wishlist-link [data-wishlist-count]::before {
    content: "";
    margin-left: 2px;
}

.header-cart-link .fa-cart-shopping {
    color: #8b9291;
    font-size: 21px;
}

.header-cart-link > span:not(.cart-count-bubble) {
    display: none;
}

.header-cart-link .cart-count-bubble {
    position: absolute;
    top: -12px;
    right: -10px;
    min-width: 30px;
    height: 30px;
    background: var(--accent);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.mobile-menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--mobile-menu-bg);
    color: var(--mobile-menu-text);
    cursor: pointer;
    padding: 0;
    place-items: center;
}

.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
    content: "";
    width: 20px;
    height: 2px;
    display: block;
    background: currentColor;
    transition: transform .2s ease, opacity .2s ease;
}

.mobile-menu-toggle span {
    margin: 5px 0;
}

.site-header.mobile-menu-open .mobile-menu-toggle::before {
    transform: translateY(7px) rotate(45deg);
}

.site-header.mobile-menu-open .mobile-menu-toggle span {
    opacity: 0;
}

.site-header.mobile-menu-open .mobile-menu-toggle::after {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    display: block;
    pointer-events: none;
    visibility: hidden;
}

.mobile-menu-backdrop.open {
    pointer-events: auto;
    visibility: visible;
}

.mobile-menu-scrim {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(16, 18, 20, .42);
    opacity: 0;
    transition: opacity .24s ease;
    cursor: pointer;
}

.mobile-menu-backdrop.open .mobile-menu-scrim {
    opacity: 1;
}

.mobile-menu-drawer {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(360px, 92vw);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--mobile-menu-bg);
    box-shadow: 16px 0 46px rgba(0, 0, 0, .16);
    transform: translateX(-105%);
    transition: transform .28s ease;
}

.mobile-menu-backdrop.open .mobile-menu-drawer {
    transform: translateX(0);
}

body.mobile-menu-open {
    overflow: hidden;
}

.mobile-menu-head {
    min-height: 60px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    align-items: center;
    background: var(--mobile-menu-head-bg);
    padding: 0 5px;
}

.mobile-menu-close,
.mobile-menu-back,
.mobile-menu-next {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    color: var(--mobile-menu-head-text);
    font-size: 18px;
}

.mobile-menu-logo {
    grid-column: 2;
    justify-self: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-logo img {
    width: auto;
    max-width: 100%;
    height: 46px;
    object-fit: contain;
    display: block;
}

.mobile-menu-stack {
    position: relative;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    background: var(--mobile-menu-bg);
}

.mobile-menu-panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    background: var(--mobile-menu-bg);
    visibility: hidden;
    transform: translateX(100%);
    transition: transform .25s ease, visibility .25s ease;
    will-change: transform;
}

.mobile-menu-panel.active {
    visibility: visible;
    transform: translateX(0);
}

.mobile-menu-list {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
}

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

.mobile-menu-row {
    min-height: 52px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 50px;
    align-items: stretch;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    min-width: 0;
    padding: 0 16px;
    color: var(--mobile-menu-text);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.mobile-menu-label {
    color: var(--mobile-menu-text);
}

.mobile-menu-link:hover,
.mobile-menu-link:focus,
.mobile-menu-next:hover,
.mobile-menu-next:focus,
.mobile-menu-panel-title:hover,
.mobile-menu-panel-title:focus {
    color: var(--menu-active-bg);
}

.mobile-menu-next {
    width: 50px;
    min-height: 52px;
    display: grid;
    place-items: center;
    color: var(--mobile-menu-text);
    font-size: 13px;
}

.mobile-menu-panel-head {
    min-height: 50px;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr) 50px;
    align-items: center;
    background: var(--mobile-menu-head-bg);
    color: var(--mobile-menu-head-text);
}

.mobile-menu-back {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: var(--mobile-menu-head-text);
    font-size: 14px;
}

.mobile-menu-panel-title {
    grid-column: 2;
    justify-self: center;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    color: var(--mobile-menu-head-text);
    font-size: 15px;
    font-weight: 500;
    line-height: 1.2;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.mobile-menu-footer {
    min-height: 64px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    background: var(--mobile-menu-head-bg);
}

.mobile-menu-footer a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    border-right: 1px solid rgba(255, 255, 255, .22);
    color: var(--mobile-menu-head-text);
    font-size: 12px;
    font-weight: 500;
}

.mobile-menu-footer a:last-child {
    border-right: 0;
}

.mobile-menu-footer i {
    font-size: 17px;
}

.cart-link {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 0 14px;
    font-weight: 800;
    font-size: 14px;
}

.cart-drawer-trigger {
    position: relative;
    border-color: var(--cart);
    background: var(--cart);
    color: var(--cart-text);
    gap: 10px;
}

.cart-drawer-trigger .fa-cart-shopping {
    width: 21px;
    height: 21px;
    display: inline-grid;
    place-items: center;
    font-size: 20px;
}

.cart-count-bubble {
    min-width: 20px;
    height: 20px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #ffffff;
    color: #000000;
    padding: 0 6px;
    font-size: 12px;
    line-height: 1;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 72;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 42%, #ffffff);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .94);
    color: var(--accent-dark);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transform: translateY(12px);
    transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.back-to-top i {
    font-size: 17px;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    color: #ffffff;
}

.back-to-top:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 24%, #ffffff);
    outline-offset: 3px;
}

@media (min-width: 861px) {
    .site-header .header-wishlist-link {
        display: none;
    }

    .site-header .header-cart-link {
        width: 56px;
        height: 42px;
        min-height: 42px;
        justify-content: center;
        border: 0;
        border-radius: 0;
        background: #ffffff;
        color: #8b9291;
        padding: 0;
    }

    .site-header .header-cart-link .fa-cart-shopping {
        color: #8b9291;
    }

    .site-header .header-cart-link > span:not(.cart-count-bubble) {
        display: none;
    }

    .site-header .header-cart-link .cart-count-bubble {
        position: absolute;
        top: -12px;
        right: -10px;
        min-width: 30px;
        height: 30px;
        background: var(--accent);
        color: #ffffff;
        font-size: 14px;
        font-weight: 500;
    }
}

.account-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto 54px;
}

.account-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.account-auth-card {
    width: min(100%, 460px);
    margin: 0 auto;
}

.account-dashboard-card {
    padding: 0;
    overflow: hidden;
}

.account-kicker {
    margin: 0 0 8px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.account-card h1 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 300;
    line-height: 1.15;
}

.account-muted {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.account-alert,
.account-success {
    margin-top: 20px;
    border-radius: var(--radius-md);
    padding: 12px 14px;
    font-size: 14px;
}

.account-alert {
    background: color-mix(in srgb, var(--danger) 10%, #ffffff);
    color: var(--danger);
}

.account-success {
    background: var(--success-bg);
    color: var(--success);
}

.account-dashboard-card > .account-success,
.account-dashboard-card > .account-alert {
    margin: 18px 30px 0;
}

.account-form {
    display: grid;
    gap: 16px;
    margin-top: 24px;
}

.account-form label {
    display: grid;
    gap: 7px;
    color: #000000;
    font-size: 14px;
    font-weight: 500;
}

.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="text"],
.account-form input[type="tel"],
.account-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 0 12px;
    color: var(--ink);
    font: inherit;
}

.account-form input[type="email"],
.account-form input[type="password"],
.account-form input[type="text"],
.account-form input[type="tel"] {
    height: 44px;
}

.account-form textarea {
    min-height: 88px;
    padding-top: 10px;
    resize: vertical;
}

.account-form input:focus,
.account-form textarea:focus {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.account-form .account-check {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
}

.account-submit {
    width: 100%;
    margin-top: 4px;
    justify-content: center;
}

.account-test-login {
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.account-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 30px 30px 0;
}

.account-link-button {
    min-height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--muted);
    cursor: pointer;
    padding: 0 14px;
    font: inherit;
    font-weight: 500;
}

.account-link-button:hover,
.account-link-button:focus {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.account-summary-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 28px 30px 0;
}

.account-summary-item {
    min-height: 102px;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--soft);
    padding: 16px;
    color: var(--muted);
}

.account-summary-item strong {
    color: #000000;
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.account-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    border-top: 1px solid var(--line);
    margin-top: 0;
    padding: 24px 30px 30px;
}

.account-panels {
    display: grid;
    gap: 18px;
    padding: 24px 30px;
}

.account-section {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 22px;
}

.account-section-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.account-section-head h2 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 300;
    line-height: 1.2;
}

.account-section-head p {
    max-width: 360px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.account-profile-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.account-form-wide,
.account-form-actions {
    grid-column: 1 / -1;
}

.account-form-actions {
    display: flex;
    justify-content: flex-start;
}

.account-password-form {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.account-orders-section {
    background: var(--soft);
}

.account-empty {
    margin-top: 18px;
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 22px;
}

.account-empty h3 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 300;
}

.account-empty p {
    margin: 8px 0 18px;
    color: var(--muted);
}

.account-order-list {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.account-order-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 18px;
}

.account-order-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.account-order-head h3 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 300;
}

.account-order-head p {
    margin: 6px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.account-order-head strong {
    color: var(--cart-total);
    font-size: 18px;
    font-weight: 500;
    white-space: nowrap;
}

.account-order-items {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.account-order-item {
    display: flex;
    justify-content: space-between;
    gap: 14px;
    border-top: 1px solid var(--line);
    padding-top: 8px;
    color: var(--muted);
    font-size: 14px;
}

.account-order-item span {
    color: #000000;
}

.account-order-item small {
    white-space: nowrap;
}

.product-tools {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 7px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity .22s ease, transform .22s ease;
}

.product-card:hover .product-tools {
    opacity: 1;
    transform: translateX(0);
}

.product-tools form {
    margin: 0;
}

.store-admin-actions {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 9;
    display: flex;
    align-items: center;
    gap: 6px;
}

.store-admin-actions form {
    margin: 0;
}

.store-admin-action {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, .16);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .94);
    color: #000000;
    padding: 0;
    font: inherit;
    font-size: 18px;
    font-weight: 900;
    line-height: 1;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .1);
    cursor: pointer;
}

.store-admin-action i {
    font-size: 14px;
    line-height: 1;
}

.store-admin-action.danger {
    color: var(--danger);
}

.store-admin-actions-inline {
    position: static;
    inset: auto;
    z-index: auto;
    flex: 0 0 auto;
}

.store-admin-add-panel {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: color-mix(in srgb, var(--surface) 92%, var(--accent) 8%);
    padding: 18px 0;
}

.store-admin-add-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.store-admin-add-inner strong {
    display: block;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 400;
    line-height: 1.2;
}

.store-admin-add-inner span {
    display: block;
    margin-top: 3px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 400;
}

.store-admin-add-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.store-admin-add-button {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--accent);
    border-radius: var(--radius-md);
    background: var(--accent);
    color: var(--button-text);
    padding: 0 14px;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.store-admin-add-button:hover,
.store-admin-add-button:focus {
    border-color: var(--accent-dark);
    background: var(--accent-dark);
    color: var(--button-text);
}

@media (max-width: 620px) {
    .store-admin-add-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .store-admin-add-actions {
        justify-content: flex-start;
    }
}

.wishlist-toggle,
.quick-view {
    width: 40px;
    height: 40px;
    border: 1px solid color-mix(in srgb, var(--accent) 36%, var(--line));
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--accent) 9%, #ffffff);
    color: var(--accent-dark);
    cursor: pointer;
    display: grid;
    place-items: center;
    font: inherit;
    font-size: 17px;
    font-weight: 900;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.wishlist-toggle:hover,
.wishlist-toggle:focus-visible,
.quick-view:hover,
.quick-view:focus-visible {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--button-text);
    transform: translateY(-1px);
}

.wishlist-toggle i,
.quick-view i,
.product-cart-icon i {
    display: inline-grid;
    place-items: center;
    font-size: 17px;
    line-height: 1;
}

.quick-view.loading {
    opacity: .65;
    pointer-events: none;
}

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

.storefront-frame {
    padding: 30px 0 0;
}

.home-grid {
    display: grid;
    grid-template-columns: minmax(250px, 3fr) minmax(0, 9fr);
    gap: 30px;
    align-items: start;
}

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

.home-aside,
.home-main {
    min-width: 0;
}

.home-main {
    display: grid;
    gap: 30px;
}

.aside-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 20px 24px 24px;
    box-shadow: var(--shadow-soft);
}

.aside-box + .aside-box,
.side-banner + .aside-box,
.aside-box + .side-banner {
    margin-top: 30px;
}

.section-heading-wrapper {
    margin: 0 0 16px;
}

.section-heading {
    margin: 0;
    color: #000000;
    font-size: 30px;
    line-height: 1.1;
    font-weight: 300;
}

.section-heading-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.plain-link {
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.plain-link:hover {
    color: var(--accent-dark);
}

.category-list {
    display: grid;
    gap: 0;
    font-size: 14px;
}

.category-row {
    min-height: 36px;
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
}

.category-row:last-child {
    border-bottom: 0;
}

.category-row:hover {
    color: var(--accent-dark);
}

.category-row-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.category-row-icon img {
    width: 25px;
    height: 25px;
    object-fit: contain;
}

.category-row-name {
    color: inherit;
}

.category-row-count {
    color: var(--muted);
}

.section {
    padding: 58px 0;
}

.section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 24px;
}

.section-head h2 {
    margin: 0;
    font-size: 31px;
    line-height: 1.12;
}

.section-head p {
    max-width: 560px;
    margin: 8px 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.button,
.ghost-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    padding: 0 18px;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.button {
    border: 0;
    background: var(--accent);
    color: var(--button-text);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.button:hover {
    background: var(--accent-dark);
}

.ghost-button {
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
}

.ghost-button:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.hero {
    min-height: clamp(560px, 72vh, 760px);
    display: grid;
    align-items: center;
    background:
        linear-gradient(90deg, rgba(248, 247, 241, .96), rgba(248, 247, 241, .62), rgba(248, 247, 241, .12)),
        url("https://images.unsplash.com/photo-1513519245088-0e12902e5a38?auto=format&fit=crop&w=1800&q=80") center/cover;
    color: var(--ink);
}

.hero-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 58px 0;
}

.eyebrow {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.hero h1 {
    max-width: 560px;
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.02;
}

.hero p {
    max-width: 480px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.hero.hero-slider {
    position: relative;
    min-height: 0;
    aspect-ratio: 1.6926;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: var(--hero-surface);
    color: var(--hero-text);
    box-shadow: var(--shadow-soft);
}

.hero-slides {
    position: absolute;
    inset: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(4%);
    transition: opacity .72s ease, visibility .72s ease, transform .95s cubic-bezier(.22, .61, .36, 1);
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0);
}

.hero-slider .hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.045);
    transition: transform 5.8s ease;
}

.hero-slide.active .hero-image {
    transform: scale(1);
}

.hero-slider .hero-content {
    position: absolute;
    top: 50%;
    left: 80%;
    z-index: 3;
    width: min(43%, 390px);
    margin: 0;
    padding: 0;
    color: var(--hero-text);
    transform: translate(-80%, -50%);
}

.hero-slider .hero-content-watch {
    left: 70%;
    width: min(31%, 280px);
    color: var(--hero-alt-text);
    transform: translate(-70%, -50%);
}

.hero-slide .hero-content > * {
    opacity: 0;
    transform: translateY(20px);
}

.hero-slide.active .hero-content > * {
    animation: heroTextReveal .72s cubic-bezier(.2, .7, .2, 1) both;
}

.hero-slide.active .hero-content > *:nth-child(1) {
    animation-delay: .18s;
}

.hero-slide.active .hero-content > *:nth-child(2) {
    animation-delay: .33s;
}

.hero-slide.active .hero-content > *:nth-child(3) {
    animation-delay: .48s;
}

.hero-slide.active .hero-content > *:nth-child(4) {
    animation-delay: .63s;
}

.hero-slider h1 {
    max-width: none;
    padding: 10px 0;
    color: currentColor;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(34px, 4.1vw, 49px);
    font-weight: 300;
    line-height: 1;
}

.hero-content-watch h1 {
    font-size: clamp(36px, 5vw, 59px);
    font-weight: 600;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    border-top: 1px solid var(--hero-text);
    border-bottom: 1px solid var(--hero-text);
    padding: 10px 0;
    color: var(--hero-text);
    font-size: 25px;
    line-height: 1;
}

.hero-subtitle span {
    color: var(--hero-alt-text);
    font-size: 43px;
    font-weight: 300;
}

.hero-slider p {
    max-width: none;
    margin: 0;
    padding: 10px 0;
    color: currentColor;
    font-size: 14px;
    line-height: 1.5;
}

.hero-content-watch p {
    font-size: clamp(18px, 2vw, 24px);
    line-height: 1;
}

.hero-slider .button {
    margin-top: 10px;
    padding: 0 40px;
}

.hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 0;
    background: color-mix(in srgb, var(--surface) 78%, transparent);
    color: var(--ink);
    cursor: pointer;
    opacity: 0;
    transform: translateY(-50%);
    transition: opacity .18s ease, background .18s ease, color .18s ease;
}

.hero-arrow:hover,
.hero-arrow:focus-visible,
.hero-slider:hover .hero-arrow {
    opacity: 1;
}

.hero-arrow:hover,
.hero-arrow:focus-visible {
    background: var(--ink);
    color: var(--surface);
}

.hero-arrow i {
    font-size: 24px;
    line-height: 1;
}

.hero-arrow-prev {
    left: 12px;
}

.hero-arrow-next {
    right: 12px;
}

.hero-dots {
    position: absolute;
    z-index: 4;
    left: 50%;
    bottom: 18px;
    display: flex;
    gap: 8px;
    transform: translateX(-50%);
}

.hero-dots button {
    width: 12px;
    height: 12px;
    border: 2px solid #ffffff;
    border-radius: 999px;
    background: rgba(74, 73, 73, .5);
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .06);
    cursor: pointer;
    padding: 0;
    transition: background .18s ease, transform .18s ease;
}

.hero-dots button[aria-current="true"] {
    background: var(--accent);
    transform: scale(1.08);
}

.hero-transition-layer {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-transition-piece {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: clip-path, opacity, transform;
}

@keyframes heroTextReveal {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide,
    .hero-slider .hero-image,
    .hero-slide .hero-content > *,
    .hero-arrow,
    .hero-dots button,
    .sales-hero-slide,
    .sales-hero-slide.active .sales-hero-copy > *,
    .sales-hero-slide.active .sales-hero-media img,
    .sales-hero-dots button,
    .sales-hero::before,
    .sales-hero::after {
        animation: none !important;
        transition: none !important;
    }

    .hero-slide .hero-content > *,
    .sales-hero-slide.active .sales-hero-copy > *,
    .sales-hero-slide.active .sales-hero-media img {
        opacity: 1;
        transform: none;
    }
}

.grid {
    display: grid;
    gap: 22px;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.category-tile {
    position: relative;
    min-height: 176px;
    overflow: hidden;
    border-radius: 8px;
    background: var(--surface);
    border: 1px solid var(--line);
    text-align: center;
}

.category-tile img {
    width: 100%;
    height: 100%;
    height: 126px;
    min-height: 126px;
    object-fit: cover;
    transition: transform .25s ease;
}

.category-tile:hover img {
    transform: scale(1.04);
}

.category-tile span {
    display: block;
    padding: 13px 10px 3px;
    font-weight: 850;
}

.category-count {
    display: block;
    padding-bottom: 13px;
    color: var(--muted);
    font-size: 13px;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.storefront-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.side-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    padding: 20px 22px 18px;
    box-shadow: var(--shadow-soft);
}

.side-panel h3 {
    margin: 0;
    padding: 0 0 16px;
    color: var(--ink);
    font-size: 24px;
    line-height: 1.1;
}

.mini-product {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 15px;
    padding: 0;
    margin-top: 20px;
    border-bottom: 0;
    overflow: hidden;
}

.mini-product-wrap,
.collection-special-item,
.blog-recent-item {
    position: relative;
}

.mini-product-wrap > .store-admin-actions,
.collection-special-item > .store-admin-actions,
.blog-recent-item > .store-admin-actions {
    right: 6px;
    bottom: 6px;
}

.mini-product:last-child {
    border-bottom: 0;
}

.mini-product img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--soft);
    transition: border-color .22s ease;
}

.mini-product:hover img {
    border-color: var(--accent);
}

.mini-product h4 {
    margin: 0 0 5px;
    color: var(--ink);
    font-size: 15px;
    line-height: 1.3;
}

.side-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.side-banner img {
    width: 100%;
    aspect-ratio: 270 / 396;
    object-fit: cover;
    transition: transform .35s ease;
}

.side-banner:hover img {
    transform: scale(1.04);
}

.side-banner::after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .55);
    border-radius: var(--radius-md);
    opacity: 0;
    transform: scale(.94);
    transition: opacity .35s ease, transform .35s ease;
}

.side-banner:hover::after {
    opacity: 1;
    transform: scale(1);
}

.side-banner-text {
    position: absolute;
    top: 45px;
    left: 20px;
    z-index: 1;
    font-size: 30px;
    font-weight: 200;
    line-height: 1.18;
    transition: top .35s ease;
}

.side-banner:hover .side-banner-text {
    top: 30px;
}

.side-banner-button {
    position: absolute;
    left: 25px;
    bottom: 0;
    z-index: 1;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
    padding: 0 22px;
    opacity: 0;
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: bottom .35s ease, opacity .35s ease;
}

.side-banner:hover .side-banner-button {
    bottom: 20px;
    opacity: 1;
}

.aside-promo-slider {
    background: rgba(242, 242, 243, .4);
    text-align: center;
}

.aside-promo-copy {
    padding: 0 0 15px;
}

.aside-promo-copy .section-heading {
    border-bottom: 2px solid var(--line);
    margin-bottom: 12px;
    padding-bottom: 5px;
}

.aside-promo-copy p {
    margin: 0;
    color: #4f4f4f;
    line-height: 1.45;
}

.aside-promo-slider a {
    position: relative;
    display: block;
}

.aside-promo-slider img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.aside-promo-button {
    position: relative;
    min-height: 36px;
    max-width: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--accent);
    color: var(--button-text);
    margin: -18px auto 0;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.aside-brand-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 0;
}

.aside-brand-list a {
    width: 50%;
    color: var(--muted);
    line-height: 1.5;
}

.aside-brand-list a:hover {
    color: var(--accent-dark);
}

.handy-slider-section {
    min-width: 0;
    margin-top: 0;
}

.handy-slider-head {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.handy-slider-head h2 {
    margin: 0;
}

.handy-slider-controls {
    display: flex;
    gap: 10px;
}

.handy-slider-button {
    width: 34px;
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--ink);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
}

.handy-slider-button:hover {
    color: var(--accent);
}

.handy-slider-button i {
    font-size: 24px;
    line-height: 1;
}

.handy-slider-viewport {
    overflow: hidden;
    scroll-behavior: smooth;
    padding: 2px 2px 10px;
    margin: -2px -2px -10px;
}

.handy-slider-track {
    display: flex;
    gap: 30px;
}

.handy-slide {
    flex: 0 0 calc((100% - 60px) / 3);
    display: flex;
    min-width: 0;
}

.handy-slide .product-card {
    width: 100%;
    height: 100%;
}

.discount-banner {
    position: relative;
    display: grid;
    min-height: 90px;
    align-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    color: #ffffff;
    box-shadow: var(--shadow-soft);
}

.discount-banner img,
.promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-banner span,
.discount-banner b {
    position: relative;
    z-index: 1;
    margin-left: 7%;
}

.discount-banner span {
    font-size: 24px;
    font-weight: 300;
}

.discount-banner b {
    width: fit-content;
    background: var(--accent);
    border-radius: var(--radius-md);
    color: var(--button-text);
    padding: 9px 26px;
    font-size: 12px;
    line-height: 1;
}

.promo-pair {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.promo-card {
    position: relative;
    min-height: 184px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background: #1f2937;
    color: #ffffff;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(90deg, rgba(0, 0, 0, .42), rgba(0, 0, 0, .1));
}

.promo-card span,
.promo-card b {
    position: relative;
    z-index: 2;
}

.promo-card span {
    font-size: 32px;
    font-weight: 300;
}

.promo-card b {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--accent);
    border-radius: var(--radius-md);
    color: var(--button-text);
    margin-top: 10px;
    padding: 0 26px;
    font-size: 12px;
    text-transform: uppercase;
}

.promo-card-light {
    color: #6a6a6a;
}

.promo-card-light::after {
    background: linear-gradient(90deg, rgba(255, 255, 255, .64), rgba(255, 255, 255, .22));
}

.home-grid-sales {
    display: block;
}

.sales-home {
    gap: 34px;
}

.sales-kicker {
    margin: 0 0 9px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.sales-hero,
.sales-trust-card,
.sales-category-card,
.sales-wood-card,
.sales-use-panel,
.sales-info-band article,
.sales-process-card,
.sales-guide,
.sales-certificates,
.sales-faq-card,
.sales-final-cta {
    position: relative;
}

.sales-hero {
    isolation: isolate;
    min-height: 520px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 6% 12%, color-mix(in srgb, var(--accent) 18%, transparent), transparent 28%),
        linear-gradient(135deg, #ffffff, var(--soft));
    box-shadow: var(--shadow-soft);
}

.sales-hero::before,
.sales-hero::after {
    content: "";
    position: absolute;
    inset: -18%;
    z-index: 6;
    opacity: 0;
    pointer-events: none;
}

.sales-hero::before {
    background:
        linear-gradient(105deg, transparent 0 26%, color-mix(in srgb, var(--accent) 68%, #ffffff) 26% 45%, #ffffff 45% 52%, color-mix(in srgb, var(--ink) 42%, transparent) 52% 68%, transparent 68% 100%);
    transform: translateX(-120%);
}

.sales-hero::after {
    background:
        linear-gradient(105deg, transparent 0 42%, rgba(255, 255, 255, .92) 42% 46%, transparent 46% 100%);
    transform: translateX(-135%);
}

.sales-hero.is-animating::before {
    animation: salesHeroCurtain 1.18s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero.is-animating::after {
    animation: salesHeroBeam 1.18s cubic-bezier(.18, .82, .2, 1) .08s both;
}

.sales-hero-track {
    position: relative;
    min-height: 520px;
}

.sales-hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transform: translateX(80px) scale(.96);
    transition: opacity .9s ease, transform 1.05s cubic-bezier(.18, .82, .2, 1), visibility .9s ease, clip-path 1.05s cubic-bezier(.18, .82, .2, 1);
    will-change: opacity, transform, clip-path;
    z-index: 0;
}

.sales-hero-slide.active {
    position: relative;
    opacity: 1;
    pointer-events: auto;
    visibility: visible;
    transform: translateX(0);
    z-index: 3;
}

.sales-hero[data-sales-hero-effect="slide"] .sales-hero-slide {
    transform: translateX(115px) scale(.96);
}

.sales-hero[data-sales-hero-effect="rise"] .sales-hero-slide {
    transform: translateY(82px) scale(.965);
}

.sales-hero[data-sales-hero-effect="tilt"] .sales-hero-slide {
    transform: translateX(86px) rotate(2.4deg) scale(.94);
}

.sales-hero[data-sales-hero-effect="zoom"] .sales-hero-slide {
    transform: scale(.88);
}

.sales-hero[data-sales-hero-effect="wipe"] .sales-hero-slide {
    transform: translateX(-84px) scale(.98);
    clip-path: inset(0 0 0 38%);
}

.sales-hero[data-sales-hero-effect] .sales-hero-slide.active {
    transform: translate(0, 0) rotate(0) scale(1);
    clip-path: inset(0);
}

.sales-hero-slide.active .sales-hero-copy > * {
    animation: salesHeroCopyIn .86s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero.is-animating .sales-hero-slide.was-active {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
    z-index: 4;
    filter: blur(1px);
}

.sales-hero.is-animating .sales-hero-slide.active {
    animation: salesHeroNewSlide 1.08s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero.is-animating[data-sales-hero-effect="slide"] .sales-hero-slide.was-active {
    animation: salesHeroOutSlide .9s cubic-bezier(.55, .02, .8, .28) both;
}

.sales-hero.is-animating[data-sales-hero-effect="rise"] .sales-hero-slide.was-active {
    animation: salesHeroOutRise .9s cubic-bezier(.55, .02, .8, .28) both;
}

.sales-hero.is-animating[data-sales-hero-effect="tilt"] .sales-hero-slide.was-active {
    animation: salesHeroOutTilt .9s cubic-bezier(.55, .02, .8, .28) both;
}

.sales-hero.is-animating[data-sales-hero-effect="zoom"] .sales-hero-slide.was-active {
    animation: salesHeroOutZoom .9s cubic-bezier(.55, .02, .8, .28) both;
}

.sales-hero.is-animating[data-sales-hero-effect="wipe"] .sales-hero-slide.was-active {
    animation: salesHeroOutWipe .9s cubic-bezier(.55, .02, .8, .28) both;
}

.sales-hero-slide.active .sales-hero-copy > *:nth-child(2) {
    animation-delay: .05s;
}

.sales-hero-slide.active .sales-hero-copy > *:nth-child(3) {
    animation-delay: .1s;
}

.sales-hero-slide.active .sales-hero-copy > *:nth-child(4) {
    animation-delay: .15s;
}

.sales-hero[data-sales-hero-effect="zoom"] .sales-hero-slide.active .sales-hero-media img {
    animation: salesHeroImageZoom 1.18s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero[data-sales-hero-effect="slide"] .sales-hero-slide.active .sales-hero-media img,
.sales-hero[data-sales-hero-effect="wipe"] .sales-hero-slide.active .sales-hero-media img {
    animation: salesHeroImageSlide 1.18s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero[data-sales-hero-effect="rise"] .sales-hero-slide.active .sales-hero-media img {
    animation: salesHeroImageRise 1.18s cubic-bezier(.18, .82, .2, 1) both;
}

.sales-hero[data-sales-hero-effect="tilt"] .sales-hero-slide.active .sales-hero-media img {
    animation: salesHeroImageTilt 1.18s cubic-bezier(.18, .82, .2, 1) both;
}

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

@keyframes salesHeroImageZoom {
    from {
        opacity: .46;
        transform: scale(1.2);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes salesHeroImageSlide {
    from {
        opacity: .46;
        transform: translateX(78px) scale(1.06);
    }
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes salesHeroImageRise {
    from {
        opacity: .46;
        transform: translateY(68px) scale(1.08);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes salesHeroImageTilt {
    from {
        opacity: .46;
        transform: rotate(-5deg) translateX(64px) scale(1.08);
    }
    to {
        opacity: 1;
        transform: rotate(0) translateX(0) scale(1);
    }
}

@keyframes salesHeroOutSlide {
    from {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-160px) scale(.9);
    }
}

@keyframes salesHeroOutRise {
    from {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateY(-118px) scale(.9);
    }
}

@keyframes salesHeroOutTilt {
    from {
        opacity: 1;
        transform: translateX(0) rotate(0) scale(1);
    }
    to {
        opacity: 0;
        transform: translateX(-132px) rotate(-6deg) scale(.88);
    }
}

@keyframes salesHeroOutZoom {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(1.26);
    }
}

@keyframes salesHeroOutWipe {
    from {
        opacity: 1;
        clip-path: inset(0);
        transform: translateX(0) scale(1);
    }
    to {
        opacity: 0;
        clip-path: inset(0 62% 0 0);
        transform: translateX(120px) scale(.9);
    }
}

@keyframes salesHeroNewSlide {
    0% {
        opacity: .28;
        transform: translateX(115px) scale(.94);
    }
    58% {
        opacity: 1;
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes salesHeroCurtain {
    0% {
        opacity: 0;
        transform: translateX(-120%);
    }
    18% {
        opacity: .95;
    }
    54% {
        opacity: .92;
    }
    100% {
        opacity: 0;
        transform: translateX(120%);
    }
}

@keyframes salesHeroBeam {
    0% {
        opacity: 0;
        transform: translateX(-135%);
    }
    22% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(135%);
    }
}

.sales-hero-copy {
    position: relative;
    align-self: center;
    padding: clamp(34px, 5vw, 62px);
}

.sales-hero-copy h1,
.sales-section-head h2,
.sales-picker-copy h2,
.sales-info-band h2,
.sales-guide h2,
.sales-certificates h2,
.sales-final-cta h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.08;
}

.sales-hero-copy h1 {
    max-width: 600px;
    font-size: clamp(38px, 5vw, 64px);
}

.sales-hero-copy > p,
.sales-hero-copy > ul,
.sales-picker-copy > p,
.sales-info-band article > p,
.sales-guide-copy > p,
.sales-certificates-copy > p {
    max-width: 610px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.sales-hero-copy ul,
.sales-picker-copy ul,
.sales-info-band ul,
.sales-guide ul {
    padding-left: 20px;
}

.sales-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.sales-hero-media {
    position: relative;
    display: grid;
    place-items: center;
    min-height: 100%;
    overflow: hidden;
    background:
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, .82), transparent 30%),
        linear-gradient(135deg, #fff7ef, #ead5c1);
}

.sales-hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .24), transparent 42%),
        linear-gradient(90deg, rgba(255, 255, 255, .34), transparent 48%);
    pointer-events: none;
}

.sales-hero-media img {
    position: relative;
    z-index: 1;
    width: min(78%, 520px);
    height: min(72%, 430px);
    min-height: 0;
    aspect-ratio: 1.16 / 1;
    border: 10px solid rgba(255, 255, 255, .86);
    border-radius: var(--radius-lg);
    object-fit: cover;
    object-position: center;
    padding: 0;
    box-shadow: 0 26px 58px rgba(80, 45, 20, .18);
}

.sales-hero-tags {
    position: absolute;
    left: 24px;
    right: 24px;
    top: 24px;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sales-hero-tags a {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    padding: 8px 11px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
    transition: border-color .16s ease, color .16s ease, transform .16s ease;
}

.sales-hero-tags a:hover,
.sales-hero-tags a:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 34%, rgba(255, 255, 255, .78));
    color: var(--accent);
    transform: translateY(-1px);
}

.sales-hero-price {
    position: absolute;
    left: 24px;
    bottom: 24px;
    z-index: 2;
    display: grid;
    gap: 4px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .94);
    padding: 14px 18px;
    box-shadow: var(--shadow-soft);
}

.sales-hero-price span {
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.sales-hero-price strong {
    color: var(--price);
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
}

.sales-hero-controls {
    position: absolute;
    right: 24px;
    bottom: 18px;
    z-index: 5;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(255, 255, 255, .72);
    border-radius: 999px;
    background: rgba(255, 255, 255, .88);
    padding: 6px;
    box-shadow: var(--shadow-soft);
}

.sales-hero-controls > button {
    display: grid;
    width: 32px;
    height: 32px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
    transition: border-color .16s ease, color .16s ease, transform .16s ease;
}

.sales-hero-controls > button:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
    transform: translateY(-1px);
}

.sales-hero-controls i {
    font-size: 11px;
    line-height: 1;
}

.sales-hero-dots {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 2px;
}

.sales-hero-dots button {
    width: 7px;
    height: 7px;
    border: 0;
    border-radius: 999px;
    background: color-mix(in srgb, var(--muted) 54%, transparent);
    cursor: pointer;
    padding: 0;
}

.sales-hero-dots button[aria-current="true"] {
    width: 18px;
    background: var(--accent);
}

.sales-trust-grid,
.sales-category-pair,
.sales-wood-grid,
.sales-product-grid,
.sales-process-grid,
.sales-faq-grid {
    display: grid;
    gap: 18px;
}

.sales-trust-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sales-buy-path {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sales-buy-path a {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    row-gap: 4px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    color: var(--ink);
    padding: 16px;
    box-shadow: var(--shadow-soft);
    transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.sales-buy-path a:hover,
.sales-buy-path a:focus-visible {
    border-color: var(--accent);
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.sales-buy-path span {
    grid-row: span 2;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 10%, #ffffff);
    color: var(--accent);
    font-size: 14px;
    font-weight: 900;
}

.sales-buy-path strong {
    font-size: 16px;
    line-height: 1.2;
}

.sales-buy-path small {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.35;
}

.sales-trust-card {
    min-height: 156px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.sales-trust-icon {
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--success-bg);
    color: var(--success);
    margin-bottom: 14px;
}

.sales-trust-card h2,
.sales-process-card h3,
.sales-faq-card h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    line-height: 1.25;
}

.sales-trust-card p,
.sales-process-card p,
.sales-faq-card p {
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.58;
}

.sales-section {
    display: grid;
    gap: 22px;
}

.sales-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.sales-section-head h2,
.sales-picker-copy h2,
.sales-info-band h2,
.sales-guide h2,
.sales-certificates h2,
.sales-final-cta h2 {
    font-size: clamp(28px, 3.2vw, 42px);
}

.sales-category-pair {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.sales-category-card {
    min-height: 280px;
    display: grid;
    align-content: end;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #f7efe7;
    color: var(--ink);
    padding: 28px;
    padding-right: clamp(110px, 34%, 220px);
    box-shadow: var(--shadow-soft);
}

.sales-category-card img {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: min(44%, 260px);
    height: calc(100% - 20px);
    object-fit: contain;
    object-position: center;
    transition: transform .26s ease;
}

.sales-wood-card img {
    position: absolute;
    right: 8px;
    bottom: 8px;
    width: min(54%, 220px);
    height: calc(100% - 16px);
    object-fit: contain;
    object-position: center;
    transition: transform .26s ease;
}

.sales-category-card::after,
.sales-wood-card::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 76%;
    background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .92) 62%, rgba(255, 255, 255, 0) 100%);
}

.sales-category-card:hover img,
.sales-wood-card:hover img {
    transform: scale(1.04);
}

.sales-category-card span,
.sales-category-card p,
.sales-category-card b,
.sales-wood-card span,
.sales-wood-card p {
    position: relative;
    z-index: 1;
}

.sales-category-card span {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 700;
    line-height: 1.1;
}

.sales-category-card p {
    max-width: 520px;
    margin: 10px 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.sales-category-card b {
    width: fit-content;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--button-text);
    margin-top: 15px;
    padding: 8px 13px;
    font-size: 12px;
    text-transform: uppercase;
}

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

.sales-wood-card {
    min-height: 210px;
    display: grid;
    align-content: end;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #f7efe7;
    color: var(--ink);
    padding: 20px;
    padding-right: clamp(96px, 38%, 170px);
    box-shadow: var(--shadow-soft);
}

.sales-wood-card span {
    font-size: 24px;
    font-weight: 800;
    text-transform: capitalize;
}

.sales-wood-card p {
    margin: 7px 0 0;
    color: var(--muted);
    line-height: 1.48;
}

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

.sales-product-actions,
.sales-carousel-controls {
    display: flex;
    align-items: center;
}

.sales-product-actions {
    gap: 16px;
}

.sales-carousel-controls {
    gap: 8px;
}

.sales-carousel-button {
    width: 36px;
    height: 36px;
    border: 1px solid color-mix(in srgb, var(--accent) 48%, var(--line));
    border-radius: var(--radius-sm);
    background: var(--surface);
    color: var(--accent-dark);
    display: grid;
    place-items: center;
    cursor: pointer;
    padding: 0;
    transition: background .18s ease, border-color .18s ease, color .18s ease, opacity .18s ease;
}

.sales-carousel-button:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--button-text);
}

.sales-carousel-button:disabled {
    cursor: default;
    opacity: .38;
}

.sales-carousel-button:disabled:hover {
    border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
    background: var(--surface);
    color: var(--accent-dark);
}

.sales-product-carousel {
    min-width: 0;
    position: relative;
}

@media (min-width: 861px) {
    .sales-product-grid {
        display: flex;
        gap: 18px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        cursor: grab;
        padding: 2px 2px 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-y;
        user-select: none;
    }

    .sales-product-grid::-webkit-scrollbar {
        display: none;
    }

    .sales-product-grid .product-card {
        flex: 0 0 calc((100% - 54px) / 4);
        cursor: grab;
        scroll-snap-align: start;
    }

    .sales-product-grid .product-card a,
    .sales-product-grid .product-card img {
        cursor: grab;
    }

    .sales-product-grid .product-tools button,
    .sales-product-grid .product-cart-form button,
    .sales-product-grid .store-admin-actions a,
    .sales-product-grid .store-admin-actions button {
        cursor: pointer;
    }

    .sales-product-grid.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .sales-product-grid.dragging .product-card,
    .sales-product-grid.dragging .product-card * {
        cursor: grabbing;
    }
}

@media (min-width: 861px) and (max-width: 1180px) {
    .sales-product-grid .product-card {
        flex-basis: calc((100% - 36px) / 3);
    }

    .sales-certificate-card {
        flex-basis: calc((100% - 54px) / 4);
    }
}

.sales-picker-section,
.sales-info-band,
.sales-guide,
.sales-certificates,
.sales-final-cta {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow-soft);
}

.sales-picker-section {
    grid-template-columns: minmax(270px, .82fr) minmax(0, 1.18fr);
    align-items: stretch;
    padding: 28px;
}

.sales-picker-copy {
    position: relative;
    align-self: center;
    padding-right: 10px;
}

.sales-use-tabs {
    display: grid;
    gap: 14px;
    align-self: stretch;
}

.sales-use-tab-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sales-use-tab {
    min-height: 68px;
    flex: 1 1 126px;
    display: grid;
    align-content: center;
    gap: 4px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--soft);
    color: var(--muted);
    padding: 11px 14px;
    font: inherit;
    cursor: pointer;
    text-align: left;
    transition: border-color .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
}

.sales-use-tab:hover,
.sales-use-tab:focus-visible,
.sales-use-tab.active {
    border-color: color-mix(in srgb, var(--accent) 62%, var(--line));
    background: #ffffff;
    color: var(--ink);
    box-shadow: var(--shadow-soft);
}

.sales-use-tab span {
    color: inherit;
    font-size: 18px;
    font-weight: 800;
    line-height: 1.15;
}

.sales-use-tab small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.25;
}

.sales-use-panels {
    min-height: 230px;
    position: relative;
}

.sales-use-panel {
    display: none;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, #ffffff, color-mix(in srgb, var(--soft) 78%, #ffffff));
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
}

.sales-use-panel.active {
    display: grid;
    align-content: center;
}

.sales-use-panel h3 {
    margin: 0;
    color: var(--ink);
    font-size: clamp(24px, 2.8vw, 34px);
    line-height: 1.08;
}

.sales-use-panel p:not(.sales-kicker) {
    max-width: 760px;
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.7;
}

.sales-use-panel ul {
    display: grid;
    gap: 8px;
    max-width: 760px;
    margin: 16px 0 0;
    padding-left: 20px;
    color: var(--muted);
    line-height: 1.55;
}

.sales-use-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.sales-use-actions .button,
.sales-use-actions .ghost-button {
    min-height: 40px;
    padding: 0 14px;
    font-size: 12px;
}

.sales-info-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0;
    overflow: hidden;
}

.sales-info-band article {
    padding: 30px;
}

.sales-info-band article + article {
    border-left: 1px solid var(--line);
    background: var(--soft);
}

.sales-certificates {
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: center;
    padding: 30px;
}

.sales-certificates-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 22px;
}

.sales-certificates-copy {
    position: relative;
    max-width: 760px;
}

.sales-certificate-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 0 0 auto;
}

.sales-certificate-carousel {
    min-width: 0;
}

.sales-certificate-gallery {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 2px 2px 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    touch-action: pan-y;
    user-select: none;
}

.sales-certificate-gallery::-webkit-scrollbar {
    display: none;
}

.sales-certificate-card {
    position: relative;
    flex: 0 0 calc((100% - 72px) / 5);
    min-width: 180px;
    display: flex;
    scroll-snap-align: start;
}

.sales-certificate-thumb {
    width: 100%;
    min-width: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 9px;
    color: var(--ink);
    font: inherit;
    cursor: pointer;
    text-align: left;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.sales-certificate-thumb:hover,
.sales-certificate-thumb:focus-visible {
    border-color: var(--accent);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}

.sales-certificate-thumb:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 24%, transparent);
    outline-offset: 2px;
}

.sales-certificate-thumb img {
    width: 100%;
    aspect-ratio: 3 / 4;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: var(--soft);
    object-fit: contain;
}

.sales-certificate-thumb span {
    min-height: 34px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.35;
}

.sales-certificate-gallery.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.sales-certificate-gallery.dragging .sales-certificate-thumb,
.sales-certificate-gallery.dragging .sales-certificate-thumb * {
    cursor: grabbing;
}

.sales-process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.sales-process-card {
    min-height: 184px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.sales-process-card > span {
    display: block;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 28px;
    font-weight: 300;
    line-height: 1;
}

.sales-guide {
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: 26px;
    align-items: center;
    padding: 30px;
}

.sales-guide-copy {
    position: relative;
}

.sales-guide-body p {
    max-width: 610px;
    margin: 18px 0 0;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.72;
}

.sales-guide-action {
    width: fit-content;
    margin-top: 22px;
}

.sales-guide-action[hidden] {
    display: none;
}

.sales-guide-table {
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.sales-guide-option {
    display: grid;
    grid-template-columns: 128px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
    padding: 15px 18px;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: background .18s ease, box-shadow .18s ease, color .18s ease;
}

.sales-guide-option:nth-child(even) {
    background: var(--soft);
}

.sales-guide-option:last-child {
    border-bottom: 0;
}

.sales-guide-option:focus-visible {
    outline: 3px solid color-mix(in srgb, var(--accent) 24%, transparent);
    outline-offset: -3px;
}

.sales-guide-option.active {
    background: color-mix(in srgb, var(--accent) 8%, #ffffff);
    box-shadow: inset 4px 0 0 var(--accent);
}

.sales-guide-option-action {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    justify-self: end;
    border: 1px solid color-mix(in srgb, var(--accent) 24%, var(--line));
    border-radius: 999px;
    background: #ffffff;
    color: var(--accent-dark);
    font-size: 11px;
    line-height: 1;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease;
}

.sales-guide-option:focus-visible .sales-guide-option-action {
    border-color: var(--accent);
}

@media (hover: hover) and (pointer: fine) {
    .sales-guide-option:hover .sales-guide-option-action {
        border-color: var(--accent);
        color: var(--accent-dark);
        transform: translateX(2px);
    }
}

.sales-guide-option.active .sales-guide-option-action {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--button-text);
    transform: translateX(2px);
}

.sales-guide-table strong {
    color: var(--ink);
    font-size: 16px;
}

.sales-guide-table span {
    display: grid;
    gap: 5px;
    color: var(--muted);
}

.sales-guide-table span b {
    color: var(--ink);
    font-size: 13px;
    font-weight: 500;
}

.sales-guide-table span em {
    color: var(--muted);
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

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

.sales-faq-card {
    min-height: 154px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.sales-final-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    background: linear-gradient(135deg, var(--soft), #ffffff);
    padding: 30px;
}

.sales-final-cta .sales-hero-actions {
    margin-top: 0;
}

.home-columns-section {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.home-blog-section,
.news-section,
.vendor-section {
    display: grid;
    gap: 18px;
}

.home-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px;
}

.home-blog-card {
    position: relative;
    display: grid;
    grid-template-rows: auto 1fr auto;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 0;
    background: #ffffff;
}

.home-blog-media {
    display: block;
    aspect-ratio: 1.93;
    overflow: hidden;
    background: var(--soft);
}

.home-blog-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .24s ease;
}

.home-blog-card:hover .home-blog-media img {
    transform: scale(1.03);
}

.home-blog-body {
    padding: 16px 20px 18px;
}

.home-blog-body h3 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 400;
}

.home-blog-body h3 a:hover {
    color: var(--accent-dark);
}

.home-blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 7px 10px;
    margin-bottom: 12px;
    color: #9a9a9a;
    font-size: 13px;
}

.home-blog-meta span + span {
    border-left: 1px solid var(--line);
    padding-left: 10px;
}

.home-blog-body p {
    margin: 0;
    color: #8f9a9d;
    line-height: 1.45;
}

.home-blog-footer {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 0 20px;
    color: #9aa3a5;
    font-size: 13px;
}

.home-blog-more {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: #8b9395;
    font-size: 20px;
    line-height: 1;
}

.home-blog-more:hover {
    border-color: var(--accent);
    color: var(--accent-dark);
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.promo-tile {
    min-height: 230px;
    display: flex;
    align-items: end;
    border-radius: 8px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.promo-tile div {
    width: 100%;
    padding: 22px;
    background: linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
}

.promo-tile h3 {
    margin: 0 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 27px;
}

.brand-row,
.vendor-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.brand-pill,
.vendor-card {
    min-height: 78px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    color: var(--muted);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 21px;
    font-weight: 800;
    box-shadow: var(--shadow-soft);
}

.tabbed-products {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.product-column {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.product-column h3 {
    margin: 0;
    padding: 16px 18px;
    border-bottom: 1px solid var(--line);
    font-size: 17px;
}

.product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease;
}

.product-card:hover {
    border-color: #d5d6da;
    box-shadow: var(--shadow-hover);
    transform: translateY(-2px);
}

.product-media {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(180deg, #ffffff, var(--soft));
    overflow: hidden;
}

.product-media a {
    display: block;
    width: 100%;
    height: 100%;
}

.product-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: opacity .28s ease, transform .28s ease;
}

.product-image-placeholder {
    display: flex;
    width: 100%;
    height: 100%;
    min-height: 160px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 8px;
    color: #8a8f98;
    background: linear-gradient(180deg, #ffffff, #f3f5f1);
    text-align: center;
}

.product-image-placeholder i {
    font-size: 34px;
}

.product-image-placeholder span {
    font-size: 13px;
    font-weight: 700;
}

.product-primary-image {
    opacity: 1;
}

.product-hover-image {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.product-card.has-hover:hover .product-primary-image {
    opacity: 0;
}

.product-card.has-hover:hover .product-hover-image {
    opacity: 1;
}

.product-card:hover .product-media img {
    transform: scale(1.03);
}

.product-badge {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    border-radius: var(--radius-sm);
    background: var(--badge);
    color: var(--badge-text);
    padding: 6px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 15px 14px 12px;
}

.product-meta {
    display: none;
    margin: 0 0 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.product-title-row {
    display: flex;
    gap: 12px;
    align-items: start;
    min-height: 49px;
    padding-bottom: 5px;
    width: 100%;
}

.product-title {
    flex: 1;
    margin: 0;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 800;
}

.price {
    display: flex;
    gap: 9px;
    align-items: baseline;
    color: var(--price);
    font-weight: 900;
}

.product-card .price {
    margin-top: auto;
    padding-bottom: 8px;
    font-size: 15px;
}

.product-list-description {
    display: none;
}

.product-swatches {
    min-height: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 2px;
}

.product-swatches span {
    width: 11px;
    height: 11px;
    display: block;
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 999px;
}

.old-price {
    color: var(--old-price);
    font-size: 14px;
    text-decoration: line-through;
}

.price-on-request {
    color: var(--accent-dark);
    font-weight: 850;
}

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

.product-cart-icon {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--cart) 38%, var(--line));
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--cart) 10%, #ffffff);
    color: var(--cart);
    cursor: pointer;
    padding: 0;
    transition: background .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}

.product-cart-icon:hover,
.product-cart-icon:focus-visible {
    border-color: var(--cart);
    background: var(--cart);
    color: var(--cart-text);
    transform: translateY(-1px);
}

.product-price-inquiry {
    text-decoration: none;
}

.card-actions {
    display: flex;
    gap: 8px;
    margin-top: 14px;
}

.card-actions form {
    flex: 1;
}

.card-actions form .button {
    width: 100%;
}

.card-actions .button,
.card-actions .ghost-button {
    flex: 1;
    min-height: 38px;
    padding: 0 10px;
    font-size: 13px;
}

.split {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr);
    gap: 38px;
    align-items: start;
}

.product-page-media {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--soft);
}

.product-page-media img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.product-summary {
    position: sticky;
    top: 112px;
}

.product-summary h1 {
    margin: 0 0 12px;
    font-size: clamp(32px, 5vw, 54px);
    line-height: 1.02;
}

.product-copy {
    color: var(--muted);
    line-height: 1.8;
}

.quantity-row {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.quantity-row input {
    width: 96px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0 14px;
    font: inherit;
}

.product-detail-breadcrumb .blog-breadcrumb-inner {
    min-height: 74px;
    justify-content: space-between;
    gap: 24px;
}

.product-detail-breadcrumb-title {
    min-width: 0;
    color: var(--muted);
    font-size: 22px;
    line-height: 1.2;
    font-weight: 400;
}

.product-detail-breadcrumb strong {
    color: #000000;
    font-weight: 400;
    min-width: 0;
}

.product-detail-shell {
    width: min(1180px, calc(100% - 32px));
    max-width: 100%;
    min-width: 0;
    margin: 0 auto;
    padding: 30px 0 72px;
    display: grid;
    grid-template-columns: 270px minmax(0, 1fr);
    gap: 30px;
    align-items: start;
}

.product-detail-sidebar {
    display: grid;
    gap: 20px;
}

.product-side-box,
.product-side-service {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
}

.product-side-box {
    padding: 20px 18px 16px;
}

.product-side-box h2 {
    margin: 0 0 17px;
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.product-side-category-list {
    display: grid;
    gap: 0;
}

.product-side-category {
    min-height: 36px;
    display: grid;
    grid-template-columns: 25px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.25;
    min-width: 0;
}

.product-side-category:last-child {
    border-bottom: 0;
}

.product-side-category:hover,
.product-side-category.active {
    color: #000000;
}

.product-side-category-icon {
    width: 25px;
    height: 25px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 50%;
    background: var(--accent);
    color: var(--button-text);
    font-size: 11px;
}

.product-side-category:hover .product-side-category-icon,
.product-side-category.active .product-side-category-icon {
    background: var(--accent-dark);
}

.product-side-category > span:not(.product-side-category-icon) {
    min-width: 0;
    overflow-wrap: anywhere;
}

.product-side-category em {
    color: #000000;
    font-style: normal;
    font-size: 12px;
}

.product-side-banner {
    display: block;
    overflow: hidden;
    background: rgba(242, 242, 243, .4);
    padding: 17px 15px 0;
    text-align: center;
}

.product-side-banner span {
    display: block;
    margin-bottom: 14px;
}

.product-side-banner strong,
.product-side-banner small {
    display: block;
}

.product-side-banner strong {
    margin-bottom: 7px;
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.product-side-banner small {
    color: var(--muted);
    line-height: 1.45;
}

.product-side-banner img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: var(--radius-sm);
}

.product-side-banner b {
    min-width: 132px;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: #000000;
    color: #ffffff;
    padding: 0 18px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    transform: translateY(-18px);
}

.product-side-service {
    min-height: 92px;
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 14px;
}

.product-side-service-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--button-text);
    font-size: 22px;
}

.product-side-service strong,
.product-side-service small {
    display: block;
}

.product-side-service strong {
    margin-bottom: 6px;
    color: #000000;
    font-size: 15px;
    line-height: 1.2;
}

.product-side-service small {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.45;
}

.product-detail-main {
    min-width: 0;
}

.product-detail-hero {
    display: grid;
    grid-template-columns: minmax(0, 52%) minmax(330px, 1fr);
    gap: 30px;
    align-items: start;
    min-width: 0;
}

.product-detail-gallery {
    position: relative;
    min-width: 0;
}

.product-detail-gallery > .store-admin-actions,
.article-detail > .store-admin-actions {
    right: 12px;
    bottom: 12px;
    left: auto;
}

.product-detail-image {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    cursor: zoom-in;
}

.product-detail-image img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    padding: 10px;
    transform-origin: center;
    transition: transform .22s ease;
    will-change: transform;
}

.product-detail-image.product-image-placeholder {
    aspect-ratio: 1;
    cursor: default;
}

@media (hover: hover) and (pointer: fine) {
    .product-detail-image.zooming img {
        transform: scale(1.85);
    }
}

.product-detail-zoom {
    position: absolute;
    top: 13px;
    left: 13px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .92);
    color: #000000;
    padding: 0;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .08);
}

.product-detail-thumbs {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.product-detail-thumb {
    position: relative;
    flex: 0 0 74px;
    width: 74px;
    height: 74px;
    min-width: 74px;
    min-height: 74px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 0;
    overflow: hidden;
    line-height: 0;
    cursor: pointer;
    transition: border-color .18s ease, outline-color .18s ease;
}

.product-detail-thumb.active {
    border-color: transparent;
    outline: 2px solid #000000;
    outline-offset: -2px;
}

.product-detail-thumb img {
    position: absolute;
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    max-width: none;
    object-fit: contain;
}

.product-detail-specs {
    margin: 0 0 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 16px 0;
}

.product-detail-specs h2 {
    margin: 0 0 11px;
    color: #000000;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 500;
}

.product-detail-spec-list {
    display: grid;
    gap: 8px;
}

.product-detail-spec-row {
    min-width: 0;
    display: grid;
    grid-template-columns: minmax(120px, .68fr) minmax(0, 1fr);
    gap: 12px;
    align-items: start;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.product-detail-spec-row span {
    color: #000000;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.product-detail-spec-row strong {
    color: var(--muted);
    font-weight: 500;
    overflow-wrap: anywhere;
}

.product-detail-spec-row.is-plain {
    grid-template-columns: 1fr;
}

.product-detail-spec-row.is-plain strong {
    color: #000000;
    font-weight: 500;
}

.product-detail-meta {
    margin-top: 18px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.75;
}

.product-detail-meta p {
    margin: 0;
}

.product-detail-meta span {
    color: #000000;
    font-weight: 800;
}

.product-detail-info {
    min-width: 0;
    color: var(--muted);
}

.product-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 13px;
}

.product-detail-info h1 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #000000;
    font-size: 30px;
    line-height: 1.18;
    font-weight: 300;
    overflow-wrap: anywhere;
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--price);
    font-size: 22px;
    font-weight: 800;
}

.product-detail-price .old-price {
    color: var(--old-price);
    font-size: 16px;
    font-weight: 600;
}

.product-detail-description {
    margin: 0 0 19px;
    max-width: 420px;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

.product-detail-guide {
    margin: 0 0 20px;
    border: 1px solid color-mix(in srgb, var(--accent) 18%, var(--line));
    border-radius: var(--radius-md);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 8%, transparent), transparent 42%),
        #ffffff;
    padding: 18px;
}

.product-detail-guide-head {
    margin-bottom: 14px;
}

.product-detail-guide-head span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    margin-bottom: 7px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 14%, #ffffff);
    color: var(--accent-dark);
    padding: 0 10px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.product-detail-guide-head h2 {
    margin: 0 0 8px;
    color: #000000;
    font-size: 20px;
    line-height: 1.25;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.product-detail-guide-head p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.65;
}

.product-detail-guide-matches {
    display: grid;
    gap: 7px;
    margin-bottom: 14px;
}

.product-detail-guide-matches strong {
    color: #000000;
    font-size: 13px;
    line-height: 1.2;
}

.product-detail-guide-matches span {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-detail-guide-matches b {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    border: 1px solid color-mix(in srgb, var(--accent) 22%, var(--line));
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 7%, #ffffff);
    color: #000000;
    padding: 0 9px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1;
}

.product-detail-guide-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.product-detail-guide-card {
    min-width: 0;
    display: grid;
    grid-template-columns: 30px minmax(0, 1fr);
    gap: 3px 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, .82);
    padding: 12px;
}

.product-detail-guide-card:last-child {
    grid-column: 1 / -1;
}

.product-detail-guide-card i {
    grid-row: span 3;
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-sm);
    background: var(--accent);
    color: var(--button-text);
    font-size: 14px;
}

.product-detail-guide-card span {
    color: var(--muted);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .05em;
    line-height: 1.2;
    text-transform: uppercase;
}

.product-detail-guide-card strong {
    color: #000000;
    font-size: 13px;
    line-height: 1.25;
}

.product-detail-guide-card p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.product-detail-status {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 19px;
    color: var(--muted);
    font-size: 14px;
}

.product-detail-status span {
    color: var(--ink);
    font-weight: 800;
}

.product-detail-status strong {
    color: var(--success);
    font-weight: 800;
}

.product-detail-status .status-out_of_stock {
    color: var(--danger);
}

.product-detail-status .status-preorder {
    color: var(--warning);
}

.product-detail-status small {
    color: var(--muted);
}

.product-detail-cart {
    margin: 0 0 12px;
}

.product-detail-cart label {
    display: block;
    margin-bottom: 9px;
    color: #000000;
    font-size: 13px;
    font-weight: 800;
}

.product-detail-purchase {
    display: grid;
    grid-template-columns: 124px minmax(0, 1fr);
    gap: 12px;
}

.product-detail-quantity {
    min-height: 44px;
    grid-template-columns: 34px 1fr 34px;
    border-radius: var(--radius-sm);
}

.product-detail-quantity button {
    width: 34px;
}

.product-detail-quantity input {
    width: 100%;
    min-width: 0;
    padding: 0;
}

.product-detail-cart-button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--cart);
    color: var(--cart-text);
    padding: 0 22px;
    font: inherit;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.product-detail-cart-button:hover {
    background: var(--cart-dark);
    transform: translateY(-1px);
}

.product-detail-cart-button i {
    font-size: 19px;
    line-height: 1;
}

.product-inquiry-button {
    text-decoration: none;
}

.product-detail-wishlist-form {
    margin: 0 0 18px;
}

.product-detail-wishlist {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    background: transparent;
    color: #000000;
    padding: 0;
    font: inherit;
    font-size: 14px;
    cursor: pointer;
}

.product-detail-wishlist i {
    color: #000000;
    font-size: 18px;
    line-height: 1;
}

.product-detail-delivery {
    display: grid;
    gap: 10px;
    margin: 16px 0 18px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 15px 0;
}

.product-detail-delivery div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.product-detail-delivery span {
    color: var(--muted);
}

.product-detail-delivery strong {
    color: #000000;
    font-weight: 800;
}

.product-detail-countdown {
    display: inline-flex;
    align-items: baseline;
    gap: 5px;
}

.product-detail-countdown b {
    min-width: 24px;
    color: #000000;
}

.product-detail-countdown i {
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
}

.product-detail-share {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.product-detail-share a {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-sm);
    color: #ffffff;
    padding: 0 9px;
    font-size: 13px;
    line-height: 1;
}

.product-detail-share .share-facebook {
    background: #3b5998;
}

.product-detail-share .share-twitter {
    background: #1da1f2;
}

.product-detail-share .share-pinterest {
    background: #e60023;
}

.product-detail-tabs {
    margin-top: 30px;
    min-width: 0;
    max-width: 100%;
}

.product-detail-tabs > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.product-detail-tab-nav {
    display: flex;
    align-items: stretch;
    border-bottom: 0;
    max-width: 100%;
}

.product-detail-tab-nav label {
    position: relative;
    z-index: 1;
    min-width: 185px;
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    background: #f3f3f3;
    color: #8a8a8a;
    padding: 0 18px;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    cursor: pointer;
}

.product-detail-tab-nav label + label {
    margin-left: -1px;
}

#product-tab-guide:checked ~ .product-detail-tab-nav label[for="product-tab-guide"],
#product-tab-description:checked ~ .product-detail-tab-nav label[for="product-tab-description"],
#product-tab-custom:checked ~ .product-detail-tab-nav label[for="product-tab-custom"],
#product-tab-reviews:checked ~ .product-detail-tab-nav label[for="product-tab-reviews"] {
    z-index: 2;
    border-bottom-color: #ffffff;
    background: #ffffff;
    color: #8a8a8a;
}

.product-detail-tab-panels {
    border: 1px solid var(--line);
    border-radius: 0 var(--radius-md) var(--radius-md) var(--radius-md);
    background: #ffffff;
    margin-top: -1px;
    padding: 32px 40px;
    min-width: 0;
    max-width: 100%;
}

.product-detail-tab-panel {
    display: none;
    color: var(--muted);
    font-size: 14px;
    line-height: 1.8;
    min-width: 0;
    overflow-wrap: anywhere;
}

#product-tab-guide:checked ~ .product-detail-tab-panels .tab-guide,
#product-tab-description:checked ~ .product-detail-tab-panels .tab-description,
#product-tab-custom:checked ~ .product-detail-tab-panels .tab-custom,
#product-tab-reviews:checked ~ .product-detail-tab-panels .tab-reviews {
    display: block;
}

.product-detail-tab-panel .product-detail-guide-tab {
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.product-detail-tab-panel .product-detail-guide-head {
    max-width: 760px;
    margin-bottom: 20px;
}

.product-detail-tab-panel .product-detail-guide-head h2 {
    font-size: 24px;
}

.product-detail-tab-panel .product-detail-guide-head p {
    font-size: 14px;
    line-height: 1.8;
}

.product-detail-tab-panel .product-detail-guide-matches {
    margin-bottom: 18px;
}

.product-detail-tab-panel .product-detail-guide-grid {
    gap: 14px;
}

.product-detail-tab-panel .product-detail-guide-card {
    padding: 16px;
}

.product-detail-tab-panel p {
    margin: 0 0 14px;
}

.product-detail-tab-panel h3 {
    margin: 22px 0 10px;
    color: #000000;
    font-size: 18px;
    font-weight: 400;
}

.product-detail-tab-panel ul {
    margin: 0;
    padding-left: 20px;
}

.product-detail-tab-panel .rich-image-resizer,
.article-body-text .rich-image-resizer {
    max-width: 100%;
    display: block;
    margin: 18px 0;
}

.product-detail-tab-panel img,
.article-body-text img,
.product-detail-tab-panel .rich-image-resizer img,
.article-body-text .rich-image-resizer img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius-md);
}

.product-detail-tab-panel table,
.article-body-text table,
.product-detail-tab-panel .rich-content-table,
.article-body-text .rich-content-table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
}

.product-detail-tab-panel table th,
.product-detail-tab-panel table td,
.article-body-text table th,
.article-body-text table td,
.product-detail-tab-panel .rich-content-table th,
.product-detail-tab-panel .rich-content-table td,
.article-body-text .rich-content-table th,
.article-body-text .rich-content-table td {
    border: 1px solid var(--line);
    padding: 10px 12px;
    vertical-align: top;
}

.product-detail-tab-panel table th,
.article-body-text table th,
.product-detail-tab-panel .rich-content-table th,
.article-body-text .rich-content-table th {
    background: var(--soft);
    color: #000000;
    font-weight: 500;
}

.product-detail-related {
    margin-top: 34px;
    min-width: 0;
    max-width: 100%;
}

.product-detail-section-head {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
    min-width: 0;
}

.product-detail-section-head h2 {
    margin: 0;
    color: #000000;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 300;
}

.product-detail-related-arrows {
    display: inline-flex;
    gap: 7px;
}

.product-detail-related-arrows span {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: #000000;
    font-size: 20px;
    line-height: 1;
}

.product-detail-related .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px;
    min-width: 0;
}

.product-detail-related-carousel {
    min-width: 0;
    position: relative;
}

.product-detail-related-track {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    min-width: 0;
}

@media (min-width: 861px) {
    .product-detail-related-track {
        display: flex;
        gap: 24px;
        overflow-x: auto;
        overscroll-behavior-x: contain;
        scroll-snap-type: x proximity;
        scroll-behavior: smooth;
        cursor: grab;
        padding: 2px 2px 12px;
        scrollbar-width: none;
        -ms-overflow-style: none;
        touch-action: pan-y;
        user-select: none;
    }

    .product-detail-related-track::-webkit-scrollbar {
        display: none;
    }

    .product-detail-related-track .product-card {
        flex: 0 0 calc((100% - 48px) / 3);
        min-width: 0;
        cursor: grab;
        scroll-snap-align: start;
        box-shadow: none;
    }

    .product-detail-related-track .product-card:hover {
        transform: none;
        box-shadow: var(--shadow-hover);
    }

    .product-detail-related-track .product-card a,
    .product-detail-related-track .product-card img {
        cursor: grab;
    }

    .product-detail-related-track .product-tools button,
    .product-detail-related-track .product-cart-form button,
    .product-detail-related-track .store-admin-actions a,
    .product-detail-related-track .store-admin-actions button {
        cursor: pointer;
    }

    .product-detail-related-track.dragging {
        cursor: grabbing;
        scroll-behavior: auto;
        scroll-snap-type: none;
    }

    .product-detail-related-track.dragging .product-card,
    .product-detail-related-track.dragging .product-card * {
        cursor: grabbing;
    }

    .product-detail-related-track .product-title-row {
        min-height: 42px;
        gap: 10px;
    }

    .product-detail-related-track .product-title {
        font-size: 14px;
        line-height: 1.38;
        font-weight: 600;
    }

    .product-detail-related-track .product-body {
        padding: 13px 13px 12px;
    }

    .product-detail-related-track .product-cart-icon {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 861px) and (max-width: 1180px) {
    .product-detail-related-track {
        gap: 18px;
    }

    .product-detail-related-track .product-card {
        flex-basis: calc((100% - 36px) / 3);
    }
}

.product-gallery-backdrop {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .82);
    padding: 28px;
}

.product-gallery-backdrop.open {
    display: flex;
}

.product-gallery-modal {
    position: relative;
    width: min(1180px, 100%);
    min-height: min(720px, calc(100dvh - 56px));
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    align-items: center;
    justify-items: center;
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 24px 70px 20px;
    box-shadow: 0 28px 90px rgba(0, 0, 0, .38);
}

.product-gallery-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #000000;
    padding: 0;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
}

.product-gallery-stage {
    width: 100%;
    min-height: 0;
    display: grid;
    place-items: center;
}

.product-gallery-stage img {
    max-width: 100%;
    max-height: min(70dvh, 650px);
    object-fit: contain;
}

.product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: #000000;
    padding: 0;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transform: translateY(-50%);
}

.product-gallery-arrow:disabled {
    opacity: .35;
    cursor: default;
}

.product-gallery-prev {
    left: 14px;
}

.product-gallery-next {
    right: 14px;
}

.product-gallery-foot {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding-top: 14px;
}

.product-gallery-counter {
    min-width: 58px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

.product-gallery-thumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.product-gallery-thumbs button {
    width: 56px;
    height: 56px;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 3px;
    cursor: pointer;
}

.product-gallery-thumbs button.active {
    border-color: #000000;
}

.product-gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.article-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.article-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.article-card h3 {
    margin: 0 0 10px;
}

.article-card--legal {
    max-width: 960px;
    padding: clamp(24px, 4vw, 46px);
    border-color: rgba(0, 0, 0, .08);
    box-shadow: 0 18px 44px rgba(28, 34, 36, .07);
}

.article-card--legal > h2 {
    margin: 0 0 18px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 300;
    line-height: 1.12;
}

.legal-copy {
    max-width: 780px;
    color: #343637;
    font-size: 15px;
    line-height: 1.78;
}

.legal-copy p {
    margin: 0 0 15px;
}

.legal-copy a {
    color: var(--accent);
    text-decoration: none;
}

.legal-copy a:hover {
    color: var(--accent-dark);
    text-decoration: underline;
}

.legal-copy h3 {
    margin: 30px 0 12px;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.28;
}

.legal-copy ul {
    display: grid;
    gap: 9px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.legal-copy li {
    position: relative;
    padding-left: 22px;
}

.legal-copy li::before {
    content: "";
    position: absolute;
    left: 0;
    top: .74em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--accent);
}

.legal-lead {
    color: #232526;
    font-size: 16px;
    line-height: 1.72;
}

.legal-meta {
    margin-bottom: 22px;
    color: var(--muted);
    font-size: 13px;
    letter-spacing: .01em;
    text-transform: uppercase;
}

.legal-note {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
}

.legal-doc-links {
    margin-top: 22px;
}

.legal-doc-links li {
    padding-left: 0;
}

.legal-doc-links li::before {
    display: none;
}

.legal-doc-links a {
    display: inline-block;
    margin-bottom: 3px;
    color: var(--ink);
    font-weight: 500;
}

.legal-doc-links span {
    display: block;
    color: var(--muted);
    line-height: 1.62;
}

.legal-doc-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 28px 0 26px;
}

.legal-doc-card {
    min-height: 174px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff 0%, #fbfbfb 100%);
    padding: 20px;
    color: var(--ink);
    text-decoration: none;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.legal-doc-card:hover {
    border-color: color-mix(in srgb, var(--accent) 42%, var(--line));
    box-shadow: 0 14px 30px rgba(28, 34, 36, .08);
    text-decoration: none;
    transform: translateY(-2px);
}

.legal-doc-card span {
    display: inline-flex;
    align-items: center;
    min-height: 22px;
    border-radius: 999px;
    background: color-mix(in srgb, var(--accent) 9%, #ffffff);
    color: var(--accent-dark);
    padding: 0 9px;
    font-size: 12px;
    line-height: 1;
}

.legal-doc-card strong {
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.22;
}

.legal-doc-card small {
    color: var(--muted);
    font-size: 14px;
    line-height: 1.55;
}

.legal-doc-card em {
    margin-top: auto;
    color: var(--accent);
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
}

.legal-requisites {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.legal-requisites dl {
    display: grid;
    gap: 10px;
    margin: 0;
}

.legal-requisites dl > div {
    display: grid;
    grid-template-columns: minmax(150px, .42fr) minmax(0, 1fr);
    gap: 16px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .06);
}

.legal-requisites dt {
    color: var(--muted);
    font-weight: 400;
}

.legal-requisites dd {
    margin: 0;
    color: var(--ink);
}

@media (max-width: 640px) {
    .article-card--legal {
        padding: 22px 18px;
    }

    .article-card--legal > h2 {
        font-size: 27px;
    }

    .legal-copy {
        max-width: none;
        font-size: 14px;
        line-height: 1.72;
    }

    .legal-copy h3 {
        margin-top: 24px;
        font-size: 18px;
    }

    .legal-doc-cards {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .legal-doc-card {
        min-height: 0;
        padding: 17px;
    }

    .legal-requisites dl > div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}

.blog-breadcrumb {
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.blog-breadcrumb-inner {
    width: min(1180px, calc(100% - 32px));
    min-height: 66px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.blog-breadcrumb h1 {
    min-width: 0;
    margin: 0;
    color: var(--muted);
    font-size: 28px;
    line-height: 1.15;
    font-weight: 400;
}

.blog-crumbs {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--muted);
    font-size: 13px;
}

.blog-crumbs a:hover {
    color: var(--accent-dark);
}

.blog-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 50px 0 58px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 30px;
    align-items: start;
}

.blog-shell.article-shell {
    grid-template-columns: 280px minmax(0, 1fr);
}

.blog-main,
.article-main {
    min-width: 0;
}

.blog-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.blog-list.compact {
    gap: 22px;
}

.blog-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(173, 199, 10, .55);
    box-shadow: var(--shadow-hover);
}

.blog-card-media {
    position: relative;
    display: block;
    aspect-ratio: 1.93;
    overflow: hidden;
    background: var(--soft);
}

.blog-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.blog-card:hover .blog-card-media img {
    transform: scale(1.035);
}

.blog-card-date {
    position: absolute;
    top: 14px;
    left: 14px;
    width: 58px;
    min-height: 58px;
    display: grid;
    place-items: center;
    gap: 0;
    border: 1px solid rgba(0, 0, 0, .05);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, .96);
    color: #000000;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.blog-card-date strong {
    display: block;
    font-size: 22px;
    line-height: 1;
}

.blog-card-date span {
    display: block;
    margin-top: -8px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 22px 24px 26px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 14px;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: 13px;
}

.blog-card-meta span + span {
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.blog-card h2 {
    margin: 0 0 12px;
    color: #000000;
    font-size: 24px;
    line-height: 1.25;
    font-weight: 400;
}

.blog-card h2 a:hover {
    color: var(--accent-dark);
}

.blog-card p {
    margin: 0 0 18px;
    color: var(--muted);
    line-height: 1.75;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #000000;
    font-size: 12px;
    font-weight: 850;
    text-transform: uppercase;
}

.blog-read-more::after {
    content: "";
    width: 22px;
    height: 2px;
    background: var(--accent);
    transition: width .2s ease;
}

.blog-read-more:hover::after {
    width: 34px;
}

.blog-pagination {
    margin-top: 28px;
}

.blog-sidebar {
    display: grid;
    gap: 24px;
}

.blog-side-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 22px;
    box-shadow: var(--shadow-soft);
}

.blog-side-box h2 {
    margin: 0 0 18px;
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 400;
}

.blog-side-box p {
    margin: 0;
    line-height: 1.6;
}

.blog-category-list,
.blog-recent-list,
.blog-tag-list {
    display: grid;
    gap: 10px;
}

.blog-category-link {
    min-height: 38px;
    display: grid;
    grid-template-columns: 26px 1fr auto;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
    color: var(--muted);
}

.blog-category-link:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.blog-category-link img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.blog-category-link em {
    font-style: normal;
    color: var(--accent-dark);
    font-weight: 800;
}

.blog-category-link:hover,
.blog-recent-post:hover strong {
    color: var(--accent-dark);
}

.blog-recent-post {
    min-width: 0;
    display: grid;
    grid-template-columns: 74px 1fr;
    align-items: center;
    gap: 12px;
    color: var(--muted);
}

.blog-recent-post img {
    width: 74px;
    height: 56px;
    border-radius: var(--radius-md);
    object-fit: cover;
    background: var(--soft);
}

.blog-recent-post strong,
.blog-recent-post small {
    display: block;
}

.blog-recent-post strong {
    color: #000000;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 700;
}

.blog-recent-post small {
    margin-top: 5px;
    color: var(--muted);
}

.blog-tag-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-tag-list a {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0 10px;
    color: var(--muted);
    font-size: 13px;
}

.blog-tag-list a:hover {
    border-color: var(--accent);
    color: #000000;
}

.article-detail {
    position: relative;
}

.article-detail-head {
    padding: 0 0 24px;
}

.article-detail-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin: 0 0 16px;
}

.article-detail-head h2 {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    color: #000000;
    font-size: 34px;
    line-height: 1.16;
    font-weight: 600;
}

.article-info-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 9px 14px;
    color: var(--muted);
    font-size: 14px;
}

.article-info-row > * + * {
    padding-left: 14px;
    border-left: 1px solid var(--line);
}

.article-info-row a:hover {
    color: var(--accent-dark);
}

.article-hero-image {
    margin: 0;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    background: var(--soft);
    aspect-ratio: 1.93;
}

.article-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body-card {
    border: 1px solid var(--line);
    border-top: 0;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: #ffffff;
    padding: 30px;
    box-shadow: var(--shadow-soft);
}

.article-body-text {
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.article-body-text p {
    margin: 0 0 20px;
}

.article-body-text p:first-child {
    color: #000000;
    font-size: 18px;
    line-height: 1.75;
}

.article-body-text blockquote {
    margin: 28px 0 6px;
    border-left: 4px solid var(--accent);
    padding: 8px 0 8px 20px;
    color: #000000;
    font-size: 20px;
    line-height: 1.55;
    font-weight: 400;
}

.article-sharebar {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    padding-top: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.article-sharebar span {
    margin-right: 4px;
    color: #000000;
    font-weight: 800;
}

.article-sharebar a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--radius-md);
    background: var(--soft);
    padding: 0 12px;
    font-size: 13px;
}

.article-sharebar a:hover {
    background: var(--accent);
    color: #000000;
}

.article-related,
.article-comment-card {
    margin-top: 34px;
}

.article-comment-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 28px;
    box-shadow: var(--shadow-soft);
}

.article-comment-card h2 {
    margin: 0 0 8px;
    color: #000000;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 400;
}

.article-comment-card p {
    margin: 0 0 22px;
    line-height: 1.7;
}

.article-comment-card form,
.article-comment-card label {
    display: grid;
    gap: 9px;
}

.article-comment-card form {
    gap: 18px;
}

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

.article-comment-card span {
    color: #000000;
    font-size: 13px;
    font-weight: 800;
}

.article-comment-card input,
.article-comment-card textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 12px 14px;
    color: var(--muted);
    font: inherit;
}

.article-comment-card textarea {
    min-height: 150px;
    resize: vertical;
}

.collection-breadcrumb .blog-breadcrumb-inner {
    min-height: 74px;
}

.collection-delivery-focus {
    width: min(1180px, calc(100% - 32px));
    margin: 22px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border: 1px solid color-mix(in srgb, var(--accent) 30%, var(--line));
    border-radius: var(--radius-lg);
    background:
        linear-gradient(135deg, color-mix(in srgb, var(--accent) 9%, #ffffff), #ffffff 54%),
        #ffffff;
    padding: 22px 24px;
    box-shadow: var(--shadow-soft);
}

.collection-delivery-copy {
    max-width: 760px;
}

.collection-delivery-copy span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.collection-delivery-copy h2 {
    margin: 8px 0 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 500;
    line-height: 1.12;
}

.collection-delivery-copy p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.62;
}

.collection-delivery-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 10px;
}

.collection-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 30px 0 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 30px;
    align-items: start;
}

.collection-main {
    min-width: 0;
}

.collection-shell.is-overview {
    grid-template-columns: minmax(0, 1fr);
}

.collection-toolbar {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.collection-view-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.collection-view-buttons button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    color: var(--muted);
    padding: 0;
}

.collection-view-buttons button.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #000000;
}

.collection-view-icon {
    width: 17px;
    height: 17px;
    display: block;
    font-size: 16px;
    line-height: 17px;
    text-align: center;
}

.collection-result-count {
    margin: 0 auto 0 0;
    color: var(--muted);
    font-size: 13px;
}

.collection-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 0 9px;
}

.collection-sort label {
    color: var(--muted);
    font-size: 12px;
}

.collection-sort select,
.collection-mobile-toolbar select {
    height: 34px;
    border: 0;
    background: transparent;
    color: var(--muted);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    outline: 0;
}

.collection-children {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 24px;
}

.collection-child-link {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    padding: 9px 11px;
    color: var(--muted);
    font-weight: 800;
}

.collection-child-link img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.collection-catalog-overview {
    display: grid;
    gap: 34px;
}

.catalog-category-section {
    min-width: 0;
}

.catalog-category-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.catalog-category-head h2 {
    margin: 0;
    color: var(--ink);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.18;
}

.catalog-category-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.catalog-category-carousel {
    min-width: 0;
}

.catalog-category-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
    cursor: grab;
    padding: 2px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    user-select: none;
}

.catalog-category-track::-webkit-scrollbar {
    display: none;
}

.catalog-category-track .product-card {
    flex: 0 0 calc((100% - 36px) / 3);
    min-width: 0;
    border-radius: var(--radius-sm);
    box-shadow: none;
    cursor: grab;
    scroll-snap-align: start;
}

.catalog-category-track .product-card:hover {
    transform: none;
    box-shadow: var(--shadow-hover);
}

.catalog-category-track .product-card a,
.catalog-category-track .product-card img {
    cursor: grab;
}

.catalog-category-track .product-tools button,
.catalog-category-track .product-cart-form button,
.catalog-category-track .store-admin-actions a,
.catalog-category-track .store-admin-actions button {
    cursor: pointer;
}

.catalog-category-track.dragging {
    cursor: grabbing;
    scroll-behavior: auto;
    scroll-snap-type: none;
}

.catalog-category-track.dragging .product-card,
.catalog-category-track.dragging .product-card * {
    cursor: grabbing;
}

@media (min-width: 861px) and (max-width: 1180px) {
    .catalog-category-track .product-card {
        flex-basis: calc((100% - 36px) / 3);
    }
}

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

.collection-product-grid .product-card {
    min-height: 100%;
    border-radius: var(--radius-sm);
    box-shadow: none;
}

.collection-product-grid .product-card:hover {
    transform: none;
    box-shadow: var(--shadow-hover);
}

.collection-product-grid .product-media {
    aspect-ratio: 1;
    background: #ffffff;
}

.collection-product-grid .product-body {
    position: relative;
    min-height: 104px;
    padding: 15px 44px 15px 14px;
}

.collection-product-grid .product-title-row {
    display: block;
    padding-bottom: 7px;
}

.collection-product-grid .product-title {
    font-size: 14px;
    font-weight: 400;
}

.collection-product-grid .product-cart-form {
    position: absolute;
    right: 12px;
    top: 16px;
}

.collection-product-grid .product-cart-icon {
    width: 32px;
    height: 32px;
    border-radius: 999px;
}

.collection-product-grid.is-list {
    grid-template-columns: 1fr;
    gap: 20px;
}

.collection-product-grid.is-list .product-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    min-height: 260px;
}

.collection-product-grid.is-list .product-media {
    min-height: 260px;
    aspect-ratio: auto;
}

.collection-product-grid.is-list .product-media img {
    height: 100%;
}

.collection-product-grid.is-list .product-body {
    min-height: 260px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 24px 108px 22px 24px;
}

.collection-product-grid.is-list .product-meta {
    display: block;
}

.collection-product-grid.is-list .product-title-row {
    display: block;
    min-height: 0;
    padding-bottom: 9px;
}

.collection-product-grid.is-list .product-title {
    font-size: 20px;
    line-height: 1.35;
    font-weight: 400;
}

.collection-product-grid.is-list .product-title a {
    display: -webkit-box;
    overflow: hidden;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.collection-product-grid.is-list .price {
    margin-top: 0;
    padding-bottom: 9px;
}

.collection-product-grid.is-list .product-list-description {
    display: block;
    max-width: 570px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.7;
}

.collection-product-grid.is-list .product-cart-form {
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
}

.collection-product-grid.is-list .product-cart-icon {
    width: 44px;
    height: 44px;
}

.collection-pagination,
.collection-infinite {
    margin-top: 30px;
    border-top: 1px solid var(--line);
    padding-top: 22px;
    text-align: center;
}

.collection-infinite {
    min-height: 94px;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 12px;
}

.collection-infinite.is-complete {
    min-height: auto;
}

.collection-loader {
    width: 28px;
    height: 28px;
    display: none;
    border: 3px solid color-mix(in srgb, var(--line) 76%, transparent);
    border-top-color: var(--accent);
    border-radius: 999px;
    animation: collection-spin .8s linear infinite;
}

.collection-infinite.loading .collection-loader {
    display: block;
}

.collection-load-status {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.collection-load-more {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 0 16px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 700;
}

.collection-load-more:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--button-text);
}

.collection-infinite.is-ready:not(.is-error) .collection-load-more,
.collection-infinite.is-complete .collection-load-more,
.collection-infinite.is-complete .collection-loader {
    display: none;
}

.collection-infinite.is-error .collection-load-more {
    display: inline-flex;
}

@keyframes collection-spin {
    to {
        transform: rotate(360deg);
    }
}

.collection-pager {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 7px;
}

.collection-pager a,
.collection-pager span {
    min-width: 28px;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 0 9px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1;
}

.collection-pager a:hover,
.collection-pager .active {
    border-color: var(--accent);
    background: var(--accent);
    color: #000000;
}

.collection-pager .disabled {
    opacity: .45;
    cursor: default;
}

.collection-pagination p {
    margin: 11px 0 0;
    color: var(--muted);
    font-size: 12px;
}

.collection-empty {
    grid-column: 1 / -1;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 26px;
}

.collection-empty h2 {
    margin: 0 0 8px;
    color: #000000;
    font-size: 24px;
}

.collection-empty p {
    margin: 0;
    line-height: 1.7;
}

.collection-sidebar {
    display: grid;
    gap: 20px;
}

.collection-filter-close {
    display: none;
}

.collection-side-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: #ffffff;
    padding: 20px 20px 18px;
}

.collection-side-box h2 {
    margin: 0 0 16px;
    color: #000000;
    font-size: 20px;
    line-height: 1.2;
    font-weight: 300;
}

.collection-filter-list {
    display: grid;
    gap: 0;
}

.collection-filter-link {
    min-height: 27px;
    display: grid;
    grid-template-columns: 14px 1fr auto;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
    line-height: 1.3;
    cursor: pointer;
}

.collection-filter-link:last-child {
    border-bottom: 0;
}

.collection-filter-link:hover,
.collection-filter-link.active {
    color: #000000;
}

.collection-filter-link em {
    color: var(--accent-dark);
    font-style: normal;
    font-weight: 800;
}

.fake-checkbox {
    width: 12px;
    height: 12px;
    border: 1px solid #bfc1c3;
    border-radius: 1px;
    background: #ffffff;
}

.collection-filter-link.active .fake-checkbox {
    border-color: var(--accent-dark);
    background: linear-gradient(135deg, var(--accent) 0 52%, #ffffff 52% 100%);
}

.collection-active-filters {
    gap: 7px;
}

.collection-active-filters a:last-child {
    border-color: color-mix(in srgb, var(--accent) 48%, var(--line));
    color: var(--accent-dark);
}

.collection-filter-empty {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.55;
}

.collection-specials {
    display: grid;
    gap: 14px;
}

.collection-specials a {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 10px;
    color: var(--muted);
}

.collection-specials img {
    width: 58px;
    height: 58px;
    object-fit: cover;
    background: var(--soft);
}

.collection-specials strong,
.collection-specials small,
.collection-specials del {
    display: block;
}

.collection-specials strong {
    color: #000000;
    font-size: 13px;
    line-height: 1.25;
    font-weight: 400;
}

.collection-specials small {
    margin-top: 5px;
    color: var(--price);
    font-size: 13px;
    font-weight: 800;
}

.collection-specials del {
    margin-top: 3px;
    color: var(--old-price);
    font-size: 12px;
}

.collection-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.collection-tags a {
    min-height: 25px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    padding: 0 8px;
    color: var(--muted);
    font-size: 12px;
}

.collection-tags a:hover {
    border-color: var(--accent);
    color: #000000;
}

.collection-mobile-toolbar {
    display: none;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.cart-table th,
.cart-table td {
    padding: 16px;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.cart-table tr:last-child td {
    border-bottom: 0;
}

.cart-table input {
    width: 84px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 0 10px;
    font: inherit;
}

.cart-table td[data-label="Цена"],
.cart-table td[data-label="Сумма"] {
    color: var(--price);
    font-weight: 800;
}

.cart-live-status {
    min-height: 20px;
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
    text-align: right;
}

.search-page {
    width: min(1180px, calc(100% - 32px));
    margin: 42px auto 58px;
}

.search-page-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    padding: 14px;
    box-shadow: var(--shadow-soft);
}

.search-page-form input {
    width: 100%;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    color: var(--ink);
    padding: 0 14px;
    font: inherit;
}

.search-summary {
    margin: 18px 0 0;
    color: var(--muted);
}

.search-summary strong {
    color: #000000;
    font-weight: 500;
}

.search-section {
    margin-top: 34px;
}

.search-category-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.search-category-links a {
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--ink);
    padding: 0 13px;
}

.search-category-links a:hover,
.search-category-links a:focus {
    border-color: var(--accent);
    color: var(--accent-dark);
}

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

.search-article-card {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.search-article-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.search-article-card div {
    padding: 16px;
}

.search-article-card p {
    margin: 0 0 7px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.search-article-card h3 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-size: 19px;
    font-weight: 300;
    line-height: 1.3;
}

.search-article-card span {
    display: block;
    margin-top: 9px;
    color: var(--muted);
    line-height: 1.55;
}

.notice {
    margin: 20px 0 0;
    border-radius: var(--radius-lg);
    background: var(--success-bg);
    color: var(--success);
    padding: 13px 15px;
    font-weight: 750;
}

.checkout-page {
    width: min(1180px, calc(100% - 32px));
    margin: 34px auto 58px;
}

.checkout-flow .announcement,
.checkout-flow .utility-bar,
.checkout-flow .site-header,
.checkout-flow .site-footer,
.checkout-flow .store-admin-add-panel {
    display: none;
}

.checkout-flow .checkout-page {
    min-height: 100vh;
    margin-top: 0;
    margin-bottom: 0;
    padding: 36px 0;
}

.checkout-layout,
.checkout-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 42px;
    align-items: flex-start;
}

.checkout-main,
.checkout-success-card,
.checkout-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow-soft);
}

.checkout-main {
    padding: 0 30px 30px;
}

.checkout-brand-line {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    border-bottom: 1px solid var(--line);
    margin: 0 -30px 26px;
    padding: 24px 30px;
}

.checkout-brand-line img {
    width: auto;
    max-width: 150px;
    height: 58px;
    object-fit: contain;
}

.checkout-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: 12px;
}

.checkout-steps a {
    color: var(--accent-dark);
    font-weight: 500;
}

.checkout-steps span::before {
    content: "/";
    margin-right: 10px;
    color: color-mix(in srgb, var(--muted) 45%, transparent);
}

.checkout-alert {
    margin-bottom: 18px;
    border-radius: var(--radius-md);
    background: color-mix(in srgb, var(--danger) 10%, #ffffff);
    color: var(--danger);
    padding: 12px 14px;
}

.checkout-panel {
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
}

.checkout-panel:last-of-type {
    border-bottom: 0;
}

.checkout-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.checkout-panel h1,
.checkout-panel h2,
.checkout-success-card h1,
.checkout-summary h2 {
    margin: 0;
    color: #000000;
    font-family: var(--font-heading);
    font-weight: 300;
    line-height: 1.18;
}

.checkout-panel h1,
.checkout-success-card h1 {
    font-size: 31px;
}

.checkout-panel h2,
.checkout-summary h2 {
    font-size: 23px;
}

.checkout-panel-head a,
.checkout-actions a {
    color: var(--accent-dark);
    font-weight: 500;
}

.checkout-note {
    margin: -4px 0 18px;
    color: var(--muted);
    line-height: 1.6;
}

.checkout-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.checkout-field {
    display: grid;
    gap: 7px;
    color: #000000;
    font-size: 13px;
    font-weight: 500;
}

.checkout-field-wide {
    grid-column: 1 / -1;
}

.checkout-field input,
.checkout-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--ink);
    font: inherit;
}

.checkout-field input {
    height: 46px;
    padding: 0 13px;
}

.checkout-field textarea {
    min-height: 92px;
    padding: 12px 13px;
    resize: vertical;
}

.checkout-field input:focus,
.checkout-field textarea:focus {
    border-color: var(--accent);
    outline: 3px solid color-mix(in srgb, var(--accent) 22%, transparent);
}

.checkout-options {
    display: grid;
    gap: 10px;
}

.checkout-option {
    min-height: 70px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 14px;
    cursor: pointer;
}

.checkout-option:has(input:checked) {
    border-color: var(--accent);
    background: color-mix(in srgb, var(--accent) 9%, #ffffff);
}

.checkout-option input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
}

.checkout-option span {
    display: grid;
    gap: 3px;
}

.checkout-option strong {
    color: #000000;
    font-weight: 500;
}

.checkout-option small,
.checkout-summary-item small,
.checkout-success-grid small {
    color: var(--muted);
    line-height: 1.45;
}

.checkout-option em {
    color: var(--price);
    font-style: normal;
    font-weight: 500;
    white-space: nowrap;
}

.checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding-top: 24px;
}

.checkout-submit {
    min-width: 220px;
}

.checkout-summary {
    position: sticky;
    top: 24px;
    padding: 26px;
}

.checkout-summary-toggle {
    display: none;
}

.checkout-summary h2 {
    margin-bottom: 22px;
}

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

.checkout-summary-item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto;
    gap: 13px;
    align-items: center;
}

.checkout-summary-thumb {
    position: relative;
    width: 64px;
    aspect-ratio: 1;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--soft);
    overflow: visible;
}

.checkout-summary-thumb img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.checkout-summary-thumb span {
    position: absolute;
    top: -8px;
    right: -8px;
    min-width: 22px;
    height: 22px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: var(--accent);
    color: var(--button-text);
    padding: 0 6px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
}

.checkout-summary-thumb-placeholder {
    display: grid;
    place-items: center;
    color: var(--accent-dark);
    overflow: visible;
}

.checkout-summary-item a,
.checkout-summary-item > div > span {
    color: #000000;
    font-weight: 500;
}

.checkout-summary-item > div {
    min-width: 0;
    display: grid;
    gap: 4px;
}

.checkout-summary-item strong {
    color: var(--price);
    font-weight: 500;
    white-space: nowrap;
}

.checkout-totals {
    display: grid;
    gap: 11px;
    border-top: 1px solid var(--line);
    margin-top: 24px;
    padding-top: 20px;
}

.checkout-totals > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
}

.checkout-totals strong {
    color: #000000;
    font-weight: 500;
}

.checkout-total-row {
    border-top: 1px solid var(--line);
    margin-top: 4px;
    padding-top: 15px;
    font-size: 18px;
}

.checkout-total-row strong {
    color: var(--cart-total);
    font-size: 26px;
    font-weight: 500;
}

.checkout-success-card {
    padding: 34px;
}

.checkout-success-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: var(--radius-lg);
    background: var(--success-bg);
    color: var(--success);
    font-size: 24px;
    margin-bottom: 20px;
}

.checkout-success-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.checkout-success-grid > div {
    display: grid;
    gap: 5px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--soft);
    padding: 14px;
}

.checkout-success-grid span {
    color: var(--muted);
    font-size: 12px;
}

.checkout-success-grid strong {
    color: #000000;
    font-weight: 500;
}

.shop-toast {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 90;
    max-width: min(360px, calc(100vw - 32px));
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    color: var(--ink);
    padding: 14px 18px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(14px);
    transition: opacity .2s ease, transform .2s ease;
    font-weight: 700;
}

.shop-toast.open {
    opacity: 1;
    transform: translateY(0);
}

.cart-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 72;
    display: flex;
    justify-content: flex-end;
    background: rgba(0, 0, 0, .5);
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

.cart-drawer-backdrop.open {
    opacity: 1;
    pointer-events: auto;
}

body.drawer-open {
    overflow: hidden;
}

.cart-drawer {
    width: min(430px, 100%);
    height: 100%;
    background: var(--surface);
    color: var(--muted);
    box-shadow: -18px 0 50px rgba(0, 0, 0, .22);
    transform: translateX(100%);
    transition: transform .28s ease;
}

.cart-drawer-backdrop.open .cart-drawer {
    transform: translateX(0);
}

.cart-drawer-content,
.cart-drawer-inner {
    height: 100%;
}

.cart-drawer-inner {
    display: flex;
    flex-direction: column;
}

.cart-drawer-loading {
    padding: 28px;
    color: var(--ink);
    font-weight: 800;
}

.cart-drawer-head {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-bottom: 1px solid var(--line);
    padding: 18px 22px;
}

.cart-drawer-head h2 {
    margin: 0;
    color: var(--ink);
    font-size: 28px;
    font-weight: 300;
    line-height: 1.1;
}

.cart-drawer-head p {
    margin: 5px 0 0;
    color: var(--muted);
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.cart-drawer-close:hover,
.cart-drawer-close:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
    background: #ffffff;
    color: var(--accent);
}

.cart-drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 4px 22px;
}

.cart-drawer-item {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr) auto;
    gap: 14px;
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.cart-drawer-thumb img {
    width: 82px;
    height: 98px;
    object-fit: cover;
    border-radius: var(--radius-md);
    border: 3px solid var(--soft);
}

.cart-drawer-title {
    display: block;
    color: var(--ink);
    font-weight: 700;
    line-height: 1.35;
}

.cart-drawer-title:hover {
    color: var(--accent-dark);
}

.cart-drawer-meta {
    display: grid;
    gap: 4px;
    margin-top: 7px;
    color: var(--muted);
    font-size: 13px;
}

.cart-drawer-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.cart-drawer-qty {
    display: inline-grid;
    grid-template-columns: 32px 36px 32px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    min-height: 34px;
    overflow: hidden;
}

.cart-drawer-qty form {
    margin: 0;
}

.cart-drawer-qty button,
.cart-drawer-qty span {
    width: 100%;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
}

.cart-drawer-qty button {
    cursor: pointer;
    font-weight: 900;
}

.cart-drawer-remove {
    border: 0;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cart-drawer-remove:hover {
    color: var(--ink);
}

.cart-drawer-line-total {
    color: var(--cart-total);
    font-weight: 800;
    white-space: nowrap;
}

.cart-drawer-foot {
    border-top: 1px solid var(--line);
    padding: 20px 22px 22px;
}

.cart-drawer-subtotal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 18px;
    color: var(--ink);
    font-size: 18px;
}

.cart-drawer-subtotal strong {
    color: var(--cart-total);
    font-size: 22px;
}

.cart-drawer-foot p {
    margin: 10px 0 16px;
    color: var(--muted);
    font-size: 13px;
}

.cart-drawer-checkout,
.cart-drawer-view {
    width: 100%;
    margin-top: 10px;
}

.cart-drawer-empty {
    min-height: calc(100% - 82px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    padding: 28px;
    text-align: center;
}

.cart-drawer-empty i {
    color: var(--accent);
    font-size: 54px;
}

.cart-drawer-empty h3 {
    margin: 0;
    color: var(--ink);
    font-size: 25px;
    font-weight: 300;
}

.cart-drawer-empty p {
    margin: 0;
    color: var(--muted);
}

.modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 60;
    display: none;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .58);
    padding: 20px;
}

.modal-backdrop.open {
    display: flex;
}

body.modal-open {
    overflow: hidden;
}

.quick-modal {
    width: min(1060px, 100%);
    max-height: calc(100vh - 40px);
    overflow: auto;
    border-radius: var(--radius-lg);
    background: var(--surface);
    position: relative;
    box-shadow: 0 24px 70px rgba(0, 0, 0, .28);
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 4;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .96);
    color: var(--muted);
    cursor: pointer;
    font-size: 18px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .12);
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.modal-close:hover,
.modal-close:focus-visible {
    border-color: color-mix(in srgb, var(--accent) 36%, var(--line));
    background: #ffffff;
    color: var(--accent);
}

.quick-view-shell {
    display: grid;
    grid-template-columns: minmax(340px, 1.05fr) minmax(340px, .95fr);
    gap: 32px;
    padding: 32px;
}

.qv-gallery {
    min-width: 0;
}

.qv-main-image {
    position: relative;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--cream);
    overflow: hidden;
}

.qv-main-image img {
    width: 100%;
    aspect-ratio: 1 / 1.18;
    object-fit: contain;
}

.qv-main-image .product-image-placeholder {
    aspect-ratio: 1 / 1.18;
}

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

.qv-thumb {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 0;
    cursor: pointer;
    overflow: hidden;
}

.qv-thumb.active {
    border-color: var(--green);
}

.qv-thumb img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
}

.qv-info {
    min-width: 0;
    padding-right: 18px;
}

.qv-meta {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
    color: var(--muted);
    font-size: 13px;
}

.qv-meta strong {
    color: var(--ink);
    font-weight: 850;
}

.qv-title {
    margin: 0 0 10px;
    font-size: clamp(28px, 3vw, 40px);
    line-height: 1.08;
}

.qv-rating {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 12px;
    color: var(--rating);
    font-size: 14px;
    font-weight: 900;
}

.qv-rating small {
    color: var(--muted);
    font-weight: 700;
}

.qv-price {
    margin: 12px 0 15px;
    font-size: 24px;
}

.qv-description {
    color: var(--muted);
    line-height: 1.75;
    margin: 0 0 16px;
}

.qv-stock {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 0 16px;
    color: var(--muted);
    font-size: 14px;
}

.qv-stock b {
    color: var(--ink);
}

.qv-stock-dot {
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: var(--success);
}

.qv-cart {
    margin: 0 0 12px;
}

.qv-cart label {
    display: block;
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.qv-purchase {
    display: grid;
    grid-template-columns: 144px minmax(0, 1fr);
    gap: 12px;
}

.qv-quantity {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    min-height: 48px;
    overflow: hidden;
}

.qv-quantity button,
.qv-quantity input {
    border: 0;
    background: var(--surface);
    color: var(--ink);
    font: inherit;
    text-align: center;
}

.qv-quantity button {
    cursor: pointer;
    font-size: 18px;
    font-weight: 900;
}

.qv-cart-button {
    width: 100%;
    min-height: 48px;
    background: var(--cart);
    color: var(--cart-text);
    border-radius: var(--radius-md);
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.qv-cart-button:hover {
    background: var(--cart-dark);
}

.qv-status {
    min-height: 22px;
    margin-top: 8px;
    color: var(--success);
    font-size: 13px;
    font-weight: 800;
}

.qv-wishlist {
    margin: 0 0 16px;
}

.qv-wishlist .ghost-button {
    width: 100%;
    border-radius: var(--radius-md);
}

.qv-specs {
    display: grid;
    gap: 7px;
    margin: 0 0 18px;
    padding: 0;
    list-style: none;
    color: var(--muted);
    font-size: 14px;
}

.qv-delivery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 18px 0;
}

.qv-delivery-box {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--cream);
    padding: 12px;
    font-size: 13px;
    color: var(--muted);
}

.qv-delivery-box strong {
    display: block;
    margin-top: 4px;
    color: var(--ink);
}

.qv-share {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 10px;
}

.qv-share a {
    border-radius: var(--radius-md);
    padding: 7px 10px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 850;
}

.qv-share-facebook { background: #3b5998; }
.qv-share-twitter { background: #1da1f2; }
.qv-share-pinterest { background: #e60023; }

.qv-full-link {
    display: inline-flex;
    margin-top: 12px;
    color: var(--accent-dark);
    font-weight: 850;
}

.site-footer {
    margin-top: 56px;
    background:
        radial-gradient(78% 58% at 50% 116%, color-mix(in srgb, var(--footer-line) 72%, transparent) 0%, color-mix(in srgb, var(--footer-line) 30%, transparent) 38%, transparent 74%),
        linear-gradient(180deg, color-mix(in srgb, var(--footer-bg) 94%, #000000), var(--footer-bg));
    color: var(--footer-muted);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.6;
}

.footer-widgets {
    padding: 44px 0 0;
}

.footer-top-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr) minmax(0, .95fr);
    gap: 26px;
}

.footer-primary-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.12fr) minmax(0, .82fr) minmax(0, 1.46fr);
    gap: 30px;
    padding: 34px 0 38px;
}

.footer-widget-title {
    margin: 0 0 18px;
    color: var(--footer-heading);
    font-size: 19px;
    line-height: 1.25;
    font-weight: 400;
}

.footer-widget-title strong {
    color: color-mix(in srgb, var(--footer-button) 92%, var(--footer-heading));
    font-weight: inherit;
}

.footer-widget p,
.footer-widget a {
    display: block;
    margin: 0 0 8px;
    color: var(--footer-muted);
    font-size: 14px;
    font-weight: 300;
    line-height: 1.58;
}

.footer-widget a:hover {
    color: color-mix(in srgb, var(--footer-text) 84%, var(--footer-button));
}

.footer-widget .footer-brand {
    display: inline-flex;
    margin-bottom: 22px;
}

.footer-widget .footer-brand img {
    width: auto;
    max-width: 260px;
    height: 112px;
    object-fit: contain;
}

.footer-mini-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    margin-top: 16px;
}

.footer-mini-form input {
    width: 100%;
    height: 42px;
    border: 1px solid color-mix(in srgb, var(--footer-line) 72%, transparent);
    border-radius: var(--radius-sm);
    background: var(--footer-field-bg);
    color: var(--footer-text);
    padding: 0 12px;
    font: inherit;
    outline: 0;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, .2);
    transition: border-color .16s ease, background .16s ease;
}

.footer-mini-form input::placeholder {
    color: var(--footer-muted);
    opacity: .82;
}

.footer-mini-form input:focus {
    border-color: var(--footer-button);
    background: color-mix(in srgb, var(--footer-field-bg) 92%, #000000);
}

.footer-button {
    min-height: 42px;
    border: 0;
    border-radius: var(--radius-sm);
    background: var(--footer-button);
    color: var(--footer-button-text);
    padding: 0 15px;
    font: inherit;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: background .16s ease;
}

.footer-button:hover {
    background: color-mix(in srgb, var(--footer-button) 82%, #000000);
}

.footer-widget-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 18px;
}

.footer-widget-head .footer-widget-title {
    margin: 0;
}

.footer-slider-controls {
    display: flex;
    gap: 7px;
    padding-top: 1px;
}

.footer-slider-button {
    display: inline-grid;
    width: 24px;
    height: 24px;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--footer-line) 70%, transparent);
    border-radius: var(--radius-sm);
    background: transparent;
    color: color-mix(in srgb, var(--footer-text) 84%, var(--footer-muted));
    cursor: pointer;
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.footer-slider-button:hover {
    border-color: color-mix(in srgb, var(--footer-line) 45%, var(--footer-text));
    background: color-mix(in srgb, var(--footer-field-bg) 70%, var(--footer-bg));
    color: var(--footer-text);
}

.footer-slider-button i {
    font-size: 11px;
    line-height: 1;
}

.footer-posts {
    overflow: hidden;
}

.footer-posts-track {
    display: flex;
    transition: transform .26s ease;
    will-change: transform;
}

.footer-post-slide {
    flex: 0 0 100%;
    min-width: 0;
}

.footer-widget .footer-post {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 12px;
    margin: 0;
}

.footer-widget .footer-post .footer-date {
    min-height: 76px;
    display: grid;
    place-items: center;
    border: 1px solid color-mix(in srgb, var(--footer-line) 54%, transparent);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--footer-field-bg) 72%, var(--footer-bg));
    color: color-mix(in srgb, var(--footer-muted) 86%, var(--footer-text));
    font-size: 13px;
    font-weight: 300;
    line-height: 1;
    margin: 0;
    overflow: hidden;
}

.footer-date-day {
    display: block;
    font-size: 24px;
    line-height: 1;
}

.footer-date-month {
    display: block;
    width: 100%;
    border-top: 1px solid color-mix(in srgb, var(--footer-line) 46%, transparent);
    padding: 9px 4px 0;
    color: var(--footer-text);
    font-size: 13px;
    line-height: 1;
    text-align: center;
}

.footer-post strong {
    display: block;
    color: color-mix(in srgb, var(--footer-text) 82%, var(--footer-muted));
    font-size: 14px;
    font-weight: 400;
    line-height: 1.35;
}

.footer-post span {
    display: block;
    margin-top: 4px;
    color: var(--footer-muted);
    font-size: 13px;
    line-height: 1.35;
}

.footer-post-more {
    display: inline-flex;
    width: fit-content;
    margin-top: 12px;
    border: 1px solid color-mix(in srgb, var(--footer-line) 64%, transparent);
    border-radius: var(--radius-sm);
    padding: 4px 9px;
    color: color-mix(in srgb, var(--footer-muted) 86%, var(--footer-text));
    font-size: 12px;
    line-height: 1;
}

.footer-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-tags a {
    display: inline-flex;
    margin: 0;
    border: 1px solid color-mix(in srgb, var(--footer-line) 48%, transparent);
    border-radius: var(--radius-sm);
    background: color-mix(in srgb, var(--footer-field-bg) 64%, var(--footer-bg));
    padding: 5px 9px;
    color: var(--footer-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    transition: border-color .16s ease, color .16s ease, background .16s ease;
}

.footer-tags a:hover {
    border-color: color-mix(in srgb, var(--footer-line) 45%, var(--footer-text));
    background: color-mix(in srgb, var(--footer-field-bg) 74%, var(--footer-bg));
    color: var(--footer-text);
}

.footer-separator {
    height: 1px;
    margin-top: 34px;
    background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--footer-line) 58%, transparent), transparent);
}

.footer-contact-line {
    margin-top: 14px;
}

.footer-contact-line strong {
    color: var(--footer-button);
    font-weight: 400;
}

.footer-contact-line a {
    display: inline;
    margin: 0;
}

.footer-phone-list {
    display: grid;
    gap: 2px;
    margin: 2px 0 8px;
}

.footer-phone-list a,
.footer-phone-list span {
    width: max-content;
    max-width: 100%;
    white-space: nowrap;
}

.footer-menu {
    display: grid;
    gap: 0;
}

.footer-category-menu {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 22px;
}

.footer-menu a {
    position: relative;
    margin: 0;
    border-bottom: 1px solid color-mix(in srgb, var(--footer-line) 48%, transparent);
    padding: 9px 0 9px 18px;
    color: color-mix(in srgb, var(--footer-text) 84%, var(--footer-muted));
    font-size: 14px;
    font-weight: 400;
}

.footer-menu a::before {
    content: "\203A";
    position: absolute;
    top: 6px;
    left: 0;
    color: var(--footer-button);
    font-size: 20px;
    line-height: 1;
    opacity: .92;
}

.footer-bottom {
    border-top: 1px solid color-mix(in srgb, var(--footer-line) 48%, transparent);
    background: color-mix(in srgb, var(--footer-bg) 86%, #000000);
}

.footer-bottom-inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    color: color-mix(in srgb, var(--footer-muted) 88%, var(--footer-text));
    font-size: 14px;
    font-weight: 300;
    text-align: left;
}

.footer-bottom-inner strong,
.footer-bottom-inner a {
    color: color-mix(in srgb, var(--footer-muted) 88%, var(--footer-text));
    font-weight: 400;
}

.footer-bottom-inner a:hover {
    color: color-mix(in srgb, var(--footer-text) 84%, var(--footer-button));
}

.section-heading,
.section-head h2,
.product-title,
.mini-product h4,
.home-blog-body h3,
.blog-card h2,
.footer-widget-title,
.product-column h3,
.collection-title,
.product-detail-title,
.qv-title {
    font-family: var(--font-heading);
    font-weight: 300;
}

.aside-box .section-heading {
    font-size: 22px;
    line-height: 1.1;
}

.home-main > .handy-slider-section .section-heading,
.home-blog-section .section-heading,
.vendor-section .section-heading {
    font-size: 30px;
    line-height: 1.1;
}

.nav,
.announcement,
.currency-switcher select,
.header-search,
.cart-link,
.plain-link,
.side-banner-button,
.aside-promo-button,
.promo-card b,
.product-badge,
.product-meta,
.blog-read-more,
.qv-full-link,
.footer-button {
    font-weight: 500;
}

.site-footer .footer-widget-title,
.site-footer .footer-widget-title strong {
    font-weight: 400;
}

.section-heading,
.nav,
.announcement,
.plain-link,
.product-badge,
.product-meta,
.promo-card b,
.side-banner-button,
.aside-promo-button,
.blog-read-more {
    letter-spacing: 0;
}

.product-title {
    color: #000000;
    font-size: 18px;
    line-height: 1.5;
}

.mini-product h4 {
    color: #000000;
    font-size: 15px;
    line-height: 1.45;
}

.price,
.product-detail-price,
.qv-price {
    font-family: var(--font-body);
    font-weight: 500;
}

.home-blog-body h3 {
    font-size: 18px;
    line-height: 1.35;
}

.vendor-card,
.brand-pill {
    font-family: var(--font-heading);
    font-weight: 300;
}

button,
input,
select,
textarea {
    font-family: inherit;
}

@media (max-width: 860px) {
    .service-strip {
        width: min(100% - 24px, 620px);
        min-height: 0;
        grid-template-columns: 1fr;
        padding: 8px 0;
        gap: 4px;
        font-size: 11px;
        line-height: 1.25;
    }

    .service-strip span {
        border-right: 0;
    }

    .utility-inner {
        width: min(100% - 24px, 620px);
        min-height: 34px;
        justify-content: center;
    }

    .utility-inner > span {
        display: none;
    }

    .utility-links {
        max-width: 100%;
        gap: 13px;
        overflow-x: auto;
        padding: 0 1px;
        scrollbar-width: none;
    }

    .utility-links::-webkit-scrollbar {
        display: none;
    }

    .utility-bar {
        display: none;
    }

    .site-header {
        position: sticky;
    }

    .header-inner {
        width: 100%;
        min-height: 112px;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        grid-template-rows: 58px 54px;
        padding: 0;
        gap: 0;
        background:
            linear-gradient(90deg, rgba(106, 106, 106, .035) 1px, transparent 1px),
            linear-gradient(0deg, rgba(106, 106, 106, .025) 1px, transparent 1px),
            #ffffff;
        background-size: 24px 24px;
    }

    .header-inner.has-mobile-currency {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .mobile-menu-toggle {
        grid-column: 1;
        grid-row: 2;
        width: 100%;
        height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 6px;
        border: 0;
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-radius: 0;
        background: rgba(255, 255, 255, .72);
        color: #636565;
    }

    .mobile-menu-toggle span,
    .mobile-menu-toggle::before,
    .mobile-menu-toggle::after {
        width: 23px;
        height: 2px;
    }

    .mobile-menu-toggle span {
        margin: 0;
    }

    .site-header.mobile-menu-open .mobile-menu-toggle::before {
        transform: translateY(8px) rotate(45deg);
    }

    .site-header.mobile-menu-open .mobile-menu-toggle::after {
        transform: translateY(-8px) rotate(-45deg);
    }

    .brand {
        grid-column: 1 / -1;
        grid-row: 1;
        justify-content: center;
        align-self: stretch;
        align-items: center;
        border-bottom: 1px solid var(--line);
    }

    .brand img {
        width: auto;
        max-width: 150px;
        height: 48px;
    }

    .header-search {
        display: none;
    }

    .header-actions {
        display: contents;
    }

    .header-currency-form {
        grid-column: 2;
        grid-row: 2;
        display: block;
        margin: 0;
        min-width: 0;
    }

    .header-account-link {
        grid-column: 2;
        grid-row: 2;
    }

    .header-inner.has-mobile-currency .header-account-link {
        grid-column: 3;
    }

    .header-wishlist-link {
        grid-column: 3;
        grid-row: 2;
    }

    .header-inner.has-mobile-currency .header-wishlist-link {
        grid-column: 4;
    }

    .header-cart-link {
        grid-column: 4;
        grid-row: 2;
    }

    .header-inner.has-mobile-currency .header-cart-link {
        grid-column: 5;
    }

    .header-action-icon,
    .header-wishlist-link,
    .header-cart-link {
        position: relative;
        width: 100%;
        min-width: 0;
        height: 54px;
        min-height: 54px;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 0;
        border-top: 1px solid var(--line);
        border-right: 1px solid var(--line);
        border-radius: 0;
        background: rgba(255, 255, 255, .72);
        color: #636565;
        padding: 0;
        font-size: 0;
        line-height: 1;
    }

    .header-action-icon i,
    .header-wishlist-link i,
    .header-cart-link .fa-cart-shopping {
        width: 24px;
        height: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #666a68;
        font-size: 20px;
        line-height: 24px;
    }

    .header-cart-link {
        border-right: 0;
        border-color: var(--line);
        background: rgba(255, 255, 255, .72);
        color: #636565;
        gap: 0;
    }

    .header-account-link i {
        color: #7a7f7d;
        font-size: 21px;
        transform: translateY(0);
    }

    .header-wishlist-link i,
    .header-cart-link .fa-cart-shopping {
        transform: translateY(-1px);
    }

    .header-cart-link > span:not(.cart-count-bubble) {
        display: none;
    }

    .header-action-icon:hover,
    .header-action-icon:focus,
    .header-wishlist-link:hover,
    .header-wishlist-link:focus,
    .header-cart-link:hover,
    .header-cart-link:focus {
        color: var(--accent-dark);
        background: #ffffff;
    }

    .header-action-icon:hover i,
    .header-action-icon:focus i,
    .header-wishlist-link:hover i,
    .header-wishlist-link:focus i,
    .header-cart-link:hover .fa-cart-shopping,
    .header-cart-link:focus .fa-cart-shopping {
        color: var(--accent-dark);
    }

    .header-currency-link {
        overflow: hidden;
    }

    .header-currency-link select {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        cursor: pointer;
    }

    .header-actions > .cart-link:first-child {
        position: relative;
        justify-content: center;
        overflow: hidden;
        font-size: 0;
    }

    .header-actions > .cart-link:first-child > i {
        line-height: 1;
    }

    .header-wishlist-link [data-wishlist-count],
    .header-cart-link .cart-count-bubble {
        position: absolute;
        top: 9px;
        right: calc(50% - 23px);
        min-width: 19px;
        height: 19px;
        display: grid;
        place-items: center;
        border-radius: 999px;
        background: var(--accent);
        color: #ffffff;
        padding: 0 5px;
        font-size: 11px;
        font-weight: 500;
        line-height: 1;
    }

    .cart-drawer-trigger {
        justify-content: center;
    }

    .cart-drawer-trigger > span:not(.cart-count-bubble) {
        display: none;
    }

    .nav {
        width: 100%;
        min-height: 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        border-top: 1px solid var(--line);
        background: #ffffff;
        padding: 0;
        text-align: left;
    }

    .site-header.nav-fixed {
        padding-bottom: 0;
    }

    .site-header.mobile-menu-open .nav {
        display: none;
    }

    .nav-item {
        width: 100%;
    }

    .nav > .nav-item + .nav-item::before {
        display: none;
    }

    .nav-link {
        min-height: 46px;
        display: flex;
        align-items: center;
        border-bottom: 1px solid var(--line);
        padding: 0 18px 0 calc(18px + (var(--nav-depth, 0) * 16px));
        color: var(--mobile-menu-text);
    }

    .nav-submenu {
        position: static;
        display: grid;
        min-width: 0;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
    }

    .nav-item.has-children > .nav-link::after,
    .nav-submenu .nav-item.has-children > .nav-link::after {
        transform: rotate(90deg);
    }

    .split,
    .footer-top-grid,
    .footer-primary-grid,
    .footer-category-menu,
    .storefront-layout,
    .home-grid,
    .quick-view-shell,
    .promo-grid,
    .promo-pair,
    .tabbed-products,
    .home-columns-section,
    .brand-row,
    .vendor-row,
    .qv-delivery {
        grid-template-columns: 1fr;
    }

    .container,
    .hero-content {
        width: min(100% - 24px, 620px);
    }

    .storefront-frame {
        padding-top: 16px;
    }

    .home-grid {
        gap: 22px;
    }

    .home-main {
        order: 1;
        gap: 20px;
    }

    .sales-home {
        gap: 24px;
    }

    .sales-hero,
    .sales-picker-section,
    .sales-info-band,
    .sales-guide,
    .sales-certificates {
        grid-template-columns: 1fr;
    }

    .sales-hero,
    .sales-hero-track {
        min-height: 0;
    }

    .sales-hero-slide {
        grid-template-columns: 1fr;
    }

    .sales-hero-copy {
        order: -1;
        padding: 24px;
    }

    .sales-hero-media {
        min-height: 230px;
    }

    .sales-hero-media img {
        width: min(72%, 380px);
        height: 220px;
    }

    .sales-hero-controls {
        right: 16px;
        bottom: 14px;
    }

    .sales-trust-grid,
    .sales-product-grid,
    .sales-process-grid,
    .sales-buy-path {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sales-carousel-controls {
        display: none;
    }

    .collection-catalog-overview {
        gap: 28px;
    }

    .catalog-category-head {
        align-items: flex-start;
        margin-bottom: 12px;
    }

    .catalog-category-head h2 {
        font-size: 21px;
    }

    .catalog-category-track {
        margin: 0 -16px;
        padding: 2px 16px 12px;
        scroll-snap-type: x mandatory;
    }

    .catalog-category-track .product-card {
        flex-basis: min(68vw, 230px);
    }

    .catalog-category-track .product-body {
        min-height: 98px;
        padding: 12px 42px 12px 12px;
    }

    .catalog-category-track .product-title {
        font-size: 13px;
        line-height: 1.34;
    }

    .catalog-category-track .product-title a {
        display: -webkit-box;
        overflow: hidden;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .sales-certificates-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .sales-certificate-actions {
        display: none;
    }

    .sales-category-pair,
    .sales-wood-grid,
    .sales-faq-grid {
        grid-template-columns: 1fr;
    }

    .sales-picker-section,
    .sales-guide,
    .sales-certificates,
    .sales-final-cta {
        padding: 22px;
    }

    .sales-info-band article + article {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .sales-final-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-aside {
        order: 2;
    }

    .aside-box {
        padding: 16px;
    }

    .aside-box + .aside-box,
    .side-banner + .aside-box,
    .aside-box + .side-banner {
        margin-top: 18px;
    }

    .categories-box .category-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0 14px;
    }

    .category-row {
        min-height: 42px;
    }

    .section {
        padding: 36px 0;
    }

    .section-heading {
        font-size: 24px;
    }

    .section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-head h2 {
        font-size: 26px;
    }

    .blog-shell,
    .blog-shell.article-shell {
        grid-template-columns: 1fr;
        padding: 36px 0 46px;
    }

    .blog-shell.article-shell .blog-sidebar {
        order: 2;
    }

    .blog-shell.article-shell .article-main {
        order: 1;
    }

    .blog-list {
        gap: 22px;
    }

    .collection-shell {
        grid-template-columns: 1fr;
        padding: 24px 0 52px;
    }

    .collection-delivery-focus {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        padding: 20px;
    }

    .collection-delivery-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .collection-toolbar {
        display: none;
    }

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

    .collection-sidebar {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 60;
        width: min(330px, 88vw);
        display: block;
        overflow-y: auto;
        background: #ffffff;
        padding: 50px 16px 18px;
        transform: translateX(105%);
        transition: transform .22s ease, box-shadow .22s ease;
        will-change: transform;
    }

    .collection-sidebar:target {
        transform: translateX(0);
        box-shadow: -18px 0 40px rgba(0, 0, 0, .18);
    }

    .collection-filter-close {
        position: fixed;
        top: 10px;
        right: 14px;
        width: 32px;
        height: 32px;
        display: grid;
        place-items: center;
        border: 1px solid var(--line);
        border-radius: var(--radius-sm);
        background: #ffffff;
        color: #000000;
        font-size: 22px;
        line-height: 1;
    }

    .collection-main {
        order: 1;
    }

    .collection-mobile-toolbar {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        border-top: 1px solid rgba(255, 255, 255, .22);
        background: rgba(72, 71, 71, .96);
        padding: 6px 12px;
        color: #ffffff;
    }

    .collection-mobile-filter {
        min-height: 34px;
        display: inline-flex;
        align-items: center;
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .1);
        padding: 0 13px;
        font-weight: 800;
    }

    .collection-mobile-toolbar form {
        flex: 1 1 auto;
        min-width: 0;
        margin: 0;
    }

    .collection-mobile-toolbar select {
        width: 100%;
        max-width: 210px;
        height: 34px;
        border-radius: var(--radius-sm);
        background: #ffffff;
        padding: 0 8px;
        color: var(--muted);
    }

    .collection-mobile-view-buttons {
        display: flex;
        align-items: center;
        gap: 7px;
    }

    .collection-mobile-view-buttons button {
        width: 34px;
        height: 34px;
        display: grid;
        place-items: center;
        border: 1px solid rgba(255, 255, 255, .45);
        border-radius: var(--radius-sm);
        background: rgba(255, 255, 255, .08);
        color: #ffffff;
        padding: 0;
    }

    .collection-mobile-view-buttons button.active {
        border-color: #ffffff;
        background: #ffffff;
        color: #000000;
    }

    .collection-product-grid.is-list .product-card {
        grid-template-columns: 152px minmax(0, 1fr);
        min-height: 172px;
    }

    .collection-product-grid.is-list .product-media {
        min-height: 172px;
    }

    .collection-product-grid.is-list .product-body {
        min-height: 172px;
        padding: 14px 50px 12px 14px;
    }

    .collection-product-grid.is-list .product-meta,
    .collection-product-grid.is-list .product-list-description {
        display: none;
    }

    .collection-product-grid.is-list .product-title {
        font-size: 14px;
    }

    .collection-product-grid.is-list .product-cart-form {
        right: 12px;
    }

    .collection-product-grid.is-list .product-cart-icon {
        width: 34px;
        height: 34px;
    }

    .product-detail-shell {
        width: min(calc(100% - 24px), 620px);
        max-width: calc(100vw - 24px);
        grid-template-columns: 1fr;
        padding: 24px 0 52px;
    }

    .product-detail-sidebar {
        display: none;
    }

    .product-detail-hero {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .product-detail-gallery {
        order: 1;
    }

    .product-detail-info {
        order: 2;
    }

    .product-detail-meta {
        display: none;
    }

    .product-detail-info h1 {
        font-size: 26px;
    }

    .product-detail-description {
        max-width: none;
    }

    .product-detail-related .product-grid,
    .product-detail-related-track {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .product-detail-tab-nav {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .product-detail-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .product-detail-tab-nav label {
        min-width: 138px;
        flex: 0 0 auto;
    }

    .hero.hero-slider {
        min-height: 355px;
        aspect-ratio: auto;
    }

    .hero-slide-bright .hero-image {
        object-position: left center;
    }

    .hero-slide-watch .hero-image {
        object-position: 44% center;
    }

    .hero-slider .hero-content {
        left: 78%;
        width: 55%;
        transform: translate(-78%, -50%);
    }

    .hero-slider .hero-content-watch {
        left: 69%;
        width: 38%;
        transform: translate(-69%, -50%);
    }

    .hero-slider h1 {
        font-size: 28px;
        line-height: 1.05;
    }

    .hero-content-watch h1 {
        font-size: 34px;
    }

    .hero-subtitle {
        font-size: 16px;
        padding: 8px 0;
    }

    .hero-subtitle span {
        font-size: 26px;
    }

    .hero-slider p {
        display: none;
    }

    .hero-slider .button {
        min-height: 38px;
        padding: 0 18px;
        font-size: 11px;
        white-space: normal;
        text-align: center;
    }

    .hero-arrow {
        width: 34px;
        height: 44px;
        opacity: 1;
    }

    .discount-banner {
        min-height: 116px;
    }

    .discount-banner span,
    .discount-banner b {
        margin-left: 18px;
        margin-right: 18px;
    }

    .discount-banner span {
        font-size: 19px;
        line-height: 1.2;
    }

    .promo-card {
        min-height: 162px;
    }

    .promo-card span {
        font-size: 25px;
    }

    .handy-slider-track {
        gap: 16px;
    }

    .product-tools {
        opacity: 1;
        transform: none;
    }

    .handy-slide {
        flex-basis: min(78%, 280px);
    }

    .product-body {
        padding: 13px 12px 10px;
    }

    .product-title-row {
        gap: 8px;
    }

    .product-title {
        font-size: 15px;
    }

    .mini-product {
        grid-template-columns: 82px 1fr;
        gap: 12px;
        margin-top: 16px;
    }

    .mini-product img {
        width: 82px;
        height: 82px;
    }

    .side-banner img {
        aspect-ratio: 16 / 10;
    }

    .side-banner-text {
        top: 26px;
        font-size: 25px;
    }

    .side-banner-button {
        bottom: 18px;
        opacity: 1;
    }

    .home-columns-section {
        gap: 18px;
    }

    .vendor-row {
        gap: 10px;
    }

    .vendor-card {
        min-height: 62px;
        font-size: 18px;
    }

    .qv-purchase {
        grid-template-columns: 1fr;
    }

    .product-summary {
        position: static;
    }

    .quantity-row {
        flex-direction: column;
    }

    .quantity-row input,
    .quantity-row .button {
        width: 100%;
    }

    .cart-drawer {
        width: min(390px, 100vw);
    }

    .quick-modal {
        width: min(640px, 100%);
    }

    .quick-view-shell {
        gap: 20px;
        padding: 20px;
    }

    .qv-info {
        padding-right: 0;
    }

    .header-phone,
    .header-cart-caption {
        display: none;
    }

    .header-cart-wrap {
        display: contents;
    }

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

    .checkout-layout,
    .checkout-success-layout {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .checkout-summary {
        position: static;
        order: -1;
        padding: 0;
        overflow: hidden;
    }

    .checkout-success-layout .checkout-summary {
        order: 0;
        padding: 26px;
        overflow: visible;
    }

    .checkout-success-grid {
        grid-template-columns: 1fr;
    }

    .checkout-summary-toggle {
        width: 100%;
        min-height: 74px;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        border: 0;
        border-bottom: 1px solid var(--line);
        background: var(--cream);
        color: var(--muted);
        padding: 0 18px;
        font: inherit;
        cursor: pointer;
        text-align: left;
    }

    .checkout-summary-toggle-label {
        min-width: 0;
        display: flex;
        align-items: center;
        gap: 8px;
        color: var(--muted);
        font-size: 14px;
    }

    .checkout-summary-toggle-label span {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .checkout-summary-toggle-label .fa-cart-shopping {
        color: #4f5353;
        font-size: 18px;
    }

    .checkout-summary-toggle-chevron {
        color: #4f5353;
        font-size: 11px;
        transition: transform .18s ease;
    }

    .checkout-summary-toggle strong {
        color: #000000;
        font-size: 18px;
        font-weight: 400;
        white-space: nowrap;
    }

    .checkout-summary-details {
        padding: 22px 18px 24px;
    }

    .checkout-summary.is-collapsed .checkout-summary-details {
        display: none;
    }

    .checkout-summary.is-collapsed [data-checkout-summary-hide],
    .checkout-summary:not(.is-collapsed) [data-checkout-summary-show] {
        display: none;
    }

    .checkout-summary:not(.is-collapsed) .checkout-summary-toggle-chevron {
        transform: rotate(180deg);
    }

    .checkout-summary .checkout-summary-details > h2 {
        display: none;
    }
}

@media (max-width: 560px) {
    body {
        font-size: 13px;
    }

    .container,
    .hero-content {
        width: calc(100% - 20px);
    }

    .utility-inner,
    .header-inner {
        width: calc(100% - 20px);
    }

    .header-inner {
        width: 100%;
    }

    .search-page {
        width: calc(100% - 20px);
        margin: 28px auto 42px;
    }

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

    .search-page-form .button {
        width: 100%;
    }

    .checkout-page {
        width: calc(100% - 20px);
        margin: 22px auto 40px;
    }

    .checkout-main,
    .checkout-success-card {
        padding: 18px;
    }

    .checkout-main {
        padding-top: 0;
    }

    .checkout-summary {
        padding: 0;
    }

    .checkout-success-layout .checkout-summary {
        padding: 18px;
    }

    .checkout-brand-line {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        margin: 0 -18px 20px;
        padding: 18px;
    }

    .checkout-steps {
        flex-wrap: wrap;
    }

    .checkout-fields,
    .checkout-option,
    .checkout-summary-item {
        grid-template-columns: 1fr;
    }

    .checkout-summary-thumb {
        width: 72px;
    }

    .checkout-actions {
        align-items: stretch;
        flex-direction: column-reverse;
    }

    .checkout-submit {
        width: 100%;
        min-width: 0;
    }

    .categories-box .category-list {
        grid-template-columns: 1fr;
    }

    .hero.hero-slider {
        min-height: 330px;
    }

    .hero-slider .hero-content {
        left: 75%;
        width: 58%;
        transform: translate(-75%, -50%);
    }

    .hero-slider .hero-content-watch {
        left: 69%;
        width: 44%;
        transform: translate(-69%, -50%);
    }

    .hero-slide-watch .hero-image {
        object-position: 39% center;
    }

    .hero-slider h1 {
        font-size: 24px;
    }

    .hero-content-watch h1 {
        font-size: 27px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-subtitle span {
        font-size: 22px;
    }

    .hero-dots {
        bottom: 10px;
    }

    .handy-slide {
        flex-basis: 84%;
    }

    .section-heading-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .promo-card span {
        font-size: 22px;
    }

    .promo-card b,
    .discount-banner b {
        padding: 9px 18px;
    }

    .article-grid,
    .home-blog-grid,
    .blog-list,
    .product-grid,
    .category-grid,
    .sales-trust-grid,
    .sales-product-grid,
    .sales-process-grid {
        grid-template-columns: 1fr;
    }

    .sales-hero-copy,
    .sales-info-band article,
    .sales-guide,
    .sales-certificates,
    .sales-final-cta {
        padding: 18px;
    }

    .sales-hero-copy h1 {
        font-size: 30px;
    }

    .sales-hero-media {
        min-height: 236px;
    }

    .sales-hero-media img {
        width: calc(100% - 40px);
        height: 210px;
        margin-top: 8px;
    }

    .sales-hero-tags {
        left: 18px;
        right: 18px;
        top: 14px;
    }

    .sales-hero-tags a {
        padding: 7px 9px;
        font-size: 11px;
    }

    .sales-hero-price {
        left: 24px;
        bottom: 24px;
    }

    .sales-hero-controls {
        right: 18px;
        bottom: 18px;
    }

    .sales-buy-path {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .sales-buy-path a {
        padding: 13px;
    }

    .sales-product-grid .product-card:nth-child(n + 5),
    .sales-wood-grid .sales-wood-card:nth-child(n + 7),
    .sales-faq-grid .sales-faq-card:nth-child(n + 3) {
        display: none;
    }

    .sales-process-section {
        display: none;
    }

    .sales-category-card,
    .sales-wood-card {
        min-height: 190px;
        padding: 18px;
        padding-right: 118px;
    }

    .sales-category-card img,
    .sales-wood-card img {
        width: 48%;
        height: calc(100% - 14px);
        right: 7px;
        bottom: 7px;
    }

    .sales-guide-option {
        grid-template-columns: 1fr;
        gap: 6px;
        padding: 13px 14px;
    }

    .sales-guide-copy {
        scroll-margin-top: 92px;
    }

    .sales-guide-option-action {
        justify-self: start;
        margin-top: 4px;
    }

    .sales-certificate-gallery {
        gap: 12px;
        margin: 0 -2px;
    }

    .sales-certificate-card {
        flex-basis: min(64%, 210px);
        min-width: 160px;
    }

    .collection-product-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .catalog-category-head {
        flex-direction: column;
        gap: 8px;
    }

    .catalog-category-actions {
        width: 100%;
        justify-content: space-between;
    }

    .catalog-category-track .product-card {
        flex-basis: min(74vw, 218px);
    }

    .collection-product-grid .product-body {
        min-height: 94px;
    }

    .collection-children {
        grid-template-columns: 1fr;
    }

    .collection-side-box {
        padding: 18px;
    }

    .collection-mobile-toolbar select {
        max-width: none;
    }

    .collection-mobile-view-buttons button {
        width: 31px;
        height: 31px;
    }

    .collection-mobile-toolbar {
        gap: 6px;
        padding: 6px 8px;
    }

    .collection-mobile-filter {
        padding: 0 10px;
    }

    .collection-product-grid.is-list .product-card {
        grid-template-columns: 112px minmax(0, 1fr);
        min-height: 136px;
    }

    .collection-product-grid.is-list .product-media {
        min-height: 136px;
    }

    .collection-product-grid.is-list .product-body {
        min-height: 136px;
        padding: 12px 46px 10px 12px;
    }

    .collection-product-grid.is-list .product-card .price {
        font-size: 13px;
    }

    .blog-breadcrumb-inner {
        min-height: 74px;
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
        padding: 13px 0;
    }

    .blog-breadcrumb h1 {
        width: 100%;
        font-size: 23px;
    }

    .blog-crumbs {
        justify-content: flex-start;
    }

    .product-detail-breadcrumb .blog-breadcrumb-inner {
        align-items: flex-start;
        justify-content: center;
        flex-direction: column;
        gap: 7px;
        padding: 12px 0;
    }

    .product-detail-breadcrumb-title {
        width: 100%;
        font-size: 20px;
    }

    .blog-card-body {
        padding: 19px 18px 22px;
    }

    .blog-card h2 {
        font-size: 21px;
    }

    .blog-card-meta {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .blog-card-meta span + span {
        border-left: 0;
        padding-left: 0;
    }

    .blog-side-box,
    .article-comment-card {
        padding: 20px;
    }

    .article-detail-head h2 {
        font-size: 27px;
    }

    .article-info-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .article-info-row > * + * {
        border-left: 0;
        padding-left: 0;
    }

    .article-body-card {
        padding: 22px 18px;
    }

    .article-body-text p:first-child {
        font-size: 16px;
    }

    .article-body-text blockquote {
        font-size: 18px;
    }

    .article-comment-grid {
        grid-template-columns: 1fr;
    }

    .product-tools {
        top: 8px;
        right: 8px;
        gap: 6px;
    }

    .wishlist-toggle,
    .quick-view,
    .product-cart-icon {
        width: 36px;
        height: 36px;
    }

    .split {
        gap: 22px;
    }

    .product-summary h1 {
        font-size: 28px;
    }

    .product-detail-shell {
        width: calc(100% - 20px);
        padding-top: 20px;
    }

    .product-detail-image img {
        padding: 6px;
    }

    .product-detail-thumb {
        flex-basis: 62px;
        width: 62px;
        height: 62px;
        min-width: 62px;
        min-height: 62px;
    }

    .product-detail-meta {
        margin-top: 14px;
    }

    .product-detail-info h1 {
        font-size: 22px;
    }

    .product-detail-price {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .product-detail-title-row,
    .product-detail-status {
        margin-bottom: 11px;
    }

    .product-detail-description {
        margin-bottom: 12px;
        font-size: 13px;
        line-height: 1.55;
    }

    .product-detail-specs {
        margin-bottom: 14px;
        padding: 14px 0;
    }

    .product-detail-spec-row {
        grid-template-columns: minmax(0, 1fr);
        gap: 3px;
    }

    .product-detail-guide {
        padding: 15px;
    }

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

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

    .product-detail-cart-button {
        width: 100%;
    }

    .product-detail-delivery div {
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .product-detail-share a {
        flex: 1 1 calc(33.333% - 5px);
        justify-content: center;
        min-width: 0;
        padding: 0 6px;
        font-size: 12px;
    }

    .product-detail-tab-nav label {
        min-width: 118px;
        min-height: 44px;
        padding: 0 13px;
        font-size: 12px;
    }

    .product-detail-tab-panels {
        padding: 20px 17px;
    }

    .product-detail-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .product-detail-section-head h2 {
        font-size: 24px;
    }

    .product-detail-related .product-grid,
    .product-detail-related-track {
        grid-template-columns: 1fr;
    }

    .product-gallery-backdrop {
        padding: 0;
    }

    .product-gallery-modal {
        width: 100%;
        min-height: 100dvh;
        border-radius: 0;
        padding: 58px 14px 18px;
    }

    .product-gallery-stage img {
        max-height: 68dvh;
    }

    .product-gallery-arrow {
        top: auto;
        bottom: 18px;
        width: 38px;
        height: 42px;
        font-size: 24px;
        transform: none;
    }

    .product-gallery-prev {
        left: 14px;
    }

    .product-gallery-next {
        right: 14px;
    }

    .product-gallery-foot {
        padding: 14px 48px 0;
    }

    .product-gallery-thumbs button {
        width: 48px;
        height: 48px;
    }

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table tr,
    .cart-table th,
    .cart-table td {
        display: block;
    }

    .cart-table {
        border: 0;
        background: transparent;
    }

    .cart-table thead {
        position: absolute;
        width: 1px;
        height: 1px;
        overflow: hidden;
        clip: rect(0 0 0 0);
        white-space: nowrap;
    }

    .cart-table tr {
        border: 1px solid var(--line);
        background: #ffffff;
        margin-bottom: 12px;
        padding: 12px;
    }

    .cart-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        border-bottom: 1px solid var(--line);
        padding: 10px 0;
        text-align: right;
    }

    .cart-table td::before {
        content: attr(data-label);
        color: #000000;
        font-weight: 800;
        text-align: left;
    }

    .cart-table td:last-child {
        border-bottom: 0;
        justify-content: flex-end;
    }

    .cart-table input {
        width: 96px;
    }

    .cart-drawer-head,
    .cart-drawer-items,
    .cart-drawer-foot {
        padding-left: 14px;
        padding-right: 14px;
    }

    .cart-drawer-item {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 12px;
    }

    .cart-drawer-thumb img {
        width: 72px;
        height: 86px;
    }

    .cart-drawer-line-total {
        grid-column: 2;
        justify-self: start;
    }

    .modal-backdrop {
        align-items: stretch;
        padding: 0;
    }

    .quick-modal {
        width: 100%;
        max-height: 100dvh;
        border-radius: 0;
    }

    .quick-view-shell {
        padding: 14px;
    }

    .modal-close {
        top: 8px;
        right: 8px;
    }

    .qv-title {
        font-size: 25px;
    }

    .qv-main-image img {
        aspect-ratio: 1;
    }

    .qv-thumbs {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .qv-delivery {
        grid-template-columns: 1fr;
    }

    .footer-top-grid,
    .footer-primary-grid {
        gap: 24px;
    }

    .account-shell {
        width: calc(100% - 20px);
        margin: 24px auto 40px;
    }

    .account-card {
        padding: 22px 18px;
    }

    .account-dashboard-card {
        padding: 0;
    }

    .account-card h1 {
        font-size: 28px;
    }

    .account-head,
    .account-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .account-head {
        padding: 22px 18px 0;
    }

    .account-dashboard-card > .account-success,
    .account-dashboard-card > .account-alert {
        margin-left: 18px;
        margin-right: 18px;
    }

    .account-summary-grid {
        grid-template-columns: 1fr;
        margin-left: 18px;
        margin-right: 18px;
    }

    .account-panels {
        padding: 20px 18px;
    }

    .account-section {
        padding: 18px;
    }

    .account-section-head,
    .account-order-head,
    .account-order-item {
        align-items: flex-start;
        flex-direction: column;
    }

    .account-section-head p {
        max-width: none;
    }

    .account-profile-form,
    .account-password-form {
        grid-template-columns: 1fr;
    }

    .account-actions {
        padding: 22px 18px;
    }

    .footer-primary-grid {
        padding-bottom: 32px;
    }

    .site-footer {
        margin-top: 36px;
    }

    .footer-widgets {
        padding-top: 32px;
    }
}

@media (max-width: 620px) {
    .footer-mini-form {
        grid-template-columns: 1fr;
    }

    .footer-button {
        width: 100%;
    }

    .footer-bottom-inner {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 14px 0;
    }

}

@media (max-width: 380px) {
    .brand img {
        max-width: 132px;
        height: 44px;
    }

    .cart-drawer-trigger {
        width: 44px;
    }

    .cart-count-bubble {
        min-width: 18px;
        height: 18px;
        font-size: 11px;
    }

    .hero.hero-slider {
        min-height: 304px;
    }

    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 42px;
        height: 42px;
    }

    .hero-slider .hero-content {
        left: 74%;
        width: 62%;
        transform: translate(-74%, -50%);
    }

    .hero-slider .hero-content-watch {
        left: 68%;
        width: 47%;
        transform: translate(-68%, -50%);
    }

    .hero-slider h1 {
        font-size: 22px;
    }

    .hero-content-watch h1 {
        font-size: 24px;
    }

    .hero-slider .button {
        padding: 0 12px;
    }

}
