:root {
    --sw-primary: #25834f;
    --sw-primary-dark: #17623a;
    --sw-primary-soft: #e5f3eb;
    --sw-accent: #ff7a1a;
    --sw-accent-soft: #fff1e7;
    --sw-ink: #18211f;
    --sw-muted: #66716f;
    --sw-line: #e7ece5;
    --sw-page: #f7faf5;
    --sw-card: #ffffff;
    --sw-danger: #d8342a;
    --sw-shadow: 0 12px 30px rgba(24, 33, 31, .08);
    --sw-radius: 8px;
    --sw-content: 1440px;
    --sw-sticky-header-offset: 0px;
}

body {
    background: var(--sw-page);
    color: var(--sw-ink);
    max-width: 100%;
}

body.sw-drawer-open {
    overflow: hidden;
}

img.lazy {
    background: linear-gradient(120deg, #f5f7f2 0%, #eef3e9 48%, #f8faf6 100%);
}

img.lazy-loaded {
    background: transparent;
}

.sw-shell {
    width: min(var(--sw-content), calc(100% - 32px));
    margin: 0 auto;
}

.sw-notice-bar {
    overflow: hidden;
    background: #f4faed;
    border-bottom: 1px solid #dfead5;
}

.sw-notice-bar__inner {
    min-height: 40px;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    overflow: hidden;
}

.sw-notice-bar__service,
.sw-notice-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: var(--sw-primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.sw-notice-bar__service:hover {
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-notice-ticker {
    min-width: 0;
    overflow: hidden;
    color: var(--sw-ink);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.sw-notice-ticker span {
    display: inline-block;
    padding-left: 100%;
    animation: sw-notice-marquee 26s linear infinite;
}

.sw-notice-ticker:hover span {
    animation-play-state: paused;
}

.sw-notice-close {
    width: 30px;
    height: 30px;
    border: 1px solid #d9e8ce;
    border-radius: 8px;
    background: #fff;
    cursor: pointer;
}

@keyframes sw-notice-marquee {
    to {
        transform: translateX(-100%);
    }
}

.sw-site-header {
    position: relative;
    z-index: 200;
    background: #fff;
    border-bottom: 1px solid var(--sw-line);
}

.sw-header-top {
    background: #f4faed;
    border-bottom: 1px solid #dfead5;
    font-size: 13px;
}

.sw-header-top__inner,
.sw-header-main__inner,
.sw-header-nav__inner {
    width: min(var(--sw-content), calc(100% - 32px));
    margin: 0 auto;
}

.sw-header-top__inner {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sw-header-top__links,
.sw-header-top__tools,
.sw-header-actions,
.sw-header-nav__links {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sw-header-top a,
.sw-header-main a,
.sw-header-nav a,
.sw-footer a {
    color: inherit;
    text-decoration: none;
}

.sw-header-top a:hover,
.sw-header-main a:hover,
.sw-header-nav a:hover,
.sw-footer a:hover {
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-header-main {
    position: sticky;
    top: 0;
    z-index: 210;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(18, 31, 26, .06);
}

.sw-header-main__inner {
    min-height: 78px;
    display: grid;
    grid-template-columns: minmax(180px, 260px) minmax(260px, 1fr) auto;
    align-items: center;
    gap: 22px;
}

.sw-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.sw-brand__mark {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid #dfead5;
    background: #fff;
    object-fit: contain;
    padding: 4px;
}

.sw-brand__text {
    min-width: 0;
    display: flex;
    flex-direction: column;
    line-height: 1.08;
}

.sw-brand__name {
    color: var(--sw-ink);
    font-size: 23px;
    font-weight: 800;
    letter-spacing: 0;
}

.sw-brand__tagline {
    color: var(--sw-muted);
    font-size: 12px;
    margin-top: 4px;
}

.sw-header-search {
    min-width: 0;
}

.sw-search-keywords {
    display: flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin-top: 7px;
    color: var(--sw-muted);
    font-size: 12px;
    white-space: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.sw-search-keywords::-webkit-scrollbar {
    display: none;
}

.sw-search-keywords span {
    flex: 0 0 auto;
    font-weight: 900;
    color: var(--sw-primary-dark);
}

.sw-search-keywords a {
    flex: 0 0 auto;
    color: var(--sw-muted);
    font-weight: 800;
}

.sw-search-form {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    height: 48px;
    border: 2px solid var(--sw-primary);
    border-radius: 8px;
    background: #fff;
    overflow: visible;
}

.sw-search-form input {
    min-width: 0;
    width: 100%;
    height: 44px;
    border: 0;
    background: transparent;
    padding: 0 16px;
    font-size: 15px;
    color: var(--sw-ink);
    outline: 0;
}

.sw-search-form button {
    height: 44px;
    border: 0;
    background: var(--sw-primary);
    color: #fff;
    padding: 0 22px;
    font-weight: 800;
    cursor: pointer;
}

.sw-search-form button:hover {
    background: var(--sw-primary-dark);
}

.sw-header-action {
    min-width: 82px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 42px;
    padding: 8px 10px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    color: var(--sw-ink);
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    transition: background .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease, transform .18s ease;
}

.sw-header-action-menu {
    position: relative;
    display: inline-flex;
}

.sw-header-action-menu::after {
    content: "";
    position: absolute;
    top: 100%;
    right: 0;
    width: 100%;
    height: 12px;
    display: none;
}

.sw-header-action:hover,
.sw-header-action:focus-visible,
.sw-header-action-menu:hover > .sw-header-action,
.sw-header-action-menu:focus-within > .sw-header-action {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
    box-shadow: 0 10px 22px rgba(37, 131, 79, .14);
    transform: translateY(-1px);
}

.sw-header-action i {
    font-size: 16px;
}

.sw-header-action-panel {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 620;
    width: min(360px, calc(100vw - 32px));
    padding: 14px;
    border: 1px solid #dce8d5;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 22px 48px rgba(20, 38, 31, .18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}

.sw-header-action-menu--cart .sw-header-action-panel {
    width: min(380px, calc(100vw - 32px));
}

.sw-header-action-menu:hover::after,
.sw-header-action-menu:hover > .sw-header-action-panel,
.sw-header-action-menu:focus-within > .sw-header-action-panel {
    display: block;
}

.sw-header-action-menu:hover > .sw-header-action-panel,
.sw-header-action-menu:focus-within > .sw-header-action-panel {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.sw-action-panel-head {
    display: grid;
    gap: 5px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--sw-line);
}

.sw-action-panel-head strong {
    color: var(--sw-ink);
    font-size: 15px;
    font-weight: 900;
}

.sw-action-panel-head span {
    color: var(--sw-muted);
    font-size: 12px;
    line-height: 1.4;
}

.sw-action-panel-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 12px;
}

.sw-action-primary,
.sw-action-secondary {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 900;
    text-align: center;
}

.sw-action-primary {
    border: 1px solid var(--sw-primary);
    background: var(--sw-primary);
    color: #fff !important;
}

.sw-action-primary:hover {
    background: var(--sw-primary-dark);
    border-color: var(--sw-primary-dark);
    color: #fff !important;
}

.sw-action-secondary {
    border: 1px solid var(--sw-line);
    background: #f8fbf6;
    color: var(--sw-primary-dark) !important;
}

.sw-action-secondary:hover {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark) !important;
}

.sw-action-wide {
    width: 100%;
    margin-top: 12px;
}

.sw-action-menu-grid {
    display: grid;
    gap: 6px;
    margin-top: 10px;
}

.sw-action-menu-link {
    min-height: 40px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 10px;
    border-radius: 8px;
    color: var(--sw-ink) !important;
    font-size: 13px;
    font-weight: 800;
}

.sw-action-menu-link i {
    width: 18px;
    color: var(--sw-primary);
    text-align: center;
}

.sw-action-menu-link:hover,
.sw-action-menu-link:focus-visible {
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark) !important;
}

.sw-action-menu-link--button {
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
    text-align: left;
}

.sw-header-account-panel form {
    margin: 8px 0 0;
    padding-top: 8px;
    border-top: 1px solid var(--sw-line);
}

.sw-mini-cart-list {
    display: grid;
    gap: 8px;
    margin-top: 12px;
}

.sw-mini-cart-item {
    display: grid;
    grid-template-columns: 46px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
    padding: 8px;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--sw-ink) !important;
}

.sw-mini-cart-item:hover {
    border-color: var(--sw-line);
    background: #f8fbf6;
    color: var(--sw-primary-dark) !important;
}

.sw-mini-cart-item img {
    width: 46px;
    height: 46px;
    border-radius: 8px;
    background: #f5f8f2;
    object-fit: contain;
}

.sw-mini-cart-item span {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.sw-mini-cart-item strong {
    overflow: hidden;
    color: inherit;
    font-size: 13px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sw-mini-cart-item small,
.sw-mini-cart-more {
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 700;
}

.sw-mini-cart-item b {
    color: var(--sw-primary-dark);
    font-size: 13px;
    font-weight: 900;
}

.sw-mini-cart-more {
    padding: 3px 8px 0;
}

.sw-mini-cart-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--sw-line);
    font-size: 14px;
    font-weight: 900;
}

.sw-mini-cart-total strong {
    color: var(--sw-primary-dark);
}

.sw-mini-cart-empty {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 18px 10px 8px;
    color: var(--sw-muted);
    text-align: center;
}

.sw-mini-cart-empty i {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sw-primary-soft);
    color: var(--sw-primary);
    font-size: 18px;
}

.sw-mini-cart-empty strong {
    color: var(--sw-ink);
    font-size: 14px;
}

.sw-mini-cart-empty span {
    font-size: 12px;
    line-height: 1.4;
}

.sw-cart-count-badge,
.sw-mobile-cart-badge {
    min-width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sw-accent);
    color: #fff;
    font-size: 12px;
    font-weight: 800;
}

.sw-mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    color: var(--sw-ink);
}

.sw-mobile-language-switcher {
    display: none;
}

.sw-header-nav {
    background: #fff;
    border-top: 1px solid #edf2ea;
}

.sw-header-nav__inner {
    min-height: 45px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.sw-category-trigger {
    position: relative;
}

.sw-category-trigger::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: min(1040px, calc(100vw - 32px));
    height: 10px;
    display: none;
    z-index: 499;
}

.sw-category-trigger:hover::after,
.sw-category-trigger:focus-within::after,
.sw-category-trigger.is-open::after {
    display: block;
}

.sw-category-trigger__button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 36px;
    padding: 0 14px;
    border: 0;
    border-radius: 8px;
    background: var(--sw-primary);
    color: #fff;
    font-weight: 800;
    cursor: pointer;
}

.sw-category-trigger__button,
.sw-category-trigger__button i,
.sw-category-trigger__button span {
    color: #fff !important;
}

.sw-category-trigger__button:hover {
    color: #fff !important;
    text-decoration: none;
}

.sw-category-mega {
    position: absolute;
    left: 0;
    top: calc(100% + 8px);
    width: min(1040px, calc(100vw - 32px));
    display: none;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--sw-shadow);
    z-index: 500;
}

.sw-category-trigger:hover .sw-category-mega,
.sw-category-trigger:focus-within .sw-category-mega,
.sw-category-trigger.is-open .sw-category-mega {
    display: grid;
}

.sw-category-mega__rail {
    min-width: 0;
    padding: 8px;
    border-radius: 8px;
    background: #f6faef;
}

.sw-category-mega__label {
    padding: 6px 8px 9px;
    color: var(--sw-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-mega-department {
    display: flex;
    align-items: center;
    min-height: 39px;
    gap: 8px;
    padding: 7px 8px;
    border-radius: 8px;
    color: var(--sw-ink);
    font-weight: 800;
    font-size: 13px;
}

.sw-mega-department:hover {
    background: #fff;
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-mega-department img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.sw-mega-department span {
    min-width: 0;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sw-mega-department i {
    color: var(--sw-muted);
    font-size: 10px;
}

.sw-category-mega__content {
    min-width: 0;
}

.sw-category-mega__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 10px;
    padding: 4px 2px 10px;
    border-bottom: 1px solid var(--sw-line);
}

.sw-category-mega__head strong,
.sw-category-mega__head span {
    display: block;
}

.sw-category-mega__head strong {
    color: var(--sw-ink);
    font-size: 16px;
}

.sw-category-mega__head span {
    color: var(--sw-muted);
    font-size: 12px;
}

.sw-category-mega__head a {
    font-weight: 900;
    color: var(--sw-primary-dark);
    white-space: nowrap;
}

.sw-mega-quicklinks,
.sw-home-shortcuts,
.sw-mega-panel__links {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.sw-mega-quicklinks {
    margin-bottom: 12px;
}

.sw-mega-service-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 12px;
}

.sw-mega-service-row a {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    min-height: 64px;
    padding: 10px;
    border: 1px solid #e4eedc;
    border-radius: 8px;
    background: #fbfdf8;
    color: var(--sw-ink);
}

.sw-mega-service-row a:hover {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
}

.sw-mega-service-row i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #fff;
    color: var(--sw-primary-dark);
}

.sw-mega-service-row strong,
.sw-mega-service-row small {
    display: block;
    min-width: 0;
}

.sw-mega-service-row strong {
    font-size: 13px;
    font-weight: 900;
}

.sw-mega-service-row small {
    color: var(--sw-muted);
    font-size: 11px;
    line-height: 1.25;
}

.sw-mega-panels {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    max-height: 420px;
    overflow-y: auto;
    padding-right: 4px;
}

.sw-mega-panel {
    min-width: 0;
    padding: 10px;
    border: 1px solid #eef3e9;
    border-radius: 8px;
    background: #fff;
}

.sw-mega-panel__title {
    display: inline-flex;
    margin-bottom: 8px;
    color: var(--sw-ink);
    font-size: 14px;
    font-weight: 900;
}

.sw-mega-panel__title:hover {
    color: var(--sw-primary-dark);
}

.sw-mega-quicklinks a,
.sw-mega-panel__links a,
.sw-nav-chip,
.sw-filter-chip,
.sw-category-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid var(--sw-line);
    color: var(--sw-ink);
    font-size: 13px;
    font-weight: 700;
}

.sw-mega-quicklinks a,
.sw-mega-panel__links a {
    padding: 6px 9px;
}

.sw-mega-quicklinks a {
    border-color: #d7e8c9;
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
}

.sw-mega-panel__links a {
    max-width: 100%;
}

.sw-header-nav__links {
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.sw-header-nav__links::-webkit-scrollbar {
    display: none;
}

.sw-nav-chip {
    flex: 0 0 auto;
    min-height: 32px;
    padding: 0 13px;
}

.sw-nav-chip.is-sale {
    border-color: #ffd0b1;
    background: var(--sw-accent-soft);
    color: #b74b00;
}

.sw-mobile-drawer {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
}

.sw-mobile-drawer.is-open {
    display: block;
}

.sw-mobile-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .42);
}

.sw-mobile-drawer__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(86vw, 380px);
    height: 100%;
    background: #fff;
    padding: 18px;
    overflow-y: auto;
    box-shadow: -20px 0 44px rgba(0, 0, 0, .18);
}

.sw-mobile-drawer__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.sw-mobile-drawer__close {
    width: 38px;
    height: 38px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-mobile-drawer__service {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 14px;
}

.sw-mobile-drawer__service a {
    min-width: 0;
    min-height: 72px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 8px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #f8faf6;
    color: var(--sw-ink);
    text-align: center;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
}

.sw-mobile-drawer__service i {
    color: var(--sw-primary-dark);
    font-size: 18px;
}

.sw-mobile-drawer__language {
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #f8faf6;
}

.sw-mobile-drawer__language > span {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-mobile-drawer__language > span i {
    color: var(--sw-primary-dark);
}

.sw-mobile-drawer__language > div {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
}

.sw-mobile-drawer__language a {
    min-width: 0;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid #dfead5;
    border-radius: 8px;
    background: #fff;
    color: var(--sw-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.sw-mobile-drawer__language a.is-active {
    border-color: var(--sw-primary);
    background: var(--sw-primary);
    color: #fff;
}

.sw-mobile-drawer__links,
.sw-footer-links,
.sw-filter-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sw-mobile-drawer__links a,
.sw-mobile-drawer__links button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 12px 0;
    border-bottom: 1px solid var(--sw-line);
    border-top: 0;
    border-right: 0;
    border-left: 0;
    background: transparent;
    color: var(--sw-ink);
    font-weight: 800;
    text-align: left;
    cursor: pointer;
}

.sw-mobile-drawer__logout {
    margin: 0;
}

.sw-mobile-drawer__category-block {
    padding: 12px 0;
    border-bottom: 1px solid var(--sw-line);
}

.sw-mobile-drawer__category-block > span {
    display: block;
    margin-bottom: 8px;
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-mobile-drawer__category-block > div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sw-mobile-drawer__category-block a {
    display: inline-flex;
    width: auto;
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--sw-line);
    border-radius: 999px;
    background: #fff;
    color: var(--sw-ink);
    font-size: 12px;
    font-weight: 800;
}

.sw-mobile-tabbar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 240;
    display: none;
    min-height: 62px;
    padding: 7px max(10px, env(safe-area-inset-left)) max(7px, env(safe-area-inset-bottom)) max(10px, env(safe-area-inset-right));
    background: rgba(255, 255, 255, .97);
    border-top: 1px solid var(--sw-line);
    box-shadow: 0 -8px 28px rgba(18, 31, 26, .08);
}

.sw-mobile-tabbar__item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: var(--sw-muted);
    font-size: 11px;
    font-weight: 800;
}

.sw-mobile-tabbar__item i {
    font-size: 19px;
}

.sw-mobile-tabbar__item.is-active,
.sw-mobile-tabbar__item:hover {
    color: var(--sw-primary-dark);
}

.sw-mobile-cart-badge {
    position: absolute;
    top: -4px;
    right: calc(50% - 26px);
    min-width: 19px;
    height: 19px;
    font-size: 11px;
}

.sw-home-page,
.sw-catalog-page,
.sw-category-directory-page {
    background: var(--sw-page);
}

.sw-home-hero {
    padding: 22px 0 18px;
}

.sw-home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 16px;
}

.sw-promo-stage {
    position: relative;
    min-height: 360px;
    border-radius: 8px;
    overflow: hidden;
    background: #dfead5;
    box-shadow: var(--sw-shadow);
}

.sw-promo-stage__slide {
    position: absolute;
    inset: 0;
    display: block;
    color: inherit;
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.sw-promo-stage__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.sw-promo-stage__slide:focus {
    outline: none;
}

.sw-promo-stage__slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-promo-stage__overlay {
    position: absolute;
    inset: auto 0 0;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    padding: 28px;
    color: #fff;
    background: linear-gradient(0deg, rgba(0, 0, 0, .58), rgba(0, 0, 0, 0));
}

.sw-promo-stage.has-controls .sw-promo-stage__overlay {
    padding-left: 64px;
    padding-right: 64px;
    padding-bottom: 44px;
}

.sw-promo-stage__copy {
    max-width: 560px;
}

.sw-promo-stage__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 50%;
    color: var(--sw-primary);
    background: rgba(255, 255, 255, .92);
    box-shadow: 0 10px 28px rgba(0, 0, 0, .2);
    transform: translateY(-50%);
    transition: transform .18s ease, background .18s ease, color .18s ease;
}

.sw-promo-stage__arrow:hover,
.sw-promo-stage__arrow:focus {
    color: #fff;
    background: var(--sw-primary);
    transform: translateY(-50%) scale(1.04);
}

.sw-promo-stage__arrow--prev {
    left: 14px;
}

.sw-promo-stage__arrow--next {
    right: 14px;
}

.sw-promo-stage__dots {
    position: absolute;
    left: 50%;
    bottom: 13px;
    z-index: 7;
    display: flex;
    gap: 7px;
    align-items: center;
    padding: 5px 7px;
    border-radius: 999px;
    background: rgba(0, 0, 0, .24);
    backdrop-filter: blur(8px);
    transform: translateX(-50%);
}

.sw-promo-stage__dot {
    width: 8px;
    height: 8px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, .58);
    transition: width .18s ease, background .18s ease;
}

.sw-promo-stage__dot.is-active {
    width: 21px;
    background: #fff;
}

.sw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--sw-primary-soft);
}

.sw-promo-stage h1 {
    margin: 0 0 8px;
    color: #fff;
    font-size: clamp(28px, 4vw, 50px);
    line-height: 1.03;
    font-weight: 900;
    letter-spacing: 0;
}

.sw-promo-stage p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
}

.sw-button,
.sw-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 17px;
    border-radius: 8px;
    font-weight: 900;
    border: 1px solid transparent;
    white-space: nowrap;
}

.sw-button {
    background: var(--sw-primary);
    color: #fff;
}

.sw-button:hover {
    background: var(--sw-primary-dark);
    color: #fff;
}

.sw-button-secondary {
    border-color: var(--sw-line);
    background: #fff;
    color: var(--sw-ink);
}

.sw-button-secondary:hover {
    border-color: var(--sw-primary);
    color: var(--sw-primary-dark);
}

.sw-hero-side {
    display: grid;
    gap: 14px;
}

.sw-side-card {
    min-height: 172px;
    padding: 18px;
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--sw-shadow);
    overflow: hidden;
    position: relative;
}

.sw-side-card--fresh {
    background: linear-gradient(135deg, #f2fbdf, #ffffff);
}

.sw-side-card--seller {
    background: linear-gradient(135deg, #eef9d7, #ffffff);
}

.sw-side-card--ship {
    background: linear-gradient(135deg, #fff5e8, #ffffff);
}

.sw-side-card h3 {
    margin: 0 0 8px;
    font-size: 21px;
    line-height: 1.12;
    font-weight: 900;
}

.sw-side-card p {
    margin: 0 0 14px;
    color: var(--sw-muted);
}

.sw-side-card i {
    position: absolute;
    right: 18px;
    bottom: 12px;
    color: rgba(95, 143, 0, .2);
    font-size: 74px;
}

.sw-home-shortcuts {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 14px;
    padding: 10px 12px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-home-shortcuts > span {
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-home-shortcuts a {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
    font-size: 12px;
    font-weight: 900;
}

.sw-home-shortcuts a:hover {
    background: var(--sw-primary);
    color: #fff;
    text-decoration: none;
}

.sw-home-coupon-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 0 0 16px;
}

.sw-home-coupon-strip a {
    position: relative;
    min-height: 78px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    padding: 14px 54px 14px 16px;
    border: 1px solid #d9e8ce;
    border-radius: 8px;
    background: #fff;
    color: var(--sw-ink);
    overflow: hidden;
}

.sw-home-coupon-strip a:nth-child(2) {
    border-color: #ffd8bd;
    background: #fffaf5;
}

.sw-home-coupon-strip a:hover {
    transform: translateY(-1px);
    box-shadow: var(--sw-shadow);
    text-decoration: none;
}

.sw-home-coupon-strip span {
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-home-coupon-strip strong {
    color: var(--sw-ink);
    font-size: 16px;
    line-height: 1.2;
}

.sw-home-coupon-strip i {
    position: absolute;
    right: 14px;
    bottom: 12px;
    color: rgba(95, 143, 0, .22);
    font-size: 42px;
}

.sw-market-category-block {
    margin: 0 0 18px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.sw-market-category-block__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 14px 0;
}

.sw-market-category-block__head span,
.sw-market-category-block__head strong {
    display: block;
}

.sw-market-category-block__head span {
    color: var(--sw-muted);
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-market-category-block__head strong {
    color: var(--sw-ink);
    font-size: 18px;
    font-weight: 900;
}

.sw-market-category-block__head a {
    color: var(--sw-primary-dark);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.sw-market-category-strip {
    display: flex;
    gap: 10px;
    margin: 0;
    padding: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.sw-market-category-strip::-webkit-scrollbar {
    display: none;
}

.sw-market-category-strip a {
    flex: 0 0 108px;
    min-height: 112px;
    display: grid;
    grid-template-rows: 58px auto;
    align-items: center;
    justify-items: center;
    gap: 8px;
    padding: 10px 8px;
    border-radius: 8px;
    background: #f8faf6;
    color: var(--sw-ink);
    font-size: 12px;
    font-weight: 900;
    line-height: 1.15;
    text-align: center;
}

.sw-market-category-strip a:hover {
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-market-category-strip img {
    width: 58px;
    height: 58px;
    border: 1px solid rgba(37, 131, 79, .14);
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 8px 18px rgba(31, 41, 31, .08);
    object-fit: cover;
}

.sw-market-category-strip .is-all {
    background: var(--sw-primary);
    color: #fff;
}

.sw-market-category-strip .is-all i {
    font-size: 26px;
}

.sw-service-strip {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 22px;
}

.sw-service-pill {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-service-pill i {
    width: 42px;
    height: 42px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
    font-size: 18px;
}

.sw-service-pill strong {
    display: block;
    font-size: 14px;
}

.sw-service-pill span {
    display: block;
    color: var(--sw-muted);
    font-size: 12px;
    line-height: 1.35;
}

.sw-section {
    margin: 0 0 28px;
}

.sw-section__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.sw-section__title {
    margin: 0;
    font-size: 24px;
    line-height: 1.12;
    font-weight: 900;
    color: var(--sw-ink);
}

.sw-section__subtitle {
    margin: 4px 0 0;
    color: var(--sw-muted);
    font-size: 14px;
}

.sw-category-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 12px;
}

.sw-category-directory-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 420px);
    gap: 18px;
    align-items: end;
}

.sw-category-directory-hero .sw-eyebrow {
    color: var(--sw-primary-dark);
}

.sw-category-directory-copy {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--sw-muted);
    font-size: 16px;
    line-height: 1.55;
}

.sw-category-directory-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.sw-category-directory-stats span {
    min-height: 78px;
    padding: 13px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 800;
}

.sw-category-directory-stats strong {
    display: block;
    margin-bottom: 4px;
    color: var(--sw-ink);
    font-size: 28px;
    line-height: 1;
}

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

.sw-department-card {
    min-width: 0;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

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

.sw-department-card.is-shipping-eligible {
    border-color: #f3d1b5;
    background: linear-gradient(135deg, #fff8f1, #ffffff);
}

.sw-department-card__main {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    color: var(--sw-ink);
}

.sw-department-card__main:hover {
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-department-card__icon {
    width: 54px;
    height: 54px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f8faf6;
}

.sw-department-card__icon img {
    width: 38px;
    height: 38px;
    object-fit: contain;
}

.sw-department-card__copy {
    min-width: 0;
}

.sw-department-card__title {
    display: block;
    color: var(--sw-ink);
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.sw-department-card__meta {
    display: block;
    margin-top: 4px;
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 800;
}

.sw-department-card__badges,
.sw-department-card__children,
.sw-category-chip-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sw-department-card__badges {
    margin-top: 12px;
}

.sw-department-card__badges span,
.sw-department-card__children a,
.sw-category-chip-cloud a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--sw-line);
    border-radius: 999px;
    background: #fff;
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 800;
}

.sw-department-card__badges span:first-child {
    border-color: #d9e8ce;
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
}

.sw-department-card.is-shipping-eligible .sw-department-card__badges span:first-child,
.sw-category-chip-cloud a {
    border-color: #ffd8bd;
    background: var(--sw-accent-soft);
    color: #ad4f06;
}

.sw-department-card__children {
    margin-top: 12px;
}

.sw-department-card__children a:hover,
.sw-category-chip-cloud a:hover {
    border-color: var(--sw-primary);
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-category-tile {
    min-height: 130px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: var(--sw-ink);
}

.sw-category-tile:hover {
    border-color: var(--sw-primary);
    box-shadow: var(--sw-shadow);
    transform: translateY(-2px);
}

.sw-category-tile__icon {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.sw-category-tile__name {
    margin-top: 10px;
    font-weight: 900;
    line-height: 1.18;
}

.sw-category-tile__meta {
    margin-top: 5px;
    color: var(--sw-muted);
    font-size: 12px;
}

.sw-section__actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.sw-rail-controls {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.sw-rail-controls button {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sw-line);
    border-radius: 999px;
    background: #fff;
    color: var(--sw-ink);
    box-shadow: 0 8px 18px rgba(24, 33, 31, .06);
    cursor: pointer;
}

.sw-rail-controls button:hover {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
}

.sw-rail-controls button:disabled {
    opacity: .38;
    cursor: default;
    box-shadow: none;
}

.sw-product-rail-shell {
    min-width: 0;
}

.sw-product-rail {
    display: flex;
    gap: 12px;
    min-width: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 8px;
    scroll-behavior: smooth;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.sw-product-rail::-webkit-scrollbar {
    display: none;
}

.sw-product-rail .sw-product-card {
    flex: 0 0 clamp(178px, 15.5vw, 216px);
    scroll-snap-align: start;
}

.sw-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(176px, 1fr));
    gap: 12px;
    align-items: stretch;
    min-width: 0;
}

.sw-product-card {
    position: relative;
    min-width: 0;
    min-height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
    transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

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

.sw-product-card__image {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    background: #f8faf6;
    overflow: hidden;
}

.sw-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.sw-product-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    display: inline-flex;
    align-items: center;
    min-height: 24px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--sw-accent);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.sw-product-badge--stock {
    background: #7c8790;
}

.sw-product-badge--cool {
    left: auto;
    right: 10px;
    background: #0d8ccf;
}

.sw-product-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 12px;
}

.sw-product-card__name {
    min-height: 38px;
    margin: 0 0 6px;
    color: var(--sw-ink);
    font-size: 14px;
    font-weight: 900;
    line-height: 1.32;
}

.sw-product-card__name a {
    color: inherit;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sw-product-card__details {
    min-height: 32px;
    margin: 0 0 8px;
    color: var(--sw-muted);
    font-size: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sw-product-card__meta {
    min-height: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 9px;
}

.sw-product-tag {
    display: inline-flex;
    align-items: center;
    min-height: 20px;
    padding: 0 7px;
    border-radius: 999px;
    background: #f4f7f1;
    color: var(--sw-muted);
    font-size: 11px;
    font-weight: 800;
}

.sw-product-card__price-row {
    margin-top: auto;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    min-width: 0;
}

.sw-product-card__price-row > div {
    min-width: 0;
}

.sw-product-price {
    color: var(--sw-danger);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.sw-product-was {
    color: var(--sw-muted);
    font-size: 12px;
    overflow-wrap: anywhere;
}

.sw-add-button,
.sw-out-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    min-height: 36px;
    padding: 0 12px;
    border-radius: 8px;
    font-weight: 900;
    white-space: nowrap;
}

.sw-add-button {
    background: var(--sw-primary);
    color: #fff;
    border: 1px solid rgba(37, 131, 79, .12);
    box-shadow: 0 8px 18px rgba(37, 131, 79, .16);
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.sw-add-button:hover {
    background: var(--sw-primary-dark);
    color: #fff;
    box-shadow: 0 10px 22px rgba(37, 131, 79, .2);
    transform: translateY(-1px);
}

.sw-out-button {
    background: #eef0ee;
    color: #6a7370;
}

.sw-product-card__admin {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--sw-line);
    color: var(--sw-muted);
    font-size: 12px;
}

.sw-product-card__admin-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 8px;
}

.sw-admin-control {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 28px;
    padding: 0 9px;
    border: 1px solid transparent;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease, background .16s ease;
}

.sw-admin-control:hover {
    transform: translateY(-1px);
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(31, 41, 31, .12);
}

.sw-admin-control--muted {
    border-color: #d5ddd0;
    background: #f7faf5;
    color: #536257;
}

.sw-admin-control--info {
    background: #eaf5ff;
    color: #1e628a;
}

.sw-admin-control--warning {
    background: #fff4d8;
    color: #8a5600;
}

.sw-admin-control--success {
    background: #e7f6ec;
    color: #1d6b3a;
}

.sw-admin-control--primary {
    background: var(--sw-primary);
    color: #fff;
}

@media (min-width: 1500px) {
    .sw-product-grid {
        grid-template-columns: repeat(auto-fill, minmax(164px, 1fr));
        gap: 12px;
    }

    .sw-product-grid .sw-product-card__body {
        padding: 10px;
    }

    .sw-product-grid .sw-product-card__name {
        min-height: 36px;
        font-size: 13px;
        line-height: 1.28;
    }

    .sw-product-grid .sw-product-card__details {
        min-height: 30px;
        font-size: 11px;
    }

    .sw-product-grid .sw-product-tag {
        min-height: 19px;
        padding: 0 6px;
        font-size: 10px;
    }

    .sw-product-grid .sw-product-card__price-row {
        display: block;
    }

    .sw-product-grid .sw-product-price {
        font-size: 16px;
    }

    .sw-product-grid .sw-add-button,
    .sw-product-grid .sw-out-button {
        width: 100%;
        min-height: 34px;
        margin-top: 8px;
        padding: 0 8px;
        font-size: 12px;
    }
}

.sw-catalog-hero {
    padding: 24px 0 14px;
    background: linear-gradient(135deg, #f0f9e5, #ffffff);
    border-bottom: 1px solid var(--sw-line);
}

.sw-catalog-crumb-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
    margin-bottom: 10px;
}

.sw-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    min-width: 0;
    margin-bottom: 0;
    color: var(--sw-muted);
    font-size: 13px;
}

.sw-breadcrumb a {
    color: var(--sw-muted);
}

.sw-catalog-crumb-image {
    position: relative;
    flex: 0 0 78px;
    width: 78px;
    height: 78px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #dbead2;
    border-radius: 8px;
    background: rgba(255, 255, 255, .78);
    box-shadow: 0 12px 26px rgba(24, 33, 31, .08);
    overflow: hidden;
}

.sw-catalog-crumb-image::after {
    content: "";
    position: absolute;
    inset: 8px;
    border-radius: 8px;
    border: 1px solid rgba(37, 131, 79, .08);
    pointer-events: none;
}

.sw-catalog-crumb-image img {
    display: block;
}

.sw-catalog-crumb-image.is-icon img {
    width: 58%;
    height: 58%;
    object-fit: contain;
}

.sw-catalog-crumb-image.has-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sw-catalog-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.sw-catalog-title-row--market {
    align-items: center;
}

.sw-market-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 8px;
    color: var(--sw-primary-dark);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-catalog-service-card {
    min-width: min(360px, 100%);
    display: grid;
    gap: 7px;
    padding: 13px 15px;
    border: 1px solid #d9e8ce;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    color: var(--sw-muted);
    font-size: 13px;
    font-weight: 800;
}

.sw-catalog-service-card span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.sw-catalog-service-card a {
    color: var(--sw-primary-dark);
    font-weight: 900;
}

.sw-catalog-title {
    margin: 0;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.03;
    font-weight: 900;
}

.sw-catalog-count {
    color: var(--sw-muted);
    font-weight: 800;
}

.sw-subcategory-scroll {
    display: flex;
    gap: 9px;
    max-width: 100%;
    min-width: 0;
    margin-top: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;
}

.sw-subcategory-scroll::-webkit-scrollbar {
    display: none;
}

.sw-category-chip {
    flex: 0 0 auto;
    min-height: 34px;
    padding: 0 12px;
}

.sw-category-chip.is-active,
.sw-filter-chip.is-active {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
}

.sw-catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 18px;
    padding: 20px 0 34px;
}

.sw-catalog-layout > section {
    min-width: 0;
}

.sw-filter-panel {
    position: sticky;
    top: var(--sw-sticky-header-offset);
    align-self: start;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
    padding: 16px;
}

.sw-filter-panel__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.sw-filter-panel__title {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
}

.sw-filter-group {
    padding: 14px 0;
    border-top: 1px solid var(--sw-line);
}

.sw-filter-group:first-of-type {
    border-top: 0;
    padding-top: 0;
}

.sw-filter-label {
    display: block;
    margin-bottom: 8px;
    color: var(--sw-ink);
    font-size: 13px;
    font-weight: 900;
}

.sw-filter-list li + li {
    margin-top: 8px;
}

.sw-filter-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    color: var(--sw-muted);
    font-weight: 700;
}

.sw-filter-list a.is-active,
.sw-filter-list a:hover {
    color: var(--sw-primary-dark);
}

.sw-filter-count {
    color: #96a09e;
    font-size: 12px;
}

.sw-filter-input,
.sw-filter-select {
    width: 100%;
    min-height: 40px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    padding: 0 11px;
    background: #fff;
    color: var(--sw-ink);
}

.sw-filter-range {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

.sw-filter-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 14px;
}

.sw-catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-width: 0;
    margin-bottom: 14px;
    padding: 12px;
    border: 1px solid var(--sw-line);
    border-radius: 8px;
    background: #fff;
}

.sw-catalog-toolbar--sticky {
    position: sticky;
    top: var(--sw-sticky-header-offset);
    z-index: 80;
    box-shadow: 0 8px 20px rgba(24, 33, 31, .05);
}

.sw-catalog-toolbar > * {
    min-width: 0;
}

.sw-catalog-toolbar__left {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.sw-catalog-toolbar__label {
    color: var(--sw-muted);
    font-size: 12px;
}

.sw-catalog-toolbar__strong {
    font-weight: 900;
}

.sw-sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sw-catalog-toolbar__controls .sw-filter-label {
    flex: 0 0 auto;
    margin-bottom: 0;
    white-space: nowrap;
}

.sw-catalog-toolbar__controls .sw-filter-select {
    flex: 0 1 auto;
    width: auto;
    min-width: 138px;
}

.sw-catalog-toolbar__controls #catalog-per-page {
    min-width: 86px;
}

.sw-active-filter-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: -4px 0 14px;
    padding: 10px 12px;
    border: 1px solid #dfead5;
    border-radius: 8px;
    background: #fbfdf8;
}

.sw-active-filter-row > span {
    color: var(--sw-muted);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sw-active-filter-row a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid #d7e8c9;
    border-radius: 999px;
    background: #fff;
    color: var(--sw-ink);
    font-size: 12px;
    font-weight: 900;
}

.sw-active-filter-row a:hover,
.sw-active-filter-row .is-reset {
    border-color: var(--sw-primary);
    background: var(--sw-primary-soft);
    color: var(--sw-primary-dark);
    text-decoration: none;
}

.sw-mobile-filter-toggle {
    display: none;
    min-width: 0;
}

.sw-empty-state {
    padding: 44px 20px;
    border: 1px dashed #ccd8c5;
    border-radius: 8px;
    background: #fff;
    text-align: center;
}

.sw-empty-state i {
    color: var(--sw-primary);
    font-size: 42px;
    margin-bottom: 12px;
}

.sw-pagination {
    margin-top: 22px;
    max-width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
}

.sw-pagination .pagination {
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-bottom: 0;
}

.sw-pagination .page-item {
    margin: 0;
}

.sw-pagination .page-link {
    min-width: 38px;
    border-radius: 8px;
    text-align: center;
}

.sw-mobile-infinite {
    display: none;
    margin-top: 18px;
    text-align: center;
}

.sw-mobile-infinite__button,
.sw-mobile-infinite__loading,
.sw-mobile-infinite__complete,
.sw-mobile-infinite__error {
    width: 100%;
    justify-content: center;
}

.sw-mobile-infinite__loading,
.sw-mobile-infinite__complete,
.sw-mobile-infinite__error {
    display: none;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 900;
}

.sw-mobile-infinite__loading {
    color: var(--sw-muted);
    background: #f7faf4;
}

.sw-mobile-infinite__complete {
    color: var(--sw-primary-dark);
    background: var(--sw-primary-soft);
}

.sw-mobile-infinite__error {
    color: #9b241d;
    background: #fff1ef;
}

.sw-mobile-infinite__spinner {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    border: 2px solid currentColor;
    border-right-color: transparent;
    border-radius: 50%;
    animation: sw-spin .72s linear infinite;
}

.sw-mobile-infinite__sentinel {
    height: 1px;
}

.sw-mobile-infinite.is-loading .sw-mobile-infinite__loading,
.sw-mobile-infinite.is-complete .sw-mobile-infinite__complete {
    display: flex;
}

.sw-mobile-infinite__error:not([hidden]) {
    display: flex;
}

.sw-footer {
    background: #fff;
    border-top: 1px solid var(--sw-line);
}

.sw-footer__top {
    padding: 34px 0 26px;
}

.sw-footer__grid {
    display: grid;
    grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.sw-footer__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.sw-footer__brand img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    object-fit: contain;
    border: 1px solid var(--sw-line);
    padding: 4px;
}

.sw-footer__brand strong,
.sw-footer__title {
    color: var(--sw-ink);
    font-weight: 900;
}

.sw-footer__copy {
    color: var(--sw-muted);
    line-height: 1.55;
}

.sw-footer__title {
    margin: 0 0 12px;
    font-size: 15px;
}

.sw-footer-links li + li {
    margin-top: 8px;
}

.sw-footer-links a {
    color: var(--sw-muted);
    font-weight: 700;
}

.sw-footer__contact {
    display: grid;
    gap: 8px;
    color: var(--sw-muted);
}

.sw-payment-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.sw-payment-row img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
}

.sw-footer__bottom {
    padding: 18px 0;
    border-top: 1px solid var(--sw-line);
    color: var(--sw-muted);
    font-size: 13px;
}

.sw-footer__bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

@media (max-width: 1199px) {
    .sw-product-rail,
    .sw-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (max-width: 991px) {
    .sw-header-top {
        display: none;
    }

    .sw-header-main__inner {
        min-height: 70px;
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 12px;
    }

    .sw-brand__tagline,
    .sw-header-actions,
    .sw-header-nav {
        display: none;
    }

    .sw-brand__name {
        font-size: 18px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sw-brand__mark {
        width: 38px;
        height: 38px;
    }

    .sw-mobile-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .sw-mobile-language-switcher {
        justify-self: end;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        padding: 3px;
        border: 1px solid #dfead5;
        border-radius: 999px;
        background: #f8faf6;
    }

    .sw-mobile-language-switcher a {
        min-width: 31px;
        height: 30px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        border-radius: 999px;
        color: var(--sw-muted);
        font-size: 12px;
        font-weight: 900;
        line-height: 1;
        text-decoration: none;
    }

    .sw-mobile-language-switcher a.is-active {
        background: var(--sw-primary);
        color: #fff;
        box-shadow: 0 5px 12px rgba(37, 131, 79, .24);
    }

    .sw-mobile-language-switcher a:not(.is-active):hover,
    .sw-mobile-language-switcher a:not(.is-active):focus-visible {
        background: #fff;
        color: var(--sw-primary-dark);
    }

    .sw-header-search {
        grid-column: 1 / -1;
        order: 3;
        width: 100%;
        padding-bottom: 10px;
    }

    .sw-search-keywords {
        margin-top: 6px;
        padding-bottom: 2px;
    }

    .sw-header-main__inner {
        padding-top: 10px;
    }

    .sw-search-form,
    .sw-search-form input,
    .sw-search-form button {
        height: 42px;
    }

    .sw-search-form input,
    .sw-search-form button {
        font-size: 13px;
    }

    .sw-home-hero__grid {
        grid-template-columns: 1fr;
    }

    .sw-category-directory-hero__grid {
        grid-template-columns: 1fr;
    }

    .sw-promo-stage {
        min-height: 300px;
    }

    .sw-hero-side {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-service-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sw-home-coupon-strip {
        grid-template-columns: 1fr;
    }

    .sw-mega-service-row {
        grid-template-columns: 1fr;
    }

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

    .sw-filter-panel {
        display: none;
        position: fixed;
        inset: auto 0 0;
        z-index: 450;
        max-height: 80vh;
        overflow-y: auto;
        border-radius: 16px 16px 0 0;
        box-shadow: 0 -16px 40px rgba(0, 0, 0, .2);
    }

    .sw-filter-panel.is-open {
        display: block;
    }

    .sw-mobile-filter-toggle {
        display: inline-flex;
    }

    .sw-catalog-toolbar--sticky {
        top: 0;
    }

    .sw-mobile-tabbar {
        display: flex;
    }

    body {
        padding-bottom: 62px;
    }

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

@media (max-width: 767px) {
    .sw-shell,
    .sw-header-top__inner,
    .sw-header-main__inner,
    .sw-header-nav__inner {
        width: min(var(--sw-content), calc(100% - 20px));
    }

    .sw-home-hero {
        padding-top: 12px;
    }

    .sw-category-directory-page .sw-category-directory-hero {
        display: none;
    }

    .sw-home-coupon-strip {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
    }

    .sw-home-coupon-strip::-webkit-scrollbar {
        display: none;
    }

    .sw-home-coupon-strip a {
        min-width: 245px;
        scroll-snap-align: start;
    }

    .sw-market-category-block {
        margin-left: -10px;
        margin-right: -10px;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .sw-market-category-block__head {
        padding: 12px 10px 0;
    }

    .sw-market-category-strip a {
        flex-basis: 86px;
        min-height: 94px;
        grid-template-rows: 46px auto;
        padding: 8px 6px;
    }

    .sw-market-category-strip img {
        width: 46px;
        height: 46px;
        border-radius: 12px;
    }

    .sw-promo-stage {
        min-height: 245px;
    }

    .sw-promo-stage__overlay {
        display: block;
        padding: 20px;
    }

    .sw-promo-stage.has-controls .sw-promo-stage__overlay {
        padding: 20px 18px 42px;
    }

    .sw-promo-stage__arrow {
        width: 36px;
        height: 36px;
        font-size: 13px;
    }

    .sw-promo-stage__arrow--prev {
        left: 8px;
    }

    .sw-promo-stage__arrow--next {
        right: 8px;
    }

    .sw-promo-stage__dots {
        bottom: 10px;
    }

    .sw-promo-stage h1 {
        font-size: 28px;
    }

    .sw-promo-stage p {
        font-size: 13px;
    }

    .sw-promo-stage .sw-button {
        margin-top: 14px;
        width: 100%;
    }

    .sw-hero-side,
    .sw-service-strip,
    .sw-footer__grid {
        grid-template-columns: 1fr;
    }

    .sw-footer__grid > div:not(:first-child) {
        display: none;
    }

    .sw-footer__top {
        padding: 22px 0 16px;
    }

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

    .sw-category-directory-stats {
        grid-template-columns: 1fr;
    }

    .sw-category-directory-stats span {
        min-height: 62px;
    }

    .sw-department-grid {
        grid-template-columns: 1fr;
    }

    .sw-section__actions {
        width: 100%;
        justify-content: space-between;
    }

    .sw-rail-controls {
        display: none;
    }

    .sw-product-rail .sw-product-card {
        flex-basis: 168px;
    }

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

    .sw-product-card {
        border-radius: 8px;
    }

    .sw-product-card__image img {
        padding: 8px;
    }

    .sw-product-card__body {
        padding: 10px;
    }

    .sw-product-card__name {
        min-height: 50px;
        font-size: 13px;
    }

    .sw-product-card__price-row {
        display: block;
    }

    .sw-add-button,
    .sw-out-button {
        width: 100%;
        margin-top: 9px;
    }

    .sw-catalog-crumb-row {
        align-items: center;
        gap: 10px;
    }

    .sw-catalog-crumb-image {
        flex-basis: 54px;
        width: 54px;
        height: 54px;
    }

    .sw-catalog-crumb-image::after {
        inset: 6px;
    }

    .sw-catalog-title-row,
    .sw-catalog-toolbar,
    .sw-section__head,
    .sw-footer__bottom-inner {
        align-items: stretch;
        flex-direction: column;
    }

    .sw-catalog-toolbar--sticky.sw-catalog-toolbar {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(112px, 42vw) auto;
        align-items: center;
        gap: 8px;
        margin-bottom: 10px;
        padding: 8px;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__left {
        gap: 0;
        grid-column: 1;
        grid-row: 1;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__label {
        display: none;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__strong {
        font-size: 12px;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sw-mobile-filter-toggle {
        width: 100%;
    }

    .sw-catalog-toolbar--sticky .sw-mobile-filter-toggle {
        width: auto;
        min-height: 34px;
        padding: 0 10px;
        grid-column: 3;
        grid-row: 1;
        white-space: nowrap;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__controls {
        width: auto;
        display: block;
        min-width: 0;
        grid-column: 2;
        grid-row: 1;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__controls .sw-filter-label,
    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__controls #catalog-per-page {
        display: none;
    }

    .sw-catalog-toolbar--sticky .sw-catalog-toolbar__controls #catalog-sort {
        width: 100%;
        min-width: 0;
        height: 34px;
        padding: 0 8px;
        font-size: 12px;
    }

    .sw-mobile-infinite {
        display: block;
    }

    [data-sw-desktop-pagination] {
        display: none;
    }

    .sw-catalog-service-card {
        min-width: 0;
    }

    .sw-filter-select {
        width: 100%;
        min-width: 0;
    }

    .sw-sort-form {
        width: 100%;
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto minmax(72px, 96px);
        align-items: center;
    }

    .sw-catalog-toolbar--sticky .sw-sort-form {
        width: auto;
        display: block;
    }

    .sw-catalog-toolbar__controls .sw-button-secondary {
        grid-column: 1 / -1;
        width: 100%;
    }
}

@media (max-width: 420px) {
    .sw-brand__name {
        font-size: 16px;
    }

    .sw-notice-bar__service span {
        display: none;
    }

    .sw-search-form button span {
        display: none;
    }

    .sw-product-grid {
        gap: 8px;
    }

    .sw-sort-form {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .sw-active-filter-row a,
    .sw-active-filter-row > span {
        width: 100%;
        justify-content: space-between;
    }

    .sw-catalog-toolbar__controls .sw-filter-select,
    .sw-catalog-toolbar__controls #catalog-per-page {
        min-width: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sw-notice-ticker span {
        padding-left: 0;
        animation: none;
    }
}
