@import url("https://fonts.googleapis.com/css2?family=Lexend+Deca:wght@500;600;700&family=Open+Sans:wght@400;600;700&display=swap");

:root {
    color-scheme: light;
    --wd-text-font: "Open Sans", Arial, Helvetica, sans-serif;
    --wd-title-font: "Lexend Deca", Arial, Helvetica, sans-serif;
    --wd-text: #242424;
    --wd-muted: #767676;
    --wd-heading: #1c2b46;
    --wd-primary: #1c61e7;
    --wd-primary-dark: #174fc0;
    --wd-primary-soft: #e1ebff;
    --wd-yellow: #f4c01f;
    --wd-yellow-soft: #fbf3d4;
    --wd-red: #e53935;
    --wd-green: #34a853;
    --wd-success: #34a853;
    --wd-warning: #e0b252;
    --wd-dark: #1a1e2f;
    --wd-line: #e6e8ee;
    --wd-soft: #f4f5f8;
    --wd-panel: #ffffff;
    --wd-radius: 8px;
    --wd-container: 1260px;
    --wd-shadow: 0 8px 30px rgb(20 30 60 / 8%);
}

* {
    box-sizing: border-box;
}

html {
    background: #fff;
}

body {
    margin: 0;
    font-family: var(--wd-text-font);
    color: var(--wd-text);
    background: #fff;
    font-size: 15px;
    line-height: 1.55;
}

[data-company-field][hidden] {
    display: none !important;
}

[data-shipping-address-fields][hidden] {
    display: none !important;
}

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

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

a:hover {
    color: var(--wd-primary);
}

button,
input,
textarea {
    font: inherit;
}

h1, h2, h3 {
    font-family: var(--wd-title-font);
    color: var(--wd-heading);
}

/* ------------------------------------------------------------------ layout */

.sf-container {
    width: min(var(--wd-container), 100% - 32px);
    margin-inline: auto;
}

.sf-page {
    padding: 24px 0 56px;
}

/* ------------------------------------------------------------------ cookie consent */

.sf-cookie-consent {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 24px;
    background: rgb(255 217 156 / 52%);
    backdrop-filter: blur(7px);
    -webkit-backdrop-filter: blur(7px);
}

.sf-cookie-consent[hidden] {
    display: none;
}

body.sf-cookie-consent-lock {
    overflow: hidden;
}

.sf-cookie-consent__inner {
    position: relative;
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    width: min(660px, 100%);
    padding: 34px 38px;
    border: 0;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 22px 58px rgb(88 54 18 / 18%);
}

.sf-cookie-consent__close {
    position: absolute;
    top: 10px;
    right: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #9ca3af;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.sf-cookie-consent__close:hover {
    color: #111827;
}

.sf-cookie-consent__illustration {
    position: relative;
    width: 96px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(circle at 32% 26%, #8f4537 0 6px, transparent 7px),
        radial-gradient(circle at 66% 34%, #8f4537 0 7px, transparent 8px),
        radial-gradient(circle at 43% 58%, #8f4537 0 5px, transparent 6px),
        radial-gradient(circle at 70% 72%, #8f4537 0 6px, transparent 7px),
        radial-gradient(circle at 25% 76%, #8f4537 0 5px, transparent 6px),
        #f1a25c;
    box-shadow: inset -6px -8px 0 rgb(137 73 45 / 10%);
}

.sf-cookie-consent__copy {
    display: grid;
    gap: 7px;
    padding-right: 12px;
}

.sf-cookie-consent__copy strong {
    font-family: var(--wd-title-font);
    color: var(--wd-heading);
    font-size: 26px;
    line-height: 1.15;
}

.sf-cookie-consent__copy p {
    margin: 0;
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.35;
}

.sf-cookie-consent__copy a {
    color: var(--wd-primary);
    font-size: 14px;
    font-weight: 700;
}

.sf-cookie-consent__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
}

.sf-cookie-consent__actions .sf-btn {
    min-width: 132px;
    min-height: 42px;
    padding-inline: 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
}

.sf-cookie-consent__actions .sf-btn:not(.sf-btn--outline) {
    background: #eda760;
    color: #fff;
}

.sf-cookie-consent__actions .sf-btn--outline {
    border: 2px solid #111827;
    background: #fff;
    color: #111827;
}

@media (max-width: 560px) {
    .sf-cookie-consent {
        padding: 16px;
    }

    .sf-cookie-consent__inner {
        grid-template-columns: 72px minmax(0, 1fr);
        gap: 14px;
        padding: 26px 20px;
    }

    .sf-cookie-consent__illustration {
        width: 66px;
    }

    .sf-cookie-consent__copy strong {
        font-size: 21px;
    }

    .sf-cookie-consent__actions {
        gap: 8px;
    }

    .sf-cookie-consent__actions .sf-btn {
        min-width: 112px;
    }
}

.sf-ico {
    width: 22px;
    height: 22px;
    display: block;
}

/* ------------------------------------------------------------------ buttons / inputs */

.sf-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 44px;
    border: 0;
    border-radius: 6px;
    background: var(--wd-primary);
    color: #fff;
    padding: 0 20px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    transition: background .15s ease, transform .12s ease;
}

.sf-btn:hover {
    color: #fff;
    background: var(--wd-primary-dark);
}

.sf-btn:disabled,
.sf-btn[aria-disabled="true"] {
    cursor: not-allowed;
    color: #667085;
    background: #d0d5dd;
    transform: none;
}

.sf-btn:disabled:hover,
.sf-btn[aria-disabled="true"]:hover {
    color: #667085;
    background: #d0d5dd;
}

.sf-btn--light {
    background: var(--wd-primary-soft);
    color: var(--wd-primary);
}

.sf-btn--light:hover {
    color: var(--wd-primary);
    background: #d7e3ff;
}

.sf-btn--green {
    background: var(--wd-green);
}

.sf-btn--green:hover {
    background: #2c9248;
}

.sf-input,
.sf-textarea {
    width: 100%;
    border: 1px solid var(--wd-line);
    border-radius: 6px;
    background: #fff;
    color: var(--wd-text);
    padding: 10px 14px;
}

.sf-input {
    height: 46px;
}

.sf-textarea {
    min-height: 96px;
    resize: vertical;
}

/* ------------------------------------------------------------------ device rail */

.sf-device-rail {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 25;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 8px 6px;
    background: #fff;
    border: 1px solid var(--wd-line);
    border-radius: 40px;
    box-shadow: var(--wd-shadow);
}

.sf-device-rail__item {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--wd-heading);
    background: transparent;
    transition: background .15s ease, color .15s ease;
}

.sf-device-rail__item:hover {
    color: #fff;
    background: var(--wd-primary);
}

.sf-device-rail__item .sf-ico {
    width: 20px;
    height: 20px;
}

.sf-device-rail__head {
    display: none;
}

.sf-device-rail__section {
    display: contents;
}

.sf-device-rail__tabs {
    display: none;
}

.sf-device-rail__section--mobile,
.sf-device-rail__section-title {
    display: none;
}

.sf-device-rail__label {
    display: none;
    white-space: nowrap;
    font-family: var(--wd-text-font);
    font-size: 14px;
    font-weight: 600;
}

.sf-device-rail.is-open {
    display: flex;
    left: 0;
    top: 0;
    transform: none;
    width: 300px;
    height: 100vh;
    max-height: 100vh;
    z-index: 60;
    gap: 0;
    padding: 0 0 16px;
    background: #fff;
    border: 0;
    border-radius: 0;
    box-shadow: 0 18px 50px rgb(0 0 0 / 18%);
    overflow-y: auto;
}

.sf-device-rail.is-open .sf-device-rail__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 12px 12px 8px;
    padding: 6px 14px 6px 6px;
    background: var(--wd-primary);
    border-radius: 999px;
    color: #fff;
}

.sf-device-rail__head-icon {
    flex: none;
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff;
    color: var(--wd-primary);
}

.sf-device-rail__head-icon .sf-ico {
    width: 18px;
    height: 18px;
}

.sf-device-rail__title {
    flex: 1;
    font-family: var(--wd-title-font);
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.sf-device-rail__close {
    flex: none;
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    padding: 0 6px;
}

.sf-device-rail.is-open .sf-device-rail__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: 100%;
    min-width: 0;
    min-height: 50px;
    height: auto;
    padding: 8px 18px;
    border-radius: 0;
    color: var(--wd-heading);
}

.sf-device-rail.is-open .sf-device-rail__item:hover {
    color: var(--wd-primary);
    background: var(--wd-primary-soft, #eef3fe);
}

.sf-device-rail.is-open .sf-device-rail__item .sf-ico {
    flex: none;
    width: 22px;
    height: 22px;
}

.sf-device-rail.is-open .sf-device-rail__label {
    display: inline;
    white-space: normal;
    line-height: 1.3;
    font-size: 14px;
    font-weight: 600;
    color: var(--wd-heading);
}

.sf-rail-overlay {
    position: fixed;
    inset: 0;
    z-index: 55;
    background: rgb(0 0 0 / 35%);
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s;
}

.sf-rail-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

/* ------------------------------------------------------------------ header */

.sf-site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    background: #fff;
    box-shadow: 0 2px 14px rgb(0 0 0 / 5%);
    transition: transform .22s ease, box-shadow .18s ease;
    will-change: transform;
}

.sf-topbar {
    position: relative;
    z-index: 80;
    border-bottom: 1px solid var(--wd-line);
    max-height: 88px;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    transition: max-height .22s ease, opacity .16s ease, transform .22s ease, border-color .16s ease;
    will-change: max-height, transform, opacity;
}

.sf-mobile-search {
    position: relative;
    z-index: 75;
    max-height: 72px;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    transition: max-height .22s ease, opacity .16s ease, transform .22s ease, padding .22s ease;
}

body.is-topbar-hidden .sf-site-header {
    box-shadow: 0 6px 18px rgb(15 23 42 / 8%);
}

body.is-topbar-hidden .sf-topbar,
body.is-topbar-hidden .sf-mobile-search {
    max-height: 0;
    opacity: 0;
    transform: translateY(-100%);
    padding-top: 0;
    padding-bottom: 0;
    border-bottom-color: transparent;
    overflow: hidden;
    pointer-events: none;
}

body.is-nav-hidden .sf-site-header {
    transform: translateY(-100%);
}

.sf-topbar-inner,
.sf-header-main {
    min-height: 86px;
    display: grid;
    grid-template-columns: 240px minmax(360px, 1fr) auto;
    gap: 22px;
    align-items: center;
}

.sf-header-main {
    grid-template-columns: 240px 1fr auto;
}

.sf-burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    border-radius: 8px;
    background: var(--wd-primary);
    color: #fff;
    cursor: pointer;
    place-items: center;
}

.sf-mobile-cart {
    display: none;
}

.sf-logo {
    display: inline-flex;
    align-items: center;
    max-width: 240px;
}

.sf-logo img {
    display: block;
    width: 240px;
    height: auto;
}

.sf-logo-text {
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-primary);
}

.sf-header-search {
    position: relative;
    display: flex;
    gap: 0;
    z-index: 40;
}

.sf-header-search .sf-input {
    height: 48px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid rgb(0 0 0 / 12%);
    padding: 0 58px 0 22px;
}

.sf-header-search .sf-btn,
.sf-search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    min-width: 0;
    min-height: 0;
    padding: 0;
    border-radius: 50%;
}

.sf-instant-search {
    position: absolute;
    z-index: 60;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    overflow: hidden;
    border: 1px solid var(--wd-line);
    border-radius: 10px;
    background: #fff;
    box-shadow: 0 18px 42px rgb(15 23 42 / 18%);
}

.sf-instant-search__list {
    display: grid;
    max-height: min(520px, calc(100vh - 150px));
    overflow-y: auto;
}

.sf-instant-search__item {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid var(--wd-line);
    color: var(--wd-text);
    text-decoration: none;
}

.sf-instant-search__item:last-child {
    border-bottom: 0;
}

.sf-instant-search__item:hover,
.sf-instant-search__item.is-active {
    background: var(--wd-primary-soft);
    color: var(--wd-text);
}

.sf-instant-search__thumb {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 8px;
    background: var(--wd-soft);
}

.sf-instant-search__thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.sf-instant-search__placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 72%) 0 24%, transparent 24% 100%),
        linear-gradient(145deg, #eef4ff, #f8fafc 58%, #e9eef8);
}

.sf-instant-search__placeholder span {
    width: 42%;
    height: 54%;
    border: 2px solid #c8d5ea;
    border-radius: 8px;
}

.sf-instant-search__title {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}

.sf-instant-search__content {
    min-width: 0;
    display: grid;
    gap: 3px;
}

.sf-instant-search__content strong,
.sf-instant-search__content small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-instant-search__content strong {
    color: var(--wd-primary);
    font-size: 14px;
    line-height: 1.25;
}

.sf-instant-search__content small {
    color: var(--wd-muted);
    font-size: 12px;
}

.sf-instant-search__price {
    color: var(--wd-primary);
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.sf-instant-search__empty {
    padding: 14px;
    color: var(--wd-muted);
    font-size: 13px;
}

.sf-header-info {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    gap: 22px;
}

.sf-info-box {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px;
    align-items: center;
    min-width: 0;
}

.sf-info-icon {
    display: grid;
    place-items: center;
    color: var(--wd-heading);
}

.sf-info-icon .sf-ico {
    width: 34px;
    height: 34px;
}

.sf-info-title {
    display: block;
    font-family: var(--wd-title-font);
    color: #242424;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
}

.sf-info-text {
    display: block;
    font-family: var(--wd-text-font);
    color: var(--wd-primary);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.sf-account-tools,
.sf-nav-tools {
    display: flex;
    align-items: center;
    gap: 10px;
}

.sf-icon-tool {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--wd-heading);
    background: #fff;
    border: 1px solid #e3e8f1;
    transition: background .15s ease, color .15s ease, border-color .15s ease;
}

.sf-icon-tool:hover {
    color: var(--wd-primary);
    border-color: var(--wd-primary);
    background: #fff;
}

.sf-icon-tool--cart {
    color: #fff;
    border-color: transparent;
    background: var(--wd-primary);
}

.sf-icon-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: #eef1f7;
    border: 1px solid #fff;
    color: var(--wd-heading);
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
}

.sf-icon-badge--muted {
    background: #eef1f7;
    color: var(--wd-heading);
}

/* legacy header tools (thank-you page) */
.sf-header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    justify-self: end;
}

.sf-tool {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    padding: 0 8px;
    border-radius: 6px;
    color: var(--wd-heading);
}

.sf-tool-count {
    display: inline-grid;
    place-items: center;
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: var(--wd-primary);
    color: #fff;
    font-size: 11px;
    line-height: 1;
}

/* nav row */
.sf-nav-row {
    position: relative;
    z-index: 20;
    background: #eaf0fb;
}

.sf-nav-inner {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 22px;
}

.sf-category {
    position: relative;
}

.sf-category-trigger {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #242424;
    background: #fff;
    border: 0;
    border-radius: 999px;
    min-height: 44px;
    padding: 3px 18px 3px 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}

.sf-category-trigger__icon {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wd-primary);
    color: #fff;
}

.sf-category-trigger__icon .sf-ico {
    width: 18px;
    height: 18px;
}

.sf-main-nav {
    display: flex;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.sf-main-nav a {
    border-radius: 10px;
    padding: 9px 14px;
    color: var(--wd-heading);
    font-size: 13px;
    font-weight: 600;
}

.sf-main-nav a:hover {
    background: #dce8ff;
    color: var(--wd-primary);
}

.sf-main-nav a.is-active {
    background: #d4e2ff;
    color: var(--wd-primary);
}

.sf-cart-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
}

.sf-cart-pill__icon {
    position: relative;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--wd-primary);
}

.sf-cart-pill__total {
    font-weight: 700;
    color: var(--wd-heading);
    font-size: 14px;
}

.sf-mobile-search {
    display: none;
    padding: 10px 0;
}

/* ------------------------------------------------------------------ home banners + hero */

.sf-home-banners {
    display: grid;
    grid-template-columns: 1.85fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    margin-bottom: 40px;
}

.sf-hero {
    grid-column: 1;
    grid-row: 1 / span 2;
    position: relative;
    min-height: 440px;
    border-radius: 14px;
    overflow: hidden;
    background: #f7f7f7;
    display: flex;
    align-items: center;
}

.sf-hero-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.sf-hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity .35s ease;
}

.sf-hero-slide.is-active {
    opacity: 1;
}

.sf-hero-slide > img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-hero-content {
    position: absolute;
    left: clamp(56px, 7vw, 98px);
    top: 30%;
    transform: translateY(-50%);
    z-index: 3;
    width: min(360px, calc(100% - 130px));
}

.sf-hero-kicker {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 14px;
    border-radius: 999px;
    background: rgb(255 255 255 / 75%);
    color: var(--wd-heading);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.sf-hero h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(22px, 1.85vw, 28px);
    line-height: 1.2;
}

.sf-hero p {
    margin: 0 0 22px;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.sf-hero-btn {
    min-height: 40px;
    padding: 0 20px;
    font-size: 13px;
}

.sf-hero-slide--light .sf-hero-content {
    left: 50%;
    top: 21%;
    width: min(620px, calc(100% - 120px));
    text-align: center;
    transform: translate(-50%, -50%);
}

.sf-hero-slide--light h1,
.sf-hero-slide--light h2 {
    color: #0066cc;
    font-size: clamp(21px, 1.85vw, 28px);
    max-width: none;
    white-space: nowrap;
}

.sf-hero-slide--light p {
    color: var(--wd-yellow);
    max-width: none;
}

.sf-hero-slide--blue h1,
.sf-hero-slide--blue h2,
.sf-hero-slide--blue p {
    color: #fff;
}

.sf-hero-slide--blue .sf-hero-content {
    left: 50%;
    top: 10%;
    width: min(720px, calc(100% - 120px));
    text-align: center;
    transform: translate(-50%, 0);
}

.sf-hero-slide--blue h1,
.sf-hero-slide--blue h2 {
    margin-bottom: 8px;
    font-size: clamp(18px, 1.75vw, 25px);
    line-height: 1.15;
    white-space: nowrap;
}

.sf-hero-slide--blue p {
    margin-bottom: 0;
    font-size: clamp(14px, 1.35vw, 19px);
    line-height: 1.15;
    white-space: nowrap;
}

.sf-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 999px;
    background: rgb(255 255 255 / 75%);
    color: #111827;
    font-size: 32px;
    line-height: 1;
    transform: translateY(-50%);
}

.sf-hero-arrow--prev {
    left: 14px;
}

.sf-hero-arrow--next {
    right: 14px;
}

.sf-hero-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 20px;
    z-index: 4;
    display: flex;
    justify-content: center;
    gap: 7px;
}

.sf-hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgb(17 24 39 / 28%);
}

.sf-hero-dots button.is-active {
    background: rgb(17 24 39 / 70%);
}

.sf-banner {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
    min-height: 168px;
    padding: 24px 26px;
    border-radius: 14px;
    color: #fff;
    overflow: hidden;
}

.sf-banner:hover {
    color: #fff;
}

.sf-banner--car:hover,
.sf-banner--gps:hover {
    color: var(--wd-dark);
}

.sf-banner > img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.sf-banner--car > img {
    width: 100%;
    height: 100%;
    inset: 0;
    object-fit: contain;
    object-position: right center;
    transform: scale(.85);
    transform-origin: right center;
}

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

.sf-banner--car:hover > img {
    transform: scale(.89);
}

.sf-banner > span {
    position: relative;
    z-index: 2;
}

.sf-banner--car {
    grid-column: 2 / span 2;
    grid-row: 1;
    color: #111827;
    background: #eadfdf;
}

.sf-banner--camera {
    grid-column: 2;
    grid-row: 2;
    background: #2e8ee8;
    min-height: 160px;
    justify-content: center;
}

.sf-banner--gps {
    grid-column: 3;
    grid-row: 2;
    color: var(--wd-dark);
    background: #dfb915;
    min-height: 160px;
    justify-content: center;
}

.sf-banner__eyebrow {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    opacity: .85;
}

.sf-banner__title {
    font-family: var(--wd-title-font);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 700;
    line-height: 1.1;
    color: inherit;
}

.sf-banner__sub {
    font-weight: 700;
    font-size: 15px;
}

.sf-banner--camera .sf-banner__title,
.sf-banner--gps .sf-banner__title {
    max-width: 52%;
    font-size: clamp(18px, 1.55vw, 23px);
}

.sf-banner--camera .sf-banner__sub,
.sf-banner--gps .sf-banner__sub {
    max-width: 48%;
    font-size: 13px;
    line-height: 1.25;
}

.sf-banner--camera .sf-banner__cta,
.sf-banner--gps .sf-banner__cta {
    padding: 7px 14px;
    font-size: 12px;
}

.sf-banner__cta {
    align-self: flex-start;
    margin-top: 6px;
    padding: 8px 16px;
    border-radius: 6px;
    background: rgb(255 255 255 / 90%);
    color: var(--wd-primary);
    font-weight: 700;
    font-size: 13px;
    transition: background-color .2s ease, color .2s ease, transform .2s ease;
}

.sf-banner:hover .sf-banner__cta {
    transform: translateY(-1px);
    background: var(--wd-primary);
    color: #fff;
}

.sf-banner:hover .sf-banner__title,
.sf-banner:hover .sf-banner__sub,
.sf-banner:hover .sf-banner__eyebrow {
    color: #fff;
}

.sf-banner--car:hover .sf-banner__title,
.sf-banner--car:hover .sf-banner__sub,
.sf-banner--car:hover .sf-banner__eyebrow,
.sf-banner--gps:hover .sf-banner__title,
.sf-banner--gps:hover .sf-banner__sub,
.sf-banner--gps:hover .sf-banner__eyebrow {
    color: var(--wd-dark);
}

.sf-banner--car .sf-banner__cta {
    background: var(--wd-primary);
    color: #fff;
}

.sf-banner--car:hover .sf-banner__cta {
    background: #0b4fd0;
}

.sf-banner--gps .sf-banner__cta {
    background: rgb(255 255 255 / 92%);
    color: var(--wd-dark);
}

.sf-banner--gps:hover .sf-banner__cta {
    background: var(--wd-dark);
    color: #fff;
}

/* ------------------------------------------------------------------ sections */

.sf-section {
    margin: 0 0 48px;
}

.sf-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin: 0 0 20px;
}

.sf-section-head h1,
.sf-section-head h2 {
    margin: 0;
    font-size: clamp(22px, 2.6vw, 30px);
    line-height: 1.18;
}

.sf-section-head p {
    margin: 7px 0 0;
    color: var(--wd-muted);
}

.sf-section-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    border-radius: 30px;
    background: var(--wd-primary-soft);
    color: var(--wd-primary);
    font-weight: 700;
    font-size: 13px;
    white-space: nowrap;
}

.sf-section-link:hover {
    color: #fff;
    background: var(--wd-primary);
}

.sf-section-link .sf-ico {
    width: 16px;
    height: 16px;
}

/* ------------------------------------------------------------------ product cards */

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

.sf-grid--6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

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

.sf-product-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 10px;
    background: var(--wd-panel);
    border: 1px solid var(--wd-line);
    border-radius: 12px;
    transition: box-shadow .18s ease, transform .18s ease;
}

.sf-product-card:hover {
    box-shadow: var(--wd-shadow);
    transform: translateY(-2px);
}

.sf-product-card__media-wrap {
    position: relative;
}

.sf-product-card__badge {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--wd-red);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .03em;
}

.sf-product-card__discount {
    position: absolute;
    top: 8px;
    left: 8px;
    z-index: 2;
    padding: 4px 10px;
    border-radius: 4px;
    background: var(--wd-red);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
}

.sf-product-card__discount.has-card-badge {
    top: 38px;
}

.sf-product-card__wish {
    position: absolute;
    top: 6px;
    right: 6px;
    z-index: 2;
    width: 34px;
    height: 34px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: rgb(255 255 255 / 85%);
    color: var(--wd-muted);
    cursor: pointer;
    transition: color .15s ease;
}

.sf-product-card__wish:hover {
    color: var(--wd-red);
}

.sf-product-card__wish.is-active {
    color: var(--wd-red);
    background: #fff;
}

.sf-product-card__wish.is-active .sf-ico path {
    fill: currentColor;
}

.sf-product-card__wish .sf-ico {
    width: 18px;
    height: 18px;
}

.sf-product-card__media {
    position: relative;
    display: grid;
    place-items: center;
    aspect-ratio: 1;
    border-radius: 10px;
    background: var(--wd-soft);
    overflow: hidden;
}

.sf-product-card__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform .18s ease;
}

.sf-product-card__placeholder,
.sf-product-gallery__placeholder,
.sf-minicart__placeholder {
    display: grid;
    place-items: center;
    background:
        linear-gradient(135deg, rgb(255 255 255 / 72%) 0 24%, transparent 24% 100%),
        linear-gradient(145deg, #eef4ff, #f8fafc 58%, #e9eef8);
    border: 1px solid var(--wd-line);
}

.sf-product-card__placeholder {
    width: 100%;
    height: 100%;
}

.sf-product-card__placeholder span {
    width: 42%;
    height: 54%;
    border: 2px solid #c8d5ea;
    border-radius: 14px;
    box-shadow: 12px 10px 0 rgb(37 99 235 / 9%);
}

.sf-product-card:hover .sf-product-card__media img {
    transform: scale(1.04);
}

.sf-product-card__body {
    padding: 12px 4px 4px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sf-product-card h2 {
    min-height: 40px;
    margin: 0 0 6px;
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.3;
}

.sf-product-card h2 a {
    color: var(--wd-primary);
}

.sf-product-card h2 a:hover {
    color: var(--wd-primary-dark);
}

.sf-product-card__brand {
    margin: 0 0 12px;
    color: var(--wd-muted);
    font-size: 12px;
    line-height: 1.3;
}

.sf-product-card__sale-type {
    position: absolute;
    right: 8px;
    bottom: 8px;
    z-index: 2;
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 3px;
    max-width: calc(100% - 16px);
    margin: 0;
    padding: 4px 8px;
    border-radius: 6px;
    background: #fff4d6;
    color: #9a5b00;
    font-size: 11px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
    box-shadow: 0 4px 10px rgb(15 23 42 / 10%);
}

.sf-product-card__sale-type span {
    min-width: 0;
    max-width: 100%;
}

.sf-product-card__sale-type-separator {
    flex: 0 0 auto;
}

.sf-product-card__desc {
    margin: 0 0 10px;
    color: var(--wd-muted);
    font-size: 13px;
    line-height: 1.4;
}

.sf-product-card__foot {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
    margin-top: auto;
}

.sf-product-card__actions {
    display: grid;
    gap: 0;
    margin-top: 10px;
}

.sf-product-card__cart {
    width: 100%;
    min-height: 34px;
    gap: 6px;
    padding: 0 10px;
    font-size: 13px;
    line-height: 1.1;
}

.sf-product-card__cart .sf-ico {
    width: 15px;
    height: 15px;
}

.sf-product-card__note {
    min-height: 0;
    color: var(--wd-muted);
    font-size: 12px;
    text-align: center;
}

.sf-product-card__note:empty {
    display: none;
}

.sf-price {
    color: var(--wd-primary);
    font-weight: 700;
    font-size: 17px;
    white-space: nowrap;
}

.sf-stock {
    color: var(--wd-success);
    font-size: 12.5px;
    font-weight: 700;
}

.sf-stock.is-out {
    color: var(--wd-warning);
}

/* ------------------------------------------------------------------ sale */

.sf-sale-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 18px;
    align-items: stretch;
}

.sf-sale-promo {
    position: relative;
    display: block;
    min-height: 420px;
    border-radius: 12px;
    color: #fff;
    background: #1b1d24;
    overflow: hidden;
}

.sf-sale-promo:hover {
    color: #fff;
}

.sf-sale-promo img {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .28s ease;
}

.sf-sale-promo:hover img {
    transform: scale(1.04);
}

.sf-sale-promo__eyebrow {
    position: absolute;
    top: 28px;
    left: 50%;
    z-index: 2;
    width: calc(100% - 36px);
    transform: translateX(-50%);
    color: rgb(255 255 255 / 78%);
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: .05em;
    white-space: nowrap;
}

.sf-sale-promo__title {
    position: absolute;
    top: 54px;
    left: 50%;
    z-index: 2;
    width: calc(100% - 36px);
    transform: translateX(-50%);
    font-family: var(--wd-title-font);
    font-size: 25px;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
    white-space: nowrap;
}

.sf-sale-layout .sf-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ------------------------------------------------------------------ any device + brands */

.sf-anydevice {
    margin: 0;
    padding: 48px 0;
    text-align: center;
    background: linear-gradient(120deg, #f3ecf8 0%, #eaf0fb 50%, #fbeef0 100%);
}

.sf-anydevice h2 {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.2vw, 38px);
}

.sf-anydevice p {
    margin: 0 0 20px;
    color: var(--wd-muted);
    font-size: 16px;
}

.sf-brand-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    margin-top: 34px;
}

.sf-brand-chip {
    width: 140px;
    height: 140px;
    display: grid;
    place-items: center;
    padding: 22px;
    background: #fff;
    border: 1px solid var(--wd-line);
    border-radius: 8px;
    box-shadow: 0 10px 24px rgb(20 30 60 / 5%);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sf-brand-chip:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 16px 32px rgb(20 30 60 / 10%);
}

.sf-brand-chip img {
    display: block;
    width: 100%;
    max-width: 104px;
    height: 74px;
    object-fit: contain;
    transition: transform .25s ease;
}

.sf-brand-chip:hover img {
    transform: scale(1.08);
}

/* ------------------------------------------------------------------ industrial */

.sf-industrial-wrap {
    margin: 0;
    padding: 72px 0 56px;
    background: #f3f3f3;
}

.sf-industrial {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 304px;
    gap: 18px;
    align-items: center;
}

.sf-industrial__main {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(420px, 1fr);
    gap: 28px;
    align-items: center;
    min-height: 418px;
    padding: 42px 52px 42px 20px;
    border-radius: 8px;
    background: #fff;
}

.sf-industrial__image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sf-industrial__image img {
    display: block;
    width: min(100%, 440px);
    height: auto;
}

.sf-industrial__content h2 {
    margin: 0 0 12px;
    color: var(--wd-heading);
    font-size: clamp(34px, 3.2vw, 48px);
    line-height: 1.35;
    letter-spacing: 0;
}

.sf-industrial__content p {
    max-width: 510px;
    margin: 0 0 22px;
    color: var(--wd-muted);
    font-size: 16px;
    line-height: 1.55;
}

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

.sf-industrial__tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 11px;
    border-radius: 5px;
    background: #f3f3f3;
    color: #242424;
    font-size: 12px;
    font-weight: 500;
    line-height: 1;
    white-space: nowrap;
}

.sf-industrial__tag img {
    display: block;
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.sf-industrial__custom {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    min-height: 418px;
    padding: 0 0 24px;
    border-radius: 8px;
    background: #fff;
    color: var(--wd-heading);
    text-align: center;
    text-decoration: none;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.sf-industrial__custom:hover {
    color: var(--wd-heading);
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgb(20 30 60 / 8%);
}

.sf-industrial__custom img {
    display: block;
    width: 100%;
    max-width: none;
    height: auto;
    transition: transform .25s ease;
}

.sf-industrial__custom:hover img {
    transform: scale(1.03);
}

.sf-industrial__custom strong {
    display: block;
    margin-top: 22px;
    padding: 0 16px;
    font-family: var(--wd-title-font);
    font-size: 17px;
    line-height: 1.2;
    white-space: nowrap;
}

/* ------------------------------------------------------------------ news */

.sf-news-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
}

.sf-news-card {
    display: flex;
    flex-direction: column;
    border: 1px solid var(--wd-line);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    transition: box-shadow .18s ease, transform .18s ease;
}

.sf-news-card:hover {
    box-shadow: var(--wd-shadow);
    transform: translateY(-2px);
}

.sf-news-card__media {
    aspect-ratio: 3 / 2;
    display: grid;
    place-items: center;
    color: var(--wd-primary);
    background: linear-gradient(135deg, #eef2fb 0%, #dde6f7 100%);
}

.sf-news-card__media .sf-ico {
    width: 40px;
    height: 40px;
}

.sf-news-card__date {
    padding: 12px 14px 0;
    color: var(--wd-muted);
    font-size: 12px;
}

.sf-news-card__title {
    padding: 6px 14px 16px;
    color: var(--wd-heading);
    font-weight: 700;
    font-size: 14px;
    line-height: 1.35;
}

/* ------------------------------------------------------------------ product page */

.sf-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 18px;
    color: var(--wd-muted);
    font-size: 13px;
}

.sf-breadcrumbs a:hover {
    color: var(--wd-primary);
}

.sf-mobile-breadcrumbs {
    display: none;
}

.sf-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 46px;
    align-items: start;
}

.sf-product-gallery {
    display: grid;
    gap: 12px;
}

.sf-product-gallery__stage {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.sf-product-gallery__stage img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0;
    transform: translateX(14px);
    transition: opacity .35s ease, transform .35s ease;
}

.sf-product-gallery__stage img.is-active {
    opacity: 1;
    transform: translateX(0);
}

.sf-product-gallery__placeholder {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
}

.sf-product-gallery__dots {
    display: none;
}

.sf-product-gallery__dots button {
    width: 9px;
    height: 9px;
    border: 0;
    border-radius: 999px;
    background: #cbd5e1;
    cursor: pointer;
}

.sf-product-gallery__dots button.is-active {
    background: var(--wd-primary);
}

.sf-product-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
}

.sf-product-gallery__thumbs img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
    border: 1px solid var(--wd-border);
}

.sf-feature-list {
    list-style: none;
    margin: 22px 0 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 20px;
}

.sf-feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    color: var(--wd-heading);
}

.sf-feature-list .sf-ico {
    width: 22px;
    height: 22px;
    flex: none;
    padding: 3px;
    border-radius: 50%;
    color: #fff;
    background: var(--wd-green);
}

.sf-product-note {
    margin-top: 20px;
    padding: 16px 20px;
    border-radius: 12px;
    color: #fff;
    background: var(--wd-dark);
    font-weight: 600;
    font-size: 14px;
}

.sf-product-summary h1 {
    margin: 0 0 8px;
    font-size: clamp(22px, 2.4vw, 28px);
    font-weight: 500;
    line-height: 1.2;
    color: #333;
}

.sf-product-tagline {
    margin: 0 0 14px;
    font-family: var(--wd-title-font);
    color: #fa6602;
    font-size: 18px;
    font-weight: 600;
}

.sf-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}

.sf-rating__label {
    font-size: 14px;
    font-weight: 600;
    color: var(--wd-heading);
}

.sf-rating__stars {
    display: inline-flex;
    gap: 2px;
    color: #f6a609;
}

.sf-rating__stars .sf-ico {
    width: 18px;
    height: 18px;
}

.sf-rating__count {
    color: var(--wd-muted);
    font-size: 14px;
}

.sf-product-desc {
    max-width: 64ch;
    margin: 0 0 18px;
    color: var(--wd-text);
    font-size: 15px;
    line-height: 1.65;
}

.sf-product-desc p {
    margin: 0 0 12px;
}

.sf-product-desc p:last-child,
.sf-product-desc ul:last-child,
.sf-product-desc ol:last-child {
    margin-bottom: 0;
}

.sf-product-desc ul,
.sf-product-desc ol {
    margin: 0 0 12px 20px;
}

.sf-product-desc .color {
    color: var(--color);
}

.sf-product-details {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    margin-top: 34px;
    padding: 18px;
    border-radius: 10px;
    background: #f5f5f5;
    align-items: start;
}

.sf-product-details--with-sidebar {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 38%);
}

.sf-product-details__main,
.sf-product-details__side {
    border-radius: 8px;
    background: #fff;
}

.sf-product-details__main {
    padding: 18px;
}

.sf-product-details__side {
    display: grid;
    gap: 18px;
    padding: 18px;
    position: sticky;
    top: 126px;
}

.sf-product-details__image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 7px;
}

.sf-product-details h2 {
    margin: 0 0 16px;
    color: var(--wd-heading);
    font-size: 26px;
    line-height: 1.2;
}

.sf-product-desc--full {
    max-width: none;
    font-size: 16px;
}

.sf-description-box {
    display: grid;
    gap: 18px;
    padding: 18px;
    border: 1px solid var(--wd-line);
    border-radius: 8px;
    background: #fff;
}

.sf-description-box--highlight {
    border: 0;
    background: #dff8fb;
}

.sf-description-box--links {
    gap: 0;
}

.sf-description-box__item {
    display: grid;
    grid-template-columns: 24px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: start;
    color: var(--wd-text);
}

.sf-description-box--links .sf-description-box__item {
    align-items: center;
    padding: 9px 0;
}

.sf-description-box--links .sf-description-box__item + .sf-description-box__item {
    border-top: 1px solid var(--wd-line);
}

.sf-description-box__icon {
    width: 22px;
    height: 22px;
    color: var(--wd-primary);
}

.sf-description-box__item strong {
    display: block;
    color: var(--wd-heading);
    font-size: 15px;
    line-height: 1.3;
}

.sf-description-box__item p {
    margin: 3px 0 0;
    color: var(--wd-muted);
    font-size: 14px;
    line-height: 1.45;
}

.sf-description-box__item a {
    color: var(--wd-primary);
    font-style: italic;
    font-size: 14px;
    white-space: nowrap;
}

.sf-product-reviews {
    margin-top: 34px;
    padding: 28px 0 8px;
}

.sf-product-reviews h2,
.sf-recently-viewed h2 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 22px;
    line-height: 1.25;
}

.sf-recently-viewed {
    margin: 18px calc(50% - 50vw) 0;
    padding: 46px max(24px, calc((100vw - var(--wd-container)) / 2)) 58px;
    background: #f3f3f3;
}

.sf-recently-viewed__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
    margin-top: 20px;
}

.sf-recent-card {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
    min-height: 84px;
    padding: 12px 16px;
    border-radius: 8px;
    background: #fff;
    color: var(--wd-heading);
}

.sf-recent-card:hover {
    color: var(--wd-heading);
    box-shadow: var(--wd-shadow);
}

.sf-recent-card img,
.sf-recent-card__placeholder {
    width: 58px;
    height: 58px;
    border-radius: 6px;
}

.sf-recent-card img {
    display: block;
    object-fit: contain;
}

.sf-recent-card__placeholder {
    display: block;
    background: var(--wd-soft);
}

.sf-recent-card strong {
    display: -webkit-box;
    overflow: hidden;
    color: var(--wd-heading);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.35;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.sf-recent-card b {
    display: block;
    margin-top: 4px;
    color: var(--wd-primary);
    font-size: 14px;
    line-height: 1.2;
}

.sf-promo-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 20px;
    padding: 16px 18px;
    border-radius: 12px;
    background: var(--wd-soft);
}

.sf-promo-box strong {
    display: block;
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 500;
    color: #242424;
}

.sf-promo-box span {
    color: var(--wd-muted);
    font-size: 15px;
}

.sf-sale-film-type {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 16px;
    padding: 8px 12px;
    border: 1px solid #f2d28a;
    border-radius: 8px;
    background: #fff7df;
    color: #8a5300;
    font-size: 14px;
}

.sf-sale-film-type span {
    color: #8a6a27;
}

.sf-sale-film-type strong {
    color: #7a4200;
}

.sf-sale-film-type em {
    color: #7a4200;
    font-style: normal;
}

.sf-price-stock-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: 0 0 22px;
}

.sf-product-price {
    margin: 0;
    color: var(--wd-primary);
    font-size: 23px;
    font-weight: 600;
}

.sf-product-price.has-compare {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
}

.sf-product-price s {
    color: var(--wd-muted);
    font-size: .78em;
    font-weight: 500;
}

.sf-product-price strong {
    color: var(--wd-primary);
    font: inherit;
}

.sf-stock-line {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 10px;
    margin: 0;
    color: #132a36;
}

.sf-stock-line .sf-ico {
    grid-row: 1 / 3;
    width: 26px;
    height: 26px;
    padding: 0;
    border-radius: 0;
    color: #fa6602;
    background: transparent;
}

.sf-stock-line strong {
    grid-column: 2;
    grid-row: 1;
    font-family: var(--wd-title-font);
    font-size: 22px;
    font-weight: 600;
    color: #132a36;
}

.sf-stock-line span {
    grid-column: 2;
    grid-row: 2;
    color: #132a36;
    font-size: 15px;
    font-weight: 400;
}

.sf-stock-line.is-out {
    color: var(--wd-warning);
}

.sf-stock-line.is-out .sf-ico {
    color: var(--wd-warning);
    background: transparent;
}

.sf-product-wishlist {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    grid-column: 4;
    min-height: 48px;
    min-width: 0;
    width: 100%;
    margin: 0;
    padding: 0 6px;
    border: 1px solid var(--wd-red);
    border-radius: 5px;
    background: #fff5f5;
    color: var(--wd-red);
    font-family: var(--wd-title-font);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.sf-product-wishlist .sf-ico {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
}

.sf-product-wishlist span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.sf-product-wishlist:hover,
.sf-product-wishlist.is-active {
    background: var(--wd-red);
    color: #fff;
    border-color: var(--wd-red);
}

.sf-product-wishlist.is-active .sf-ico path {
    fill: currentColor;
}

.sf-type-select {
    margin: 0 0 18px;
}

.sf-type-select__label {
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--wd-heading);
}

.sf-type-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-type-pill {
    padding: 9px 18px;
    border: 1px solid var(--wd-line);
    border-radius: 30px;
    background: var(--wd-soft);
    color: var(--wd-heading);
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: border-color .15s ease, color .15s ease, background .15s ease;
}

.sf-type-pill:hover {
    border-color: var(--wd-primary);
    color: var(--wd-primary);
}

.sf-type-pill.is-active {
    border-color: var(--wd-primary);
    color: #fff;
    background: var(--wd-primary);
}

.sf-product-options {
    flex: 0 0 100%;
    display: grid;
    gap: 16px;
    width: 100%;
    margin: 0 0 8px;
    scroll-margin-top: 150px;
}

.sf-product-options__notice {
    margin-bottom: 0;
}

.sf-product-options__notice--live {
    border-width: 2px;
    border-color: #ef4444;
    border-radius: 12px;
    padding: 16px 18px;
    color: #7f1d1d;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 14px 36px rgba(239, 68, 68, .18);
}

.sf-product-option {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.sf-product-option--error {
    margin: -8px;
    padding: 12px;
    border: 2px solid #ef4444;
    border-radius: 14px;
    background: #fff7f7;
    box-shadow: 0 14px 34px rgba(239, 68, 68, .14);
}

.sf-product-option + .sf-product-option {
    margin-top: 14px;
}

.sf-product-option legend {
    display: block;
    width: 100%;
    margin: 0 0 10px;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.35;
}

.sf-product-option legend span {
    color: var(--wd-warning);
}

.sf-product-option__legend--empty {
    display: none;
}

.sf-product-option__help {
    margin: -4px 0 10px;
    color: var(--wd-muted);
    font-size: 14px;
    line-height: 1.45;
}

.sf-product-option__error {
    margin: 10px 0 0;
    color: #991b1b;
    font-size: 14px;
    font-weight: 800;
}

.sf-product-option__choices {
    display: grid;
    grid-template-columns: var(--option-columns-desktop, repeat(3, minmax(0, 1fr)));
    gap: 9px 12px;
}

.sf-product-option__choice {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.sf-product-option__choice input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sf-product-option__choice span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    min-height: 38px;
    padding: 7px 10px;
    border: 2px solid transparent;
    border-radius: 8px;
    background: var(--option-bg, #efe6d6);
    color: #111827;
    font-size: 15px;
    line-height: 1.2;
    text-align: center;
    overflow-wrap: anywhere;
    transition: border-color .15s ease, box-shadow .15s ease, transform .15s ease;
}

.sf-product-option__choice small {
    position: absolute;
    top: -7px;
    right: 8px;
    display: inline-flex;
    align-items: center;
    min-height: 18px;
    padding: 2px 6px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(15, 23, 42, .14);
}

.sf-product-option__choice input:checked + span {
    border-color: #777;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .65);
}

.sf-product-option__choice:focus-within span,
.sf-product-option__choice:hover span {
    border-color: var(--wd-primary);
}

.sf-product-option select.sf-input,
.sf-product-option textarea.sf-input,
.sf-product-option input.sf-input {
    width: 100%;
}

@media (max-width: 1024px) {
    .sf-product-option__choices {
        grid-template-columns: var(--option-columns-tablet, var(--option-columns-desktop, repeat(2, minmax(0, 1fr))));
    }
}

@media (max-width: 640px) {
    .sf-product-option__choices {
        grid-template-columns: var(--option-columns-mobile, 1fr);
    }
}

.sf-device-selector {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    width: 100%;
    margin: 0 0 12px;
}

.sf-device-selector__field {
    display: grid;
    gap: 6px;
    min-width: 0;
    margin: 0;
}

.sf-device-selector__field span {
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 14px;
    font-weight: 600;
}

.sf-device-selector__field select {
    width: 100%;
}

.sf-cart-actions {
    display: grid;
    grid-template-columns: 100px minmax(0, 2fr) minmax(0, 1.1fr) 110px;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin: 0 0 14px;
}

.sf-cart-actions > .sf-device-selector,
.sf-cart-actions > .sf-product-options {
    grid-column: 1 / -1;
    min-width: 0;
}

.sf-cart-actions > * {
    min-width: 0;
}

.sf-cart-actions .sf-btn {
    font-size: 13px;
    font-weight: 600;
    border-radius: 5px;
    min-width: 0;
    width: 100%;
    white-space: nowrap;
}

.sf-cart-actions .sf-quantity {
    grid-column: 1;
    width: 100%;
}

.sf-cart-actions [data-add-to-cart] {
    grid-column: 2;
}

.sf-cart-actions .sf-btn--green {
    grid-column: 3;
}

.sf-wishlist-empty {
    display: grid;
    justify-items: center;
    gap: 14px;
    padding: 58px 18px;
    border: 1px solid var(--wd-line);
    border-radius: 12px;
    background: #fff;
    text-align: center;
}

.sf-wishlist-empty__icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #fff1f2;
    color: var(--wd-red);
}

.sf-wishlist-empty__icon .sf-ico {
    width: 28px;
    height: 28px;
}

.sf-wishlist-empty h2 {
    margin: 0;
    font-size: 24px;
}

.sf-quantity {
    width: 80px;
    text-align: center;
}

.sf-cart-note {
    min-height: 22px;
    color: var(--wd-muted);
    font-size: 14px;
}

.sf-vip-banner {
    margin: -4px 0 22px;
}

.sf-vip-banner img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 3px;
}

.sf-viewer-counter {
    display: flex;
    align-items: center;
    gap: 9px;
    min-height: 50px;
    margin: 0 0 22px;
    padding: 12px 18px;
    border-radius: 8px;
    background: #e8f0ff;
    color: #6f7785;
    font-size: 14px;
    line-height: 1.35;
}

.sf-viewer-counter__icon {
    flex: 0 0 auto;
    width: 17px;
    height: 17px;
    color: var(--wd-primary);
}

.sf-product-meta,
.sf-panel {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: #fff;
}

.sf-product-meta {
    margin-top: 24px;
    padding: 16px;
    color: var(--wd-muted);
    font-size: 14px;
}

.sf-product-meta div + div {
    margin-top: 5px;
}

.sf-sku {
    margin: 0 0 17px;
    color: var(--wd-muted);
    font-size: 14px;
}

/* ------------------------------------------------------------------ shared utility / cart / checkout / search */

.sf-panel {
    padding: 18px;
}

.sf-empty {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    padding: 18px;
    color: var(--wd-muted);
    background: #fff;
}

.sf-search-page-form {
    display: flex;
    margin-bottom: 26px;
}

.sf-search-page-form .sf-input {
    border-radius: 6px 0 0 6px;
}

.sf-search-page-form .sf-btn {
    border-radius: 0 6px 6px 0;
}

.sf-table-wrap {
    overflow-x: auto;
}

.sf-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--wd-line);
    background: #fff;
}

.sf-table th,
.sf-table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid var(--wd-line);
    vertical-align: middle;
}

.sf-table th {
    background: var(--wd-soft);
    color: var(--wd-muted);
    font-size: 13px;
    font-weight: 700;
}

.sf-cart-product {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    min-width: 260px;
}

.sf-cart-product img,
.sf-summary-line img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border: 1px solid var(--wd-line);
    border-radius: 6px;
    background: var(--wd-soft);
}

.sf-inline-form {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sf-cart-total,
.sf-checkout-action {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 16px;
}

.sf-cart-total {
    font-size: 20px;
}

.sf-cart-side {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.sf-cart-side .sf-free-shipping {
    width: min(100%, 430px);
}

.sf-free-shipping {
    display: grid;
    gap: 7px;
    color: #111;
    font-size: 14px;
    line-height: 1.35;
}

.sf-free-shipping__text {
    max-width: 100%;
}

.sf-free-shipping__track {
    height: 8px;
    overflow: hidden;
    border-radius: 999px;
    background: #e7eaf0;
}

.sf-free-shipping__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #111;
    transition: width .2s ease;
}

.sf-checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
    gap: 20px;
    align-items: start;
}

.sf-checkout-main,
.sf-order-summary {
    display: grid;
    gap: 18px;
}

.sf-checkout-summary-panel {
    display: grid;
    gap: 14px;
}

.sf-checkout-summary-section {
    border-top: 1px solid var(--wd-line);
    padding-top: 12px;
}

.sf-checkout-summary-section h3 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 18px;
    line-height: 1.2;
}

.sf-coupon-box {
    color: var(--wd-text);
    font-size: 14px;
}

.sf-summary-total + .sf-coupon-box {
    margin-top: 0;
}

.sf-coupon-box details {
    display: grid;
    gap: 10px;
}

.sf-coupon-box summary {
    cursor: pointer;
    list-style: none;
}

.sf-coupon-box summary::-webkit-details-marker {
    display: none;
}

.sf-coupon-box summary span {
    color: var(--wd-primary);
    text-decoration: underline;
}

.sf-coupon-box__status {
    margin-bottom: 8px;
    color: var(--wd-green);
    font-weight: 700;
}

.sf-coupon-box__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 8px;
    margin-top: 10px;
}

.sf-shipping-address-fields {
    margin-top: 14px;
    border-top: 1px solid var(--wd-line);
    padding-top: 14px;
}

.sf-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.sf-panel {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: #fff;
}

.sf-panel h2 {
    margin: 0 0 14px;
    color: var(--wd-text);
    font-size: 20px;
    line-height: 1.2;
}

.sf-form-grid label,
.sf-checkout-grid label {
    display: grid;
    gap: 6px;
    color: var(--wd-muted);
    font-size: 13px;
    font-weight: 700;
}

.sf-form-wide {
    grid-column: 1 / -1;
}

.sf-alert {
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    margin-bottom: 18px;
    padding: 14px 16px;
    background: #fff;
}

.sf-alert ul {
    margin: 8px 0 0 18px;
}

.sf-alert--error {
    border-color: #fecaca;
    color: #991b1b;
    background: #fef2f2;
}

.sf-options {
    display: grid;
    gap: 10px;
}

.sf-pickup-summary {
    display: grid;
    grid-template-columns: minmax(92px, .42fr) minmax(0, 1fr);
    align-items: start;
    gap: 12px;
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--sf-border);
    font-size: 15px;
    font-weight: 700;
    color: var(--sf-ink);
}

.sf-checkout-summary-panel .sf-options {
    gap: 0;
}

.sf-checkout-summary-panel .sf-option {
    border: 0;
    border-bottom: 1px solid var(--wd-line);
    border-radius: 0;
    padding: 10px 0;
}

.sf-checkout-summary-panel .sf-option:first-child {
    padding-top: 0;
}

.sf-checkout-summary-panel .sf-option em {
    color: var(--wd-primary);
}

.sf-checkout-summary-panel [data-checkout-submit] {
    background: #0066cc;
}

.sf-checkout-summary-panel [data-checkout-submit]:hover {
    background: #0054aa;
}

.sf-pickup-summary[hidden] {
    display: none;
}

.sf-pickup-summary button {
    min-width: 0;
    display: grid;
    gap: 3px;
    border: 0;
    background: transparent;
    color: var(--sf-primary);
    font: inherit;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    overflow-wrap: anywhere;
    word-break: normal;
}

.sf-pickup-summary button:hover {
    text-decoration: underline;
}

.sf-pickup-providers {
    grid-column: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sf-pickup-providers[hidden] {
    display: none;
}

.sf-pickup-summary .sf-pickup-provider {
    width: auto;
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    padding: 7px 12px;
    border: 1px solid var(--sf-border);
    border-radius: 8px;
    background: #fff;
    color: var(--sf-ink);
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
}

.sf-pickup-summary .sf-pickup-provider:hover {
    text-decoration: none;
}

.sf-pickup-summary .sf-pickup-provider.is-active {
    border-color: var(--sf-primary);
    background: #eef4ff;
    color: var(--sf-primary);
}

.sf-pickup-summary button strong,
.sf-pickup-summary button small {
    min-width: 0;
    display: block;
}

.sf-pickup-summary button small {
    color: var(--sf-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
}

.sf-pickup-map-modal[hidden] {
    display: none;
}

.sf-pickup-map-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(15, 23, 42, .45);
}

.sf-pickup-map-shell {
    position: relative;
    overflow: hidden;
    width: 100vw;
    height: 100vh;
    margin: 0;
    display: grid;
    grid-template-columns: 420px minmax(0, 1fr);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 24px 70px rgba(15, 23, 42, .25);
}

.sf-pickup-map-sidebar {
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto auto minmax(0, 1fr);
    gap: 12px;
    padding: 22px 14px 12px;
    border-right: 1px solid var(--sf-border);
    background: #fff;
}

.sf-pickup-map-search {
    padding-right: 42px;
}

.sf-pickup-map-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.sf-pickup-map-filter {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 10px;
    border: 1px solid #d8e2f0;
    border-radius: 7px;
    background: #eef4ff;
    color: #244b8f;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.sf-pickup-map-filter.is-active {
    border-color: var(--sf-primary);
    background: var(--sf-primary);
    color: #fff;
}

.sf-pickup-map-count {
    color: var(--sf-muted);
    font-size: 13px;
}

.sf-pickup-map-list {
    min-height: 0;
    overflow: auto;
    padding-right: 5px;
}

.sf-pickup-map-item {
    width: 100%;
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    padding: 12px 8px;
    border: 0;
    border-bottom: 1px solid var(--sf-border);
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.sf-pickup-map-item:hover,
.sf-pickup-map-item.is-active {
    background: #eaf3fb;
}

.sf-pickup-map-logo {
    width: 34px;
    height: 34px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eef4ff;
    color: var(--sf-primary);
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    margin-top: 0 !important;
    flex: 0 0 34px;
}

.sf-pickup-map-logo--packeta {
    background: #d6271f;
    color: #fff;
}

.sf-pickup-map-item .sf-pickup-map-logo--packeta {
    color: #fff;
}

.sf-pickup-map-logo--gls {
    background: #fff;
    color: #fff;
    border-radius: 999px;
    border: 1px solid #d7e1ef;
}

.sf-pickup-map-item .sf-pickup-map-logo--gls {
    color: #fff;
}

.sf-pickup-map-logo--foxpost {
    background: #fff;
    color: #fff;
    border-radius: 8px;
    border: 1px solid #f0c7c9;
}

.sf-pickup-map-item .sf-pickup-map-logo--foxpost {
    color: #fff;
}

.sf-pickup-map-logo img,
.sf-pickup-leaflet-marker img {
    width: 78%;
    height: 78%;
    display: block;
    object-fit: contain;
    margin: 0;
}

.sf-pickup-map-logo--packeta img,
.sf-pickup-leaflet-marker--packeta img {
    filter: brightness(0) invert(1);
}

.sf-pickup-map-item strong,
.sf-pickup-map-item span,
.sf-pickup-map-item small {
    min-width: 0;
    display: block;
}

.sf-pickup-map-item strong {
    color: #22335f;
    font-size: 14px;
    line-height: 1.25;
}

.sf-pickup-map-item span {
    margin-top: 3px;
    color: var(--sf-muted);
    font-size: 13px;
    line-height: 1.25;
}

.sf-pickup-map-item small {
    margin-top: 4px;
    color: #4e9d3a;
    font-size: 13px;
    font-weight: 800;
}

.sf-pickup-map-item-details {
    display: block;
    margin-top: 12px;
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    line-height: 1.45;
}

.sf-pickup-map-item-details[hidden],
.sf-pickup-map-select[hidden] {
    display: none;
}

.sf-pickup-map-select {
    width: 100%;
    min-height: 44px;
    margin-top: 12px;
    border: 0;
    border-radius: 5px;
    background: #1c61e7 !important;
    color: #fff !important;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(28, 97, 231, .22);
}

.sf-pickup-map-select:hover {
    background: #1555d6;
}

.sf-pickup-map-canvas {
    min-height: 560px;
}

.sf-pickup-map-close {
    position: fixed;
    top: 18px;
    right: 18px;
    z-index: 10020;
    width: 52px;
    height: 52px;
    border: 1px solid #cfd8e3;
    border-radius: 999px;
    background: #fff;
    color: #34527a;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(15, 23, 42, .16);
}

.sf-pickup-leaflet-marker {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    border-radius: 999px;
    background: #0066cc;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .28);
}

.sf-pickup-leaflet-marker--packeta {
    background: #d6271f;
    border-radius: 8px;
}

.sf-pickup-leaflet-marker--gls {
    background: #fff;
}

.sf-pickup-leaflet-marker--foxpost {
    background: #fff;
    border-radius: 8px;
}

.marker-cluster {
    background-clip: padding-box;
    border-radius: 999px;
}

.marker-cluster div {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #fff;
    border-radius: 999px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(15, 23, 42, .24);
}

.marker-cluster-small div {
    background: #62aa5a;
}

.marker-cluster-medium div {
    background: #f3bc30;
}

.marker-cluster-large div {
    background: #d6271f;
}

.marker-cluster span {
    line-height: 1;
}

.sf-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--wd-line);
    border-radius: 8px;
    padding: 12px;
    color: var(--wd-text);
}

.sf-option small {
    display: block;
    color: var(--wd-muted);
    font-weight: 500;
}

.sf-option em {
    color: var(--wd-blue);
    font-style: normal;
    font-weight: 800;
}

.sf-checkline {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: center;
    gap: 9px !important;
    margin: 14px 0;
}

.sf-checkout-legal {
    display: grid;
    gap: 10px;
    color: var(--wd-text);
    font-size: 13px;
    line-height: 1.5;
}

.sf-checkout-legal p,
.sf-checkout-legal .sf-checkline {
    margin: 0;
}

.sf-checkout-legal a {
    color: var(--wd-primary);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.sf-checkout-legal .sf-checkline {
    align-items: flex-start;
}

.sf-checkout-legal input[type="checkbox"] {
    margin-top: 4px;
}

.sf-order-summary {
    position: sticky;
    top: 18px;
}

.sf-summary-lines {
    display: grid;
    gap: 12px;
}

.sf-summary-total {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto auto;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--wd-line);
    padding-bottom: 10px;
}

.sf-summary-line {
    display: grid;
    gap: 6px;
    border-bottom: 1px solid var(--wd-line);
    padding-bottom: 10px;
}

.sf-summary-line__top {
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.sf-summary-line:not(.sf-summary-line--with-image) .sf-summary-line__top {
    grid-template-columns: minmax(0, 1fr) auto;
}

.sf-summary-line img {
    width: 56px;
    height: 56px;
}

.sf-summary-line span {
    min-width: 0;
    color: var(--wd-muted);
    font-size: 14px;
}

.sf-summary-line__top strong {
    white-space: nowrap;
}

.sf-summary-line__actions {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 8px;
}

.sf-cart-qty {
    display: inline-grid;
    grid-template-columns: 26px 30px 26px;
    align-items: center;
    width: max-content;
    overflow: hidden;
    border: 1px solid var(--wd-line);
    border-radius: 6px;
    background: #fff;
}

.sf-cart-qty button,
.sf-cart-qty span {
    display: grid;
    place-items: center;
    min-width: 0;
    height: 26px;
    border: 0;
    background: #fff;
    color: var(--wd-heading);
    font: inherit;
    font-weight: 700;
}

.sf-cart-qty button {
    cursor: pointer;
}

.sf-cart-qty button:hover {
    background: var(--wd-soft);
}

.sf-cart-qty span {
    border-right: 1px solid var(--wd-line);
    border-left: 1px solid var(--wd-line);
    font-size: 12px;
}

.sf-cart-qty--summary {
    justify-self: end;
}

.sf-cart-remove-small {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border: 1px solid var(--wd-line);
    border-radius: 6px;
    background: #fff;
    color: var(--wd-muted);
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.sf-cart-remove-small:hover {
    background: #fff1f2;
    border-color: #fecdd3;
    color: #dc2626;
}

.sf-summary-total {
    margin-top: 12px;
    border-bottom: 0;
    padding-bottom: 0;
    font-size: 18px;
}

.sf-checkout-summary-panel .sf-summary-total {
    grid-template-columns: minmax(0, 1fr) auto;
}

.sf-summary-total--grand {
    border-top: 1px solid var(--wd-line);
    padding-top: 12px;
}

.sf-summary-total--grand strong {
    color: var(--wd-primary);
    font-size: 20px;
}

.sf-checkout-trust {
    width: 100%;
    border: 1px solid var(--wd-line);
    border-radius: var(--wd-radius);
    background: #fff;
    padding: 18px;
}

.sf-checkout-trust__inner {
    padding: 0;
}

.sf-checkout-trust h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 26px;
    color: #111827;
    font-family: var(--wd-text-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
    text-align: center;
    white-space: nowrap;
}

.sf-checkout-trust h2::before,
.sf-checkout-trust h2::after {
    content: "";
    height: 1px;
    flex: 1 1 auto;
    background: #d8e7f9;
}

.sf-checkout-trust__items {
    display: grid;
    gap: 26px;
}

.sf-checkout-trust__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 18px;
    align-items: center;
}

.sf-checkout-trust__icon {
    display: grid;
    place-items: center;
    color: #7d9b35;
}

.sf-trust-ico {
    width: 58px;
    height: 58px;
}

.sf-checkout-trust h3 {
    margin: 0 0 8px;
    color: #111827;
    font-family: var(--wd-text-font);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.35;
}

.sf-checkout-trust p {
    margin: 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.55;
}

.sf-thank-you {
    width: min(760px, 100%);
    margin: 0 auto;
}

.sf-kicker {
    display: inline-flex;
    margin-bottom: 10px;
    color: var(--wd-green);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.sf-thank-you h1 {
    margin: 0 0 10px;
    font-size: 34px;
    line-height: 1.1;
}

.sf-thank-you p {
    margin: 0 0 18px;
    color: var(--wd-muted);
}

.sf-thank-you__meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0;
}

.sf-thank-you__meta div {
    border: 1px solid var(--wd-line);
    border-radius: 8px;
    padding: 12px;
}

.sf-thank-you__meta span {
    display: block;
    color: var(--wd-muted);
    font-size: 12px;
    font-weight: 700;
}

.sf-payment-retry {
    display: grid;
    gap: 14px;
    margin: 20px 0;
    padding: 16px;
    border: 1px solid var(--wd-line);
    border-radius: 8px;
    background: #f8fafc;
}

.sf-payment-retry__heading {
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 700;
    color: var(--wd-title-color);
}

.sf-payment-retry .sf-payment-methods {
    display: grid;
    gap: 10px;
}

.sf-payment-retry .sf-payment-method {
    margin: 0;
    background: #fff;
}

.sf-payment-retry .sf-payment-method small {
    display: block;
    margin-top: 2px;
    color: var(--wd-muted);
    font-size: 13px;
    line-height: 1.35;
}

.sf-option .sf-payment-description,
.sf-payment-retry .sf-payment-method .sf-payment-description {
    display: none;
    margin-top: 4px;
}

.sf-option input:checked + span .sf-payment-description,
.sf-payment-retry .sf-payment-method input:checked + span .sf-payment-description {
    display: block;
}

.sf-option .sf-payment-description--warning,
.sf-payment-retry .sf-payment-method .sf-payment-description--warning {
    color: #c81e1e;
    font-weight: 700;
}

.sf-field label {
    display: block;
    margin: 0 0 5px;
    color: var(--wd-muted);
    font-size: 13px;
    font-weight: 700;
}

.sf-error {
    margin: 0 0 14px;
    color: #b42318;
    font-weight: 700;
}

.sf-summary {
    display: grid;
    gap: 10px;
}

.sf-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.sf-muted {
    color: var(--wd-muted);
}

.sf-cart-options-compact {
    color: var(--wd-muted);
    display: block;
    font-size: 12px;
    line-height: 1.35;
    margin-top: 2px;
    max-width: 560px;
}

.sf-cart-options-compact--summary {
    max-width: none;
    font-size: 11px;
    line-height: 1.3;
}

/* ------------------------------------------------------------------ minicart */

.sf-minicart-lock {
    overflow: hidden;
}

.sf-minicart {
    position: fixed;
    inset: 0;
    z-index: 80;
    pointer-events: none;
}

.sf-minicart.is-open {
    pointer-events: auto;
}

.sf-minicart__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgb(15 23 42 / 42%);
    opacity: 0;
    cursor: pointer;
    transition: opacity .18s ease;
}

.sf-minicart.is-open .sf-minicart__backdrop {
    opacity: 1;
}

.sf-minicart__panel {
    position: absolute;
    top: 0;
    right: 0;
    width: min(420px, 100vw);
    height: 100%;
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
    background: #fff;
    box-shadow: -18px 0 48px rgb(15 23 42 / 22%);
    transform: translateX(100%);
    transition: transform .2s ease;
}

.sf-minicart.is-open .sf-minicart__panel {
    transform: translateX(0);
}

.sf-minicart__head,
.sf-minicart__foot {
    padding: 18px 20px;
    border-bottom: 1px solid var(--wd-line);
}

.sf-minicart__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.sf-minicart__head strong {
    display: block;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 22px;
}

.sf-minicart__head span {
    display: block;
    color: var(--wd-muted);
    font-size: 13px;
    font-weight: 700;
}

.sf-minicart__close {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 1px solid var(--wd-line);
    border-radius: 50%;
    background: #fff;
    color: var(--wd-heading);
    cursor: pointer;
    font-size: 26px;
    line-height: 1;
}

.sf-minicart__body {
    overflow: auto;
    padding: 12px 20px;
}

.sf-minicart__empty {
    min-height: 180px;
    display: grid;
    place-items: center;
    color: var(--wd-muted);
    text-align: center;
    font-weight: 700;
}

.sf-minicart__item {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto 28px;
    gap: 12px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--wd-line);
}

.sf-minicart__item img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border: 1px solid var(--wd-line);
    border-radius: 6px;
    background: var(--wd-soft);
}

.sf-minicart__placeholder {
    width: 64px;
    height: 64px;
    border-radius: 6px;
}

.sf-minicart__item strong,
.sf-minicart__item span,
.sf-minicart__item small {
    display: block;
}

.sf-minicart__item strong {
    color: var(--wd-heading);
    font-size: 14px;
    line-height: 1.35;
}

.sf-minicart__item span,
.sf-minicart__item small {
    color: var(--wd-muted);
    font-size: 12px;
}

.sf-minicart__item b {
    color: var(--wd-heading);
    font-size: 14px;
    white-space: nowrap;
}

.sf-minicart__item .sf-cart-qty span {
    display: grid;
    color: var(--wd-heading);
    font-size: 13px;
}

.sf-minicart__remove-form {
    margin: 0;
}

.sf-minicart__remove {
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--wd-line);
    border-radius: 50%;
    background: #fff;
    color: var(--wd-muted);
    font-size: 18px;
    line-height: 1;
    cursor: pointer;
    transition: color .15s ease, border-color .15s ease, background .15s ease;
}

.sf-minicart__remove:hover,
.sf-minicart__remove:focus-visible {
    border-color: #dc2626;
    background: #fff5f5;
    color: #dc2626;
}

.sf-minicart__remove:disabled {
    cursor: wait;
    opacity: .55;
}

.sf-minicart__foot {
    display: grid;
    gap: 10px;
    border-top: 1px solid var(--wd-line);
    border-bottom: 0;
}

.sf-minicart__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: var(--wd-heading);
}

.sf-minicart__subtotal span {
    color: var(--wd-muted);
    font-weight: 700;
}

.sf-minicart__foot .sf-btn {
    width: 100%;
}

/* ------------------------------------------------------------------ features strip + footer */

.sf-features {
    border-top: 1px solid var(--wd-line);
    background: #fff;
    padding: 26px 0;
}

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

.sf-feature {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: start;
}

.sf-feature__icon {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    color: var(--wd-primary);
    background: var(--wd-primary-soft);
}

.sf-feature__icon .sf-ico {
    width: 24px;
    height: 24px;
}

.sf-feature__title {
    display: block;
    color: var(--wd-heading);
    font-size: 15px;
}

.sf-feature__text {
    margin: 4px 0 0;
    color: var(--wd-muted);
    font-size: 13px;
    line-height: 1.4;
}

.sf-footer {
    border-top: 1px solid var(--wd-line);
    background: #fff;
    color: var(--wd-text);
}

.sf-footer-features {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
    padding: 20px 0 34px;
}

.sf-footer-feature {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 22px;
    gap: 12px;
    align-items: start;
    color: var(--wd-text);
}

.sf-footer-feature:hover {
    color: var(--wd-text);
}

.sf-footer-feature strong {
    display: block;
    color: var(--wd-heading);
    font-size: 17px;
    line-height: 1.25;
}

.sf-footer-feature small {
    display: block;
    margin-top: 5px;
    color: var(--wd-muted);
    font-size: 14px;
    line-height: 1.45;
}

.sf-footer-feature i {
    position: relative;
    display: block;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--wd-primary);
    color: transparent;
    font-size: 0;
    font-style: normal;
    line-height: 0;
}

.sf-footer-feature i::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translate(-60%, -50%) rotate(45deg);
}

.sf-footer-main {
    display: grid;
    grid-template-columns: 1.25fr 1fr 1fr 1.7fr;
    gap: 46px;
    padding: 34px 0 8px;
    border-top: 1px solid var(--wd-line);
}

.sf-footer-brand .sf-logo img {
    width: 300px;
    max-width: 100%;
}

.sf-footer-help {
    display: grid;
    gap: 16px;
    margin: 24px 0;
    color: var(--wd-muted);
    font-size: 15px;
}

.sf-footer-help strong {
    display: block;
    color: var(--wd-heading);
    font-size: 17px;
}

.sf-footer-follow {
    display: block;
    margin: 0 0 10px;
    font-weight: 700;
    color: var(--wd-heading);
    font-size: 17px;
}

.sf-socials {
    display: flex;
    gap: 7px;
}

.sf-social {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--wd-primary);
    color: #fff;
    font-weight: 700;
    font-size: 13px;
}

.sf-social:hover {
    color: #fff;
    background: var(--wd-primary-dark);
}

.sf-footer-col h3 {
    margin: 0 0 14px;
    font-size: 15px;
    color: var(--wd-heading);
}

.sf-footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.sf-footer-col a {
    color: var(--wd-muted);
    font-size: 13px;
}

.sf-footer-col a:hover {
    color: var(--wd-primary);
}

.sf-partners {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.sf-partner-badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0;
    border-radius: 0;
    background: #fff;
    border: 0;
    color: var(--wd-primary);
    font-size: 20px;
    font-weight: 800;
    line-height: 1;
}

.sf-partner-badge--shopmania {
    min-width: 94px;
    min-height: 76px;
    justify-content: center;
    border: 3px solid #67c8ec;
    border-radius: 50%;
    color: #2c8cc4;
    font-size: 12px;
    text-align: center;
}

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

.sf-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 0;
    color: var(--wd-muted);
    font-size: 14px;
}

.sf-footer-bottom-inner strong {
    color: var(--wd-heading);
}

.sf-payments {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 6px;
}

.sf-payments img {
    display: block;
    width: 255px;
    max-width: 100%;
    height: auto;
}

.sf-payment {
    min-width: 34px;
    padding: 3px 6px;
    border-radius: 2px;
    background: #edf4ff;
    border: 1px solid #cfddf4;
    color: #1f5da8;
    font-size: 9px;
    font-weight: 700;
}

.sf-builder {
    display: grid;
    gap: 28px;
    padding-top: 28px;
    padding-bottom: 44px;
}

.sf-container.sf-builder--guide {
    width: min(1324px, 100% - 32px);
}

.sf-builder-hero {
    min-height: 340px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
    background: #0f172a;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 42px;
}

.sf-builder-hero > div {
    max-width: 620px;
}

.sf-builder-hero h1 {
    margin: 0 0 12px;
    font-size: 42px;
    line-height: 1.05;
}

.sf-builder-hero p {
    margin: 0 0 22px;
    color: rgba(255,255,255,.88);
    font-size: 17px;
    line-height: 1.55;
}

.sf-builder-text {
    max-width: 900px;
    color: var(--wd-text);
    font-size: 16px;
    line-height: 1.75;
}

.sf-builder-text h2 {
    margin: 0 0 12px;
    color: var(--wd-heading);
    font-size: 28px;
    line-height: 1.2;
}

.sf-builder-image {
    margin: 0;
}

.sf-builder-image img {
    display: block;
    width: 100%;
    border-radius: 8px;
}

.sf-builder-image figcaption {
    margin-top: 8px;
    color: var(--wd-muted);
    font-size: 13px;
}

.sf-contact-page {
    margin: 8px 0 4px;
}

.sf-contact-layout {
    display: grid;
    grid-template-columns: minmax(300px, .97fr) minmax(300px, .95fr) minmax(300px, .95fr);
    gap: 18px;
    align-items: stretch;
}

.sf-contact-map,
.sf-contact-panel {
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.sf-contact-map {
    min-height: 430px;
}

.sf-contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 430px;
    border: 0;
}

.sf-contact-panel {
    padding: 24px 18px;
}

.sf-contact-panel h2,
.sf-contact-company h3 {
    margin: 0 0 18px;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.sf-contact-line {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 18px;
}

.sf-contact-line__icon {
    flex: 0 0 auto;
    display: flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1c61e7;
    color: #fff;
    line-height: 0;
    overflow: visible;
}

.sf-contact-line__icon .sf-ico {
    width: 15px !important;
    height: 15px !important;
    display: block;
    flex: 0 0 15px;
    overflow: visible;
}

.sf-contact-line > div span,
.sf-contact-line a,
.sf-contact-company span,
.sf-contact-company strong {
    display: block;
    color: var(--wd-muted);
    font-size: 14px;
    line-height: 1.45;
    text-decoration: none;
}

.sf-contact-line a {
    display: inline;
}

.sf-contact-line a + a::before {
    content: " / ";
    color: var(--wd-muted);
}

.sf-contact-pickup {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin: 10px 0 22px;
    border-radius: 6px;
    background: #f3f4f6;
    padding: 8px 11px;
    color: #333;
    font-size: 12px;
}

.sf-contact-pickup .sf-ico {
    width: 14px;
    height: 14px;
}

.sf-contact-companies {
    display: grid;
    gap: 22px;
}

.sf-contact-company strong {
    margin-bottom: 2px;
    color: var(--wd-muted);
    font-weight: 400;
}

.sf-contact-form-panel h2 {
    margin-bottom: 12px;
}

.sf-contact-form {
    display: grid;
    gap: 20px;
}

.sf-contact-form textarea.sf-input {
    min-height: 170px;
    resize: none;
}

.sf-contact-form .sf-btn {
    width: max-content;
    min-width: 122px;
    justify-content: center;
    border-radius: 4px;
    padding: 12px 18px;
    font-size: 13px;
}

.sf-form-alert {
    margin-bottom: 14px;
    border-radius: 8px;
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.45;
}

.sf-form-alert--success {
    background: #e9f9ef;
    color: #1d7330;
}

.sf-form-alert--error {
    background: #fff0f0;
    color: #b42318;
}

.sf-shipping-page {
    display: grid;
    gap: 24px;
}

.sf-shipping-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: center;
    gap: 28px;
    padding: 34px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: linear-gradient(135deg, #0f5fd7 0%, #1f78f2 54%, #5fb8ff 100%);
    color: #fff;
    overflow: hidden;
}

.sf-shipping-hero h1 {
    margin: 0 0 12px;
    color: #fff;
    font-size: 42px;
    line-height: 1.08;
}

.sf-shipping-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    font-size: 17px;
    line-height: 1.65;
}

.sf-shipping-hero img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(15, 23, 42, .18);
}

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

.sf-shipping-sections {
    display: grid;
    gap: 16px;
}

.sf-shipping-card,
.sf-shipping-support {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.sf-shipping-card {
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    padding: 24px;
}

.sf-shipping-card__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #eaf2ff;
    color: var(--wd-primary);
}

.sf-shipping-card:nth-child(2n) .sf-shipping-card__icon {
    background: #e9f9ef;
    color: #2f8a3b;
}

.sf-shipping-card__icon .sf-ico {
    width: 28px;
    height: 28px;
}

.sf-shipping-card h2 {
    margin: 0 0 8px;
    color: var(--wd-heading);
    font-size: 24px;
    line-height: 1.2;
}

.sf-shipping-card p {
    margin: 0;
    color: var(--wd-muted);
    font-size: 16px;
    line-height: 1.7;
}

.sf-shipping-support {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 12px;
    padding: 22px;
}

.sf-shipping-support h2 {
    margin: 0 0 6px;
    color: var(--wd-heading);
    font-size: 22px;
    line-height: 1.2;
}

.sf-shipping-support a {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5edf8;
    border-radius: 8px;
    background: #f8fbff;
    color: var(--wd-primary);
    font-weight: 700;
    text-decoration: none;
}

.sf-shipping-support .sf-ico {
    width: 22px;
    height: 22px;
}

.sf-complaints-page {
    display: grid;
    gap: 24px;
}

.sf-complaints-hero {
    padding: 34px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: linear-gradient(135deg, #f3f7ff 0%, #fff 60%, #f7fbf7 100%);
}

.sf-complaints-hero h1 {
    margin: 0 0 12px;
    color: var(--wd-heading);
    font-size: 42px;
    line-height: 1.08;
}

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

.sf-complaints-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 22px;
    align-items: start;
}

.sf-complaints-content,
.sf-complaints-box {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.sf-complaints-content {
    display: grid;
    gap: 18px;
    padding: 30px;
}

.sf-complaints-content p {
    margin: 0;
    color: #222;
    font-size: 16px;
    line-height: 1.75;
}

.sf-complaints-sidebar {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 16px;
}

.sf-complaints-box {
    display: grid;
    gap: 14px;
    padding: 22px;
}

.sf-complaints-box h2 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 22px;
    line-height: 1.2;
}

.sf-complaints-documents,
.sf-complaints-support {
    display: grid;
    gap: 10px;
}

.sf-complaints-documents a,
.sf-complaints-documents > span,
.sf-complaints-support a,
.sf-complaints-support > span {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
    padding: 12px;
    border: 1px solid #e5edf8;
    border-radius: 8px;
    background: #f8fbff;
    color: var(--wd-primary);
    font-weight: 700;
    text-decoration: none;
}

.sf-complaints-documents > span {
    color: var(--wd-heading);
}

.sf-complaints-documents .sf-ico,
.sf-complaints-support .sf-ico {
    width: 22px;
    height: 22px;
}

.sf-complaints-fields {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-complaints-fields li {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f7f8fb;
    color: #334155;
    font-size: 15px;
}

.sf-blog-index,
.sf-blog-post {
    display: grid;
    gap: 26px;
}

.sf-blog-hero,
.sf-blog-post__header {
    padding: 34px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: linear-gradient(135deg, #f4f8ff 0%, #fff 64%, #f7fbff 100%);
}

.sf-blog-hero h1,
.sf-blog-post__header h1 {
    margin: 0 0 12px;
    color: var(--wd-heading);
    font-size: 42px;
    line-height: 1.08;
}

.sf-blog-hero p,
.sf-blog-post__header p {
    max-width: 860px;
    margin: 0;
    color: var(--wd-muted);
    font-size: 17px;
    line-height: 1.65;
}

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

.sf-blog-card {
    overflow: hidden;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.sf-blog-card__image {
    display: block;
    aspect-ratio: 16 / 9;
    background: #f2f4f8;
}

.sf-blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-blog-card__body {
    display: grid;
    gap: 10px;
    padding: 20px;
}

.sf-blog-card time,
.sf-blog-post__meta {
    color: #718096;
    font-size: 13px;
    font-weight: 600;
}

.sf-blog-card h2 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 21px;
    line-height: 1.25;
}

.sf-blog-card h2 a {
    color: inherit;
    text-decoration: none;
}

.sf-blog-card h2 a:hover,
.sf-blog-card__more:hover,
.sf-blog-post__back:hover {
    color: var(--wd-primary);
}

.sf-blog-card p {
    margin: 0;
    color: var(--wd-muted);
    font-size: 15px;
    line-height: 1.65;
}

.sf-blog-card__more {
    color: var(--wd-primary);
    font-size: 14px;
    font-weight: 800;
    text-decoration: none;
}

.sf-blog-post {
    width: 100%;
    max-width: var(--wd-container);
    margin: 0 auto;
}

.sf-blog-post__back {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: 8px;
    color: var(--wd-primary);
    font-weight: 800;
    text-decoration: none;
}

.sf-blog-post__back .sf-ico {
    width: 16px;
    height: 16px;
    transform: rotate(180deg);
}

.sf-blog-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.sf-blog-post__image {
    overflow: hidden;
    margin: 0;
    height: clamp(360px, 48vw, 620px);
    border-radius: 8px;
    background: #f2f4f8;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .07);
}

.sf-blog-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-blog-post__content {
    display: flow-root;
    padding: 42px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    color: #20242a;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .05);
}

.sf-blog-post__content > *:first-child {
    margin-top: 0;
}

.sf-blog-post__content > *:last-child {
    margin-bottom: 0;
}

.sf-blog-post__content h2,
.sf-blog-post__content h3,
.sf-blog-post__content h4 {
    margin: 34px 0 14px;
    color: var(--wd-heading);
    line-height: 1.25;
}

.sf-blog-post__content h2 {
    clear: both;
    padding-top: 8px;
    font-size: 30px;
}

.sf-blog-post__content h3 {
    font-size: 21px;
}

.sf-blog-post__content h4 {
    font-size: 17px;
}

.sf-blog-post__content p,
.sf-blog-post__content li {
    color: #20242a;
    font-size: 15px;
    line-height: 1.75;
}

.sf-blog-post__content p,
.sf-blog-post__content ul,
.sf-blog-post__content ol,
.sf-blog-post__content figure {
    margin: 0 0 20px;
}

.sf-blog-post__content ul,
.sf-blog-post__content ol {
    display: grid;
    gap: 8px;
    padding-left: 26px;
}

.sf-blog-post__content ul {
    list-style: disc;
}

.sf-blog-post__content ol {
    list-style: decimal;
}

.sf-blog-post__content a {
    color: var(--wd-primary);
    font-weight: 700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 4px;
}

.sf-blog-post__content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.sf-blog-post__content figure {
    overflow: hidden;
}

.sf-blog-post__content .sf-blog-content-section {
    margin: 0 0 24px;
    padding: 28px;
    border: 1px solid #e7edf6;
    border-radius: 8px;
    background: #f8fbff;
}

.sf-blog-post__content .sf-blog-content-section > *:first-child {
    margin-top: 0;
    padding-top: 0;
}

.sf-blog-post__content .sf-blog-content-section > *:last-child {
    margin-bottom: 0;
}

.sf-blog-post__content .sf-blog-content-section h2 {
    margin-bottom: 12px;
}

.sf-blog-post__content .sf-blog-content-section h3 {
    margin: 0 0 8px;
}

.sf-blog-post__content .sf-blog-feature-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 28px;
    margin-top: 22px;
}

.sf-blog-post__content .sf-blog-feature-list > div {
    min-width: 0;
}

.sf-blog-post__content .sf-blog-feature-list ul,
.sf-blog-post__content .sf-blog-feature-list ol,
.sf-blog-post__content .sf-blog-feature-list p {
    margin-bottom: 0;
}

.sf-blog-post__content .sf-blog-inline-gallery {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin: 28px 0;
}

.sf-blog-post__content .sf-blog-inline-gallery figure {
    margin: 0;
    aspect-ratio: 4 / 3;
    border-radius: 8px;
    background: #f2f4f8;
}

.sf-blog-post__content .sf-blog-inline-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-legal-page {
    max-width: 1040px;
    margin: 0 auto;
    display: grid;
    gap: 22px;
}

.sf-legal-page__header,
.sf-legal-page__content {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-legal-page__header {
    padding: 30px 34px;
    background: linear-gradient(135deg, #f4f8ff 0%, #fff 70%);
}

.sf-legal-page__header h1 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 40px;
    line-height: 1.12;
}

.sf-legal-page__content {
    padding: 34px;
}

.sf-legal-page__content > *:first-child {
    margin-top: 0;
}

.sf-legal-page__content > *:last-child {
    margin-bottom: 0;
}

.sf-legal-page__content p,
.sf-legal-page__content li {
    color: #20242a;
    font-size: 15px;
    line-height: 1.8;
}

.sf-legal-page__content p,
.sf-legal-page__content ul,
.sf-legal-page__content ol,
.sf-legal-page__content table {
    margin: 0 0 16px;
}

.sf-legal-page__content strong {
    color: var(--wd-heading);
    font-weight: 800;
}

.sf-legal-page__content h2,
.sf-legal-page__content h3,
.sf-legal-page__content h4 {
    margin: 28px 0 12px;
    color: var(--wd-heading);
    line-height: 1.25;
}

.sf-legal-page__content h2 {
    font-size: 26px;
}

.sf-legal-page__content h3 {
    font-size: 21px;
}

.sf-legal-page__content ul,
.sf-legal-page__content ol {
    padding-left: 24px;
}

.sf-legal-page__content a {
    color: var(--wd-primary);
    font-weight: 700;
}

.sf-legal-page__content .has-text-align-center,
.sf-legal-page__content [style*="text-align: center"] {
    text-align: center;
}

.sf-about-films {
    display: grid;
    gap: 34px;
}

.sf-about-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
    gap: 28px;
    align-items: center;
    border-radius: 8px;
    border: 1px solid #1c61e7;
    background: #1c61e7;
    padding: 36px;
}

.sf-about-hero h1 {
    margin: 0 0 16px;
    color: #fff;
    font-size: 44px;
    line-height: 1.08;
}

.sf-about-panel p,
.sf-about-type p,
.sf-about-why p {
    color: var(--wd-text);
    font-size: 16px;
    line-height: 1.75;
}

.sf-about-hero p {
    max-width: 720px;
    margin: 0 0 10px;
    color: rgba(255, 255, 255, .92);
    font-size: 16px;
    line-height: 1.75;
}

.sf-about-hero__media img,
.sf-about-why img {
    display: block;
    width: 100%;
    height: auto;
}

.sf-about-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 20px;
}

.sf-about-badges span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(255, 255, 255, .72);
    color: #1c61e7;
    padding: 8px 14px;
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(15, 23, 42, .06);
}

.sf-about-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sf-about-panel,
.sf-about-type,
.sf-about-why {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-about-panel {
    padding: 26px;
}

.sf-about-panel h2,
.sf-about-types > h2,
.sf-about-why h2 {
    margin: 0 0 14px;
    color: var(--wd-heading);
    font-size: 30px;
    line-height: 1.15;
}

.sf-about-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.sf-about-feature-card {
    min-height: 260px;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #dbeafe;
    background: #f8fbff;
    background-size: cover;
    background-position: center;
    color: var(--wd-heading);
    padding: 28px;
}

.sf-about-feature-card > div {
    max-width: 48%;
}

.sf-about-feature-card h3 {
    margin: 0 0 8px;
    color: #000;
    font-size: 34px;
    line-height: 1.15;
}

.sf-about-feature-card p {
    margin: 0 0 20px;
    color: var(--wd-primary);
    font-size: 16px;
    line-height: 1.55;
}

.sf-about-feature-card span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border-radius: 4px;
    background: #416cc7;
    color: #fff;
    padding: 8px 24px;
    font-weight: 800;
}

.sf-about-types {
    display: grid;
    gap: 18px;
}

.sf-about-type-list {
    display: grid;
    gap: 18px;
}

.sf-about-type {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
    align-items: center;
    padding: 28px;
}

.sf-about-type:nth-child(even) {
    grid-template-columns: 280px minmax(0, 1fr);
}

.sf-about-type:nth-child(even) .sf-about-type__media {
    order: -1;
}

.sf-about-type h3 {
    margin: 0 0 12px;
    color: var(--wd-heading);
    font-size: 26px;
    line-height: 1.18;
}

.sf-about-type__media {
    display: flex;
    justify-content: center;
}

.sf-about-type__media img {
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 310px;
    object-fit: contain;
}

.sf-about-negatives {
    margin-top: 18px;
    border-radius: 8px;
    background: #fff7ed;
    border: 1px solid #fed7aa;
    padding: 16px;
}

.sf-about-negatives strong {
    display: block;
    margin-bottom: 8px;
    color: #9a3412;
}

.sf-about-negatives ul {
    margin: 0;
    padding-left: 20px;
    color: #7c2d12;
    line-height: 1.7;
}

.sf-about-why {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px;
    align-items: center;
    padding: 36px;
    border-color: #1c61e7;
    background: #1c61e7;
}

.sf-about-why h2,
.sf-about-why p {
    color: #fff;
}

.sf-about-why img {
    justify-self: stretch;
    border-radius: 8px;
    background: #1c61e7;
    object-fit: contain;
}

.sf-guide-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 330px;
    gap: 34px;
    max-width: 1324px;
    margin: 0 auto;
    align-items: stretch;
}

.sf-guide-page {
    display: grid;
    gap: 26px;
    min-width: 0;
    color: #000;
}

.sf-guide-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: stretch;
    border: 1px solid #dce7f5;
    border-radius: 8px;
    background:
        radial-gradient(circle at 6% 10%, rgba(28, 97, 231, .08), transparent 34%),
        linear-gradient(135deg, #ffffff 0%, #f7fbff 100%);
    padding: 34px;
}

.sf-guide-heading {
    display: grid;
    align-content: center;
    gap: 14px;
}

.sf-guide-heading h1 {
    margin: 0;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 38px;
    font-weight: 700;
    line-height: 1.15;
}

.sf-guide-heading h2 {
    margin: 0;
    color: #101827;
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.35;
}

.sf-guide-heading p {
    max-width: 720px;
    margin: 0;
    color: #526173;
    font-family: var(--wd-text-font);
    font-size: 16px;
    line-height: 1.75;
}

.sf-guide-tools {
    display: grid;
    align-content: start;
    gap: 16px;
    border: 1px solid #dce7f5;
    border-radius: 8px;
    background: rgba(255, 255, 255, .82);
    padding: 22px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.sf-guide-tools h2 {
    margin: 0;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 700;
    line-height: 1.35;
}

.sf-guide-tools ul,
.sf-guide-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
    color: #1f2937;
    font-family: var(--wd-text-font);
    font-size: 14px;
    line-height: 1.55;
}

.sf-guide-tools li,
.sf-guide-list li {
    position: relative;
    padding-left: 22px;
}

.sf-guide-tools li::before,
.sf-guide-list li::before {
    content: "";
    position: absolute;
    top: .68em;
    left: 0;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--wd-primary);
}

.sf-guide-feature-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.sf-guide-feature-card {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr);
    gap: 16px;
    align-items: center;
    overflow: hidden;
    border: 1px solid #e1e7f0;
    border-radius: 8px;
    background: #fff;
    padding: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, .04);
}

.sf-guide-feature-card img {
    width: 86px;
    height: 72px;
    object-fit: cover;
    object-position: right center;
    border-radius: 6px;
    background: #f4f7fb;
}

.sf-guide-feature-card h3 {
    margin: 0 0 4px;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.3;
}

.sf-guide-feature-card p {
    margin: 0;
    color: #667085;
    font-family: var(--wd-text-font);
    font-size: 13px;
    line-height: 1.5;
}

.sf-guide-sections {
    display: grid;
    gap: 22px;
}

.sf-guide-section {
    display: grid;
    gap: 20px;
    border: 1px solid #e1e7f0;
    border-radius: 10px;
    background: #fff;
    padding: 24px;
    box-shadow: 0 12px 34px rgba(15, 23, 42, .045);
}

.sf-guide-section__head {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px;
    align-items: center;
}

.sf-guide-section__head span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: var(--wd-primary);
    color: #fff;
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 700;
}

.sf-guide-section__head h2 {
    margin: 0;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.28;
}

.sf-guide-section p {
    margin: 0;
    color: #1f2937;
    font-family: var(--wd-text-font);
    font-size: 15px;
    line-height: 1.75;
}

.sf-guide-list {
    gap: 8px;
    border-radius: 8px;
    background: #f7faff;
    padding: 16px;
}

.sf-guide-warning {
    border-left: 4px solid #ef4444;
    border-radius: 8px;
    background: #fff5f5;
    padding: 14px 16px;
    color: #b91c1c;
    font-family: var(--wd-text-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.55;
}

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

.sf-guide-images figure {
    margin: 0;
    overflow: hidden;
    border: 1px solid #e5eaf2;
    border-radius: 8px;
    background: #f8fafc;
}

.sf-guide-images img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #fff;
    padding: 10px;
}

.sf-guide-images figure.is-wide {
    grid-column: span 2;
}

.sf-guide-images--count-5 figure.is-wide {
    grid-column: auto;
}

.sf-guide-images figure.is-wide img {
    height: 260px;
}

.sf-guide-images--count-5 figure.is-wide img {
    height: 220px;
}

.sf-guide-images figure.is-tall img {
    height: 300px;
}

.sf-guide-images figcaption {
    min-height: 48px;
    padding: 10px 12px;
    color: #4b5563;
    font-family: var(--wd-text-font);
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
}

.sf-guide-video {
    border: 1px solid #dce7f5;
    border-radius: 10px;
    background: #f7fbff;
    padding: 26px;
    text-align: center;
}

.sf-guide-faq {
    display: grid;
    gap: 16px;
    border: 1px solid #dce7f5;
    border-radius: 10px;
    background: #f7fbff;
    padding: 24px;
}

.sf-guide-faq h2 {
    margin: 0;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
}

.sf-guide-faq__grid {
    display: grid;
    gap: 10px;
}

.sf-guide-faq__item {
    border: 1px solid #e1e7f0;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.sf-guide-faq__item summary {
    cursor: pointer;
    list-style: none;
    padding: 16px 18px;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.35;
}

.sf-guide-faq__item summary::-webkit-details-marker {
    display: none;
}

.sf-guide-faq__item summary::after {
    content: "+";
    float: right;
    color: var(--wd-primary);
    font-size: 20px;
    line-height: 1;
}

.sf-guide-faq__item[open] summary::after {
    content: "-";
}

.sf-guide-faq__item p {
    margin: 0;
    border-top: 1px solid #edf1f7;
    padding: 0 18px 16px;
    color: #4b5563;
    font-family: var(--wd-text-font);
    font-size: 15px;
    line-height: 1.7;
}

.sf-guide-video h2 {
    margin: 0 0 16px;
    color: #242424;
    font-family: var(--wd-title-font);
    font-size: 24px;
    font-weight: 600;
}

.sf-guide-video__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 22px;
    border-radius: 6px;
    background: var(--wd-primary);
    color: #fff;
    font-family: var(--wd-title-font);
    font-size: 14px;
    font-weight: 600;
}

.sf-guide-video__link:hover {
    color: #fff;
    background: var(--wd-primary-dark);
}

.sf-guide-sidebar {
    display: grid;
    gap: 28px;
    align-content: start;
    min-width: 0;
}

.sf-guide-sidebar-posts h2 {
    margin: 0 0 18px;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.sf-guide-sidebar-posts ul {
    display: grid;
    gap: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sf-guide-sidebar-posts li {
    display: grid;
    grid-template-columns: 70px minmax(0, 1fr);
    gap: 14px;
    padding: 0 0 16px;
    border-bottom: 1px solid var(--wd-border);
}

.sf-guide-sidebar-posts li + li {
    padding-top: 16px;
}

.sf-guide-sidebar-post__image {
    display: block;
    width: 70px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
    background: #eef2f7;
}

.sf-guide-sidebar-post__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sf-guide-sidebar-post__title {
    display: block;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.35;
    text-decoration: none;
}

.sf-guide-sidebar-post__title:hover {
    color: var(--wd-primary);
}

.sf-guide-sidebar-post__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 10px;
    color: #a6a6a6;
    font-family: var(--wd-text-font);
    font-size: 13px;
    line-height: 1.4;
}

.sf-guide-sidebar-banner {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 8px;
    color: #fff;
    background: #111;
    text-align: center;
    text-decoration: none;
}

.sf-guide-sidebar-banner img {
    display: block;
    width: 100%;
    height: auto;
    transition: transform .28s ease;
}

.sf-guide-sidebar-banner:hover img {
    transform: scale(1.035);
}

.sf-guide-sidebar-banner span {
    position: absolute;
    top: 44px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 12px;
    justify-items: center;
    pointer-events: none;
}

.sf-guide-sidebar-banner small,
.sf-guide-sidebar-banner strong {
    display: block;
    color: #fff;
    text-shadow: 0 2px 12px rgba(0, 0, 0, .32);
}

.sf-guide-sidebar-banner small {
    font-family: var(--wd-text-font);
    font-size: 14px;
    font-weight: 400;
}

.sf-guide-sidebar-banner strong {
    font-family: var(--wd-title-font);
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
}

.sf-guide-sidebar-videos {
    position: sticky;
    top: 84px;
    display: grid;
    gap: 14px;
    align-self: start;
}

.sf-guide-sidebar-videos h2 {
    margin: 0;
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.sf-guide-sidebar-videos__list {
    display: grid;
    gap: 16px;
}

.sf-guide-sidebar-video {
    display: grid;
    gap: 8px;
    margin: 0;
}

.sf-guide-sidebar-video iframe {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    border: 0;
    border-radius: 8px;
    background: #111827;
}

.sf-guide-sidebar-video h3 {
    margin: 0;
    color: #4b5563;
    font-family: var(--wd-text-font);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
}

.sf-catalog-placeholder {
    display: grid;
    gap: 22px;
}

.sf-catalog-placeholder__hero,
.sf-catalog-placeholder__empty {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-catalog-placeholder__hero {
    background: linear-gradient(135deg, #eef5ff 0%, #fff 60%, #f2fbf7 100%);
    padding: 34px;
}

.sf-catalog-placeholder__hero h1 {
    margin: 0 0 10px;
    color: var(--wd-heading);
    font-size: 42px;
    line-height: 1.08;
}

.sf-catalog-placeholder__hero p {
    max-width: 760px;
    margin: 0;
    color: var(--wd-muted);
    font-size: 16px;
    line-height: 1.65;
}

.sf-catalog-placeholder__empty {
    min-height: 260px;
    display: grid;
    justify-items: center;
    align-content: center;
    text-align: center;
    padding: 44px 24px;
}

.sf-catalog-placeholder__icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #eaf2ff;
    color: var(--wd-primary);
    margin-bottom: 18px;
}

.sf-catalog-placeholder__icon .sf-ico {
    width: 28px;
    height: 28px;
}

.sf-catalog-placeholder__empty h2 {
    margin: 0 0 8px;
    color: var(--wd-heading);
    font-size: 26px;
    line-height: 1.2;
}

.sf-catalog-placeholder__empty p {
    max-width: 620px;
    margin: 0;
    color: var(--wd-muted);
    font-size: 15px;
    line-height: 1.65;
}

.sf-category-page {
    display: grid;
    gap: 24px;
}

.sf-category-page__header {
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    padding: 28px 30px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-category-page__header h1 {
    margin: 0;
    color: var(--wd-heading);
    font-size: 34px;
    line-height: 1.15;
}

.sf-category-page__header p {
    max-width: 760px;
    margin: 10px 0 0;
    color: var(--wd-muted);
    font-size: 15px;
    line-height: 1.65;
}

.sf-category-filters {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(170px, 230px) minmax(160px, 210px) minmax(170px, 240px) auto;
    gap: 14px;
    align-items: end;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-category-filters label {
    display: grid;
    gap: 7px;
    color: var(--wd-heading);
    font-size: 14px;
    font-weight: 700;
}

.sf-category-filters__actions {
    display: flex;
    gap: 8px;
}

.sf-category-filters__actions .sf-btn {
    min-height: 44px;
    white-space: nowrap;
}

.sf-category-advanced,
.sf-category-advanced__body {
    display: contents;
}

.sf-category-advanced__toggle,
.sf-category-sidebar-toggle {
    display: none;
}

.sf-category-search-input {
    position: relative;
    display: block;
}

.sf-category-search-input .sf-input {
    padding-right: 46px;
}

.sf-category-search-input button {
    position: absolute;
    top: 50%;
    right: 6px;
    display: none;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 8px;
    background: var(--wd-primary);
    color: #fff;
    cursor: pointer;
    transform: translateY(-50%);
}

.sf-category-search-input .sf-ico {
    width: 17px;
    height: 17px;
}

.sf-category-layout {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.sf-category-sidebar {
    position: sticky;
    top: 132px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .04);
}

.sf-category-sidebar form {
    display: grid;
    gap: 18px;
}

.sf-category-sidebar__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.sf-category-sidebar__head strong {
    color: var(--wd-heading);
    font-family: var(--wd-title-font);
    font-size: 20px;
}

.sf-category-sidebar__head a {
    color: var(--wd-primary);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}

.sf-category-sidebar fieldset {
    display: grid;
    gap: 10px;
    min-width: 0;
    margin: 0;
    padding: 0 0 16px;
    border: 0;
    border-bottom: 1px solid var(--wd-border);
}

.sf-category-sidebar legend {
    margin-bottom: 2px;
    color: var(--wd-heading);
    font-weight: 800;
}

.sf-filter-choice {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    color: var(--wd-text);
    font-size: 14px;
    line-height: 1.35;
    cursor: pointer;
}

.sf-filter-choice[hidden] {
    display: none;
}

.sf-filter-choice input {
    width: 15px;
    height: 15px;
    margin-top: 2px;
    flex: 0 0 auto;
}

.sf-filter-choice span {
    min-width: 0;
    overflow-wrap: anywhere;
}

.sf-filter-more {
    min-height: 34px;
    justify-self: start;
    border: 0;
    background: transparent;
    color: var(--wd-primary);
    font-weight: 800;
    cursor: pointer;
}

.sf-category-results {
    min-width: 0;
}

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

.sf-pagination a,
.sf-pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 13px;
    border: 1px solid var(--wd-border);
    border-radius: 8px;
    background: #fff;
    color: var(--wd-heading);
    font-size: 14px;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

.sf-pagination a:hover,
.sf-pagination .is-active {
    border-color: var(--wd-primary);
    background: var(--wd-primary);
    color: #fff;
}

.sf-pagination .is-disabled,
.sf-pagination .is-gap {
    color: #94a3b8;
}

/* legacy footer inner (kept for safety) */
.sf-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 24px 0;
}

/* ------------------------------------------------------------------ responsive */

@media (max-width: 1480px) {
    .sf-device-rail {
        display: none;
    }
}

@media (max-width: 1280px) {
    .sf-topbar-inner {
        grid-template-columns: 220px minmax(240px, 1fr) auto;
        gap: 18px;
    }

    .sf-header-info {
        display: none;
    }

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

    .sf-shipping-hero,
    .sf-shipping-layout,
    .sf-complaints-layout {
        grid-template-columns: 1fr;
    }

    .sf-shipping-hero img {
        max-width: 420px;
    }

    .sf-shipping-support,
    .sf-complaints-sidebar {
        position: static;
    }

    .sf-about-hero,
    .sf-about-why,
    .sf-guide-hero,
    .sf-guide-shell {
        grid-template-columns: 1fr;
    }

    .sf-guide-sidebar {
        position: static;
    }

    .sf-guide-sidebar-videos {
        position: static;
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }

    .sf-guide-sidebar-videos {
        order: 1;
    }

    .sf-guide-sidebar-posts {
        order: 2;
    }

    .sf-guide-sidebar-banner {
        order: 3;
    }

    .sf-about-feature-cards,
    .sf-guide-feature-cards {
        grid-template-columns: 1fr;
    }

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

    .sf-about-type,
    .sf-about-type:nth-child(even) {
        grid-template-columns: 1fr;
    }

    .sf-about-type:nth-child(even) .sf-about-type__media {
        order: 0;
    }

    .sf-guide-images {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-guide-images figure.is-wide {
        grid-column: span 2;
    }

    .sf-home-banners {
        grid-template-columns: 1fr 1fr;
    }

    .sf-hero {
        grid-column: 1 / span 2;
        grid-row: 1;
        min-height: 360px;
    }

    .sf-banner--car {
        grid-column: 1 / span 2;
        grid-row: 2;
    }

    .sf-banner--camera {
        grid-column: 1;
        grid-row: 3;
    }

    .sf-banner--gps {
        grid-column: 2;
        grid-row: 3;
    }

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

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

    .sf-industrial {
        grid-template-columns: 1fr 1fr;
    }

    .sf-industrial__main {
        grid-column: 1 / span 2;
        grid-template-columns: minmax(220px, .8fr) minmax(300px, 1fr);
    }

    .sf-industrial__custom {
        grid-column: 1 / span 2;
        min-height: auto;
    }
}

@media (max-width: 1024px) {
    .sf-blog-post__content .sf-blog-inline-gallery {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .sf-sale-layout .sf-grid--4 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sf-grid,
    .sf-grid--4,
    .sf-grid--6 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sf-recently-viewed__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .sf-blog-grid {
        grid-template-columns: 1fr;
    }

    .sf-blog-hero,
    .sf-blog-post__header,
    .sf-blog-post__content {
        padding: 26px;
    }

    .sf-blog-hero h1,
    .sf-blog-post__header h1 {
        font-size: 34px;
    }

    .sf-topbar-inner,
    .sf-header-main {
        min-height: 46px;
        grid-template-columns: 40px minmax(0, 1fr) 40px;
        gap: 8px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .sf-burger {
        display: grid;
        width: 36px;
        height: 36px;
        justify-self: start;
        border-radius: 0;
        background: transparent;
        color: var(--wd-heading);
    }

    .sf-burger .sf-ico {
        width: 20px;
        height: 20px;
    }

    .sf-logo {
        justify-self: center;
        max-width: min(210px, 58vw);
    }

    .sf-logo img {
        width: min(210px, 58vw);
    }

    .sf-mobile-cart {
        position: relative;
        display: grid;
        place-items: center;
        justify-self: end;
        width: 36px;
        height: 36px;
        color: var(--wd-heading);
        border-radius: 50%;
    }

    .sf-mobile-cart .sf-ico {
        width: 20px;
        height: 20px;
    }

    .sf-mobile-cart .sf-icon-badge {
        top: 0;
        right: 0;
    }

    .sf-topbar-inner > .sf-header-search {
        display: none;
    }

    .sf-header-info {
        display: none;
    }

    .sf-mobile-search {
        display: block;
        width: 100%;
        max-width: none;
        padding: 8px 12px;
        background: #eaf0fb;
    }

    .sf-mobile-search .sf-header-search {
        max-width: 100%;
    }

    .sf-mobile-search .sf-header-search .sf-input {
        height: 42px;
        padding-left: 18px;
        padding-right: 52px;
    }

    .sf-mobile-search .sf-search-btn {
        width: 34px;
        height: 34px;
        right: 4px;
    }

    .sf-account-tools .sf-icon-tool:first-child {
        display: none;
    }

    .sf-nav-row {
        display: none;
    }

    .sf-device-rail {
        display: none;
    }

    .sf-device-rail.is-open {
        display: flex;
        width: min(360px, calc(100vw - 34px));
    }

    .sf-device-rail.is-open .sf-device-rail__head {
        display: none;
    }

    .sf-device-rail.is-open .sf-device-rail__tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        position: sticky;
        top: 0;
        z-index: 2;
        background: #f3f3f3;
        border-bottom: 1px solid var(--wd-line);
    }

    .sf-device-rail__tab {
        min-height: 54px;
        border: 0;
        border-bottom: 2px solid transparent;
        background: #f3f3f3;
        color: #8a8f9c;
        font-family: var(--wd-text-font);
        font-size: 14px;
        font-weight: 600;
        cursor: pointer;
    }

    .sf-device-rail__tab.is-active {
        background: #fff;
        border-bottom-color: var(--wd-primary);
        color: var(--wd-heading);
    }

    .sf-device-rail.is-open .sf-device-rail__section {
        display: grid;
        gap: 0;
    }

    .sf-device-rail.is-open .sf-device-rail__section[hidden] {
        display: none;
    }

    .sf-device-rail.is-open .sf-device-rail__section-title {
        display: none;
    }

    .sf-device-rail.is-open .sf-device-rail__section--mobile {
        display: grid;
    }

    .sf-device-rail.is-open .sf-device-rail__section--mobile[hidden] {
        display: none;
    }

    .sf-device-rail.is-open .sf-device-rail__item {
        min-height: 52px;
        padding: 9px 18px;
        border-bottom: 1px solid var(--wd-line);
    }

    .sf-device-rail.is-open .sf-device-rail__item:hover {
        color: var(--wd-heading);
        background: #f8fafc;
    }

    .sf-device-rail.is-open .sf-device-rail__item .sf-ico {
        width: 18px;
        height: 18px;
        color: var(--wd-heading);
    }

    .sf-device-rail.is-open .sf-device-rail__label {
        font-size: 13px;
        font-weight: 600;
        color: var(--wd-heading);
    }

    .sf-product-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .sf-product-details {
        grid-template-columns: 1fr;
        padding: 12px;
    }

    .sf-product-details__side {
        position: static;
    }

    .sf-checkout-grid {
        grid-template-columns: 1fr;
    }

    .sf-pickup-summary {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .sf-pickup-summary button {
        text-align: left;
    }

    .sf-pickup-map-modal {
        padding: 0;
    }

    .sf-pickup-map-shell {
        width: 100%;
        height: 100vh;
        grid-template-columns: 1fr;
        grid-template-rows: 46vh minmax(0, 54vh);
        border-radius: 0;
    }

    .sf-pickup-map-sidebar {
        order: 2;
        padding: 14px 10px 10px;
        border-top: 1px solid var(--sf-border);
        border-right: 0;
    }

    .sf-pickup-map-search {
        padding-right: 62px;
    }

    .sf-pickup-map-canvas {
        min-height: 0;
    }

    .sf-order-summary {
        position: static;
    }

    .sf-coupon-box__form {
        grid-template-columns: 1fr;
    }

    .sf-checkout-trust {
        padding: 14px;
    }

    .sf-checkout-trust__item {
        grid-template-columns: 52px minmax(0, 1fr);
        gap: 14px;
    }

    .sf-trust-ico {
        width: 48px;
        height: 48px;
    }

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

    .sf-recently-viewed__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-footer-features,
    .sf-footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .sf-grid,
    .sf-grid--4,
    .sf-grid--6,
    .sf-sale-layout .sf-grid--4,
    .sf-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-industrial {
        grid-template-columns: 1fr;
    }

    .sf-industrial__main,
    .sf-industrial__custom {
        grid-column: 1;
    }

    .sf-industrial__main {
        grid-template-columns: 1fr;
        padding: 28px;
        text-align: center;
    }

    .sf-industrial__content p {
        max-width: none;
    }

    .sf-industrial__tags {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sf-features-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .sf-category-body .sf-page {
        padding-top: 8px;
    }

    .sf-category-page {
        gap: 12px;
    }

    .sf-category-page__header {
        padding: 12px 14px;
        text-align: center;
    }

    .sf-category-page__header h1 {
        font-size: 26px;
        line-height: 1.15;
    }

    .sf-category-filters {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
        padding: 12px;
        text-align: center;
    }

    .sf-category-filters > label,
    .sf-category-advanced__body {
        grid-column: 1 / -1;
    }

    .sf-category-search-input button {
        display: grid;
    }

    .sf-category-filters__actions {
        justify-content: center;
        flex-wrap: wrap;
    }

    .sf-category-advanced {
        display: contents;
        grid-column: 1;
    }

    .sf-category-advanced__toggle,
    .sf-category-sidebar-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        min-height: 36px;
        justify-self: center;
        border: 1px solid var(--wd-primary);
        border-radius: 8px;
        background: #eff6ff;
        color: var(--wd-primary);
        font-size: 13px;
        font-weight: 800;
        cursor: pointer;
        padding: 0 12px;
        width: 100%;
    }

    .sf-category-advanced__toggle[aria-expanded="true"],
    .sf-category-sidebar-toggle[aria-expanded="true"] {
        border-color: var(--wd-primary);
        background: var(--wd-primary);
        color: #fff;
    }

    .sf-category-advanced__body {
        display: none;
        gap: 10px;
        margin-top: 10px;
        text-align: left;
    }

    .sf-category-advanced.is-open .sf-category-advanced__body {
        display: grid;
    }

    .sf-category-layout {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
    }

    .sf-category-layout .sf-category-results,
    .sf-category-layout .sf-category-sidebar {
        grid-column: 1 / -1;
    }

    .sf-category-sidebar {
        display: none;
        position: static;
        padding: 14px;
        text-align: left;
    }

    .sf-category-layout.is-filter-open .sf-category-sidebar {
        display: block;
    }

    .sf-category-sidebar form {
        gap: 14px;
    }

    .sf-category-sidebar fieldset {
        gap: 8px;
        padding-bottom: 12px;
    }

    .sf-footer-features {
        gap: 20px;
    }

    .sf-promo-box,
    .sf-footer-bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}

@media (max-width: 540px) {
    .sf-container {
        width: min(100% - 24px, var(--wd-container));
    }

    .sf-blog-index,
    .sf-blog-post {
        gap: 18px;
    }

    .sf-blog-hero,
    .sf-blog-post__header,
    .sf-blog-post__content {
        padding: 20px;
    }

    .sf-blog-hero h1,
    .sf-blog-post__header h1 {
        font-size: 28px;
        line-height: 1.16;
    }

    .sf-blog-post__header p,
    .sf-blog-post__content p,
    .sf-blog-post__content li {
        font-size: 15px;
        line-height: 1.75;
    }

    .sf-blog-post__content h2 {
        font-size: 24px;
    }

    .sf-blog-post__content h3 {
        font-size: 20px;
    }

    .sf-blog-post__content .sf-blog-inline-gallery {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .sf-blog-post__content .sf-blog-feature-list {
        grid-template-columns: 1fr;
    }

    .sf-blog-post__image {
        height: clamp(220px, 72vw, 360px);
    }

    .sf-blog-post__image img {
        height: 100%;
    }

    .sf-logo img {
        width: 180px;
    }

    .sf-hero {
        min-height: 320px;
    }

    .sf-hero-content {
        margin-left: 18px;
    }

    .sf-hero-slide--yellow .sf-hero-content {
        left: 58px;
        top: 68px;
        width: min(250px, calc(100% - 138px));
        margin-left: 0;
        transform: none;
    }

    .sf-hero-slide--yellow h1 {
        margin-bottom: 10px;
        font-size: 21px;
        line-height: 1.12;
    }

    .sf-hero-slide--yellow p {
        margin-bottom: 16px;
        font-size: 12px;
        line-height: 1.15;
        white-space: nowrap;
    }

    .sf-hero-slide--light .sf-hero-content {
        left: 50%;
        top: 14px;
        width: calc(100% - 34px);
        margin-left: 0;
        text-align: center;
        transform: translateX(-50%);
    }

    .sf-hero-slide--light h1,
    .sf-hero-slide--light h2 {
        max-width: none;
        margin: 0 auto 6px;
        font-size: clamp(16px, 4.35vw, 19px);
        line-height: 1.08;
        white-space: nowrap;
    }

    .sf-hero-slide--light p {
        max-width: none;
        margin: 0 auto;
        font-size: clamp(10px, 2.85vw, 12px);
        line-height: 1.15;
        white-space: nowrap;
    }

    .sf-hero-slide--blue .sf-hero-content {
        left: 50%;
        top: 34px;
        width: calc(100% - 72px);
        margin-left: 0;
        text-align: center;
        transform: translateX(-50%);
    }

    .sf-hero-slide--blue h1 {
        margin-bottom: 8px;
        font-size: 18px;
        line-height: 1.15;
    }

    .sf-hero-slide--blue p {
        font-size: 13px;
        line-height: 1.2;
    }

    .sf-about-hero {
        gap: 14px;
        padding: 22px 18px;
    }

    .sf-about-hero h1 {
        margin-bottom: 10px;
        font-size: 32px;
        line-height: 1.03;
    }

    .sf-about-hero p {
        margin-bottom: 7px;
        font-size: 13px;
        line-height: 1.55;
    }

    .sf-about-badges {
        justify-content: center;
        gap: 5px;
        margin-top: 12px;
        flex-wrap: nowrap;
    }

    .sf-about-badges span {
        min-height: 28px;
        padding: 5px 8px;
        font-size: 10.5px;
        white-space: nowrap;
    }

    .sf-about-hero__media {
        justify-self: center;
        width: min(270px, 84%);
    }

    .sf-about-split {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .sf-about-panel {
        padding: 20px;
    }

    .sf-about-panel h2 {
        margin-bottom: 10px;
        font-size: 25px;
        line-height: 1.12;
    }

    .sf-about-panel p {
        font-size: 14px;
        line-height: 1.65;
    }

    .sf-grid,
    .sf-grid--4,
    .sf-grid--6,
    .sf-sale-layout .sf-grid--4,
    .sf-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-product-card {
        padding: 8px;
        border-radius: 10px;
    }

    .sf-product-card__body {
        padding: 9px 2px 2px;
    }

    .sf-product-card h2 {
        min-height: 0;
        font-size: 13px;
        line-height: 1.25;
    }

    .sf-product-card__brand,
    .sf-product-card__desc {
        font-size: 11.5px;
        line-height: 1.3;
    }

    .sf-product-card__cart {
        min-height: 34px;
        font-size: 12px;
        padding-inline: 6px;
    }

    .sf-cart-page .sf-table-wrap {
        overflow-x: visible;
    }

    .sf-cart-page .sf-table {
        display: grid;
        gap: 12px;
        border: 0;
        background: transparent;
    }

    .sf-cart-page .sf-table thead {
        display: none;
    }

    .sf-cart-page .sf-table tbody {
        display: grid;
        gap: 12px;
    }

    .sf-cart-page .sf-table tr {
        display: grid;
        gap: 10px;
        border: 1px solid var(--wd-line);
        border-radius: 10px;
        background: #fff;
        padding: 12px;
        box-shadow: 0 8px 22px rgba(15, 23, 42, .04);
    }

    .sf-cart-page .sf-table td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        min-width: 0;
        border: 0;
        padding: 0;
    }

    .sf-cart-page .sf-table td[data-label]::before {
        content: attr(data-label);
        color: var(--wd-muted);
        font-size: 12px;
        font-weight: 700;
    }

    .sf-cart-page .sf-cart-cell-product {
        display: block;
    }

    .sf-cart-page .sf-cart-product {
        grid-template-columns: 76px minmax(0, 1fr);
        align-items: start;
        gap: 10px;
        min-width: 0;
    }

    .sf-cart-page .sf-cart-product img {
        width: 76px;
        height: 76px;
    }

    .sf-cart-page .sf-cart-product strong {
        display: block;
        font-size: 14px;
        line-height: 1.3;
    }

    .sf-cart-page .sf-cart-cell-price,
    .sf-cart-page .sf-cart-cell-total {
        color: var(--wd-heading);
        font-weight: 800;
    }

    .sf-cart-page .sf-cart-cell-quantity .sf-inline-form {
        display: grid;
        grid-template-columns: 64px auto;
        justify-content: end;
        gap: 8px;
    }

    .sf-cart-page .sf-cart-cell-quantity .sf-quantity {
        width: 64px;
        min-width: 0;
        height: 38px;
        padding: 0 8px;
    }

    .sf-cart-page .sf-cart-cell-quantity .sf-btn,
    .sf-cart-page .sf-cart-cell-remove .sf-btn {
        min-height: 38px;
        padding: 0 12px;
        font-size: 12px;
    }

    .sf-cart-page .sf-cart-cell-remove {
        justify-content: flex-end;
    }

    .sf-cart-page .sf-cart-side,
    .sf-cart-page .sf-cart-total,
    .sf-cart-page .sf-checkout-action {
        justify-content: stretch;
    }

    .sf-cart-page .sf-cart-side .sf-free-shipping {
        width: 100%;
    }

    .sf-cart-page .sf-cart-total {
        display: grid;
        gap: 10px;
        border: 1px solid var(--wd-line);
        border-radius: 10px;
        background: #fff;
        padding: 14px;
        font-size: 16px;
    }

    .sf-cart-page .sf-cart-total > div {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .sf-cart-page .sf-checkout-action {
        display: grid;
        grid-template-columns: 1fr;
    }

    .sf-sale-layout {
        justify-items: center;
    }

    .sf-sale-promo {
        width: min(100%, 320px);
        min-height: 360px;
    }

    .sf-sale-layout .sf-grid--4 {
        width: 100%;
        max-width: 390px;
        justify-content: center;
    }

    .sf-sale-layout .sf-sale-products--single {
        grid-template-columns: minmax(0, 1fr);
        max-width: 100%;
    }

    .sf-sale-layout .sf-sale-products--double {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sf-features-grid,
    .sf-footer-features,
    .sf-footer-main,
    .sf-form-grid {
        grid-template-columns: 1fr;
    }

    .sf-features-grid,
    .sf-footer-features,
    .sf-footer-main {
        text-align: center;
    }

    .sf-feature {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .sf-footer-feature {
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 8px;
    }

    .sf-footer-feature i {
        order: -1;
    }

    .sf-footer-brand .sf-logo {
        justify-content: center;
        margin-inline: auto;
    }

    .sf-footer-help {
        justify-items: center;
    }

    .sf-socials,
    .sf-partners,
    .sf-payments {
        justify-content: center;
    }

    .sf-footer-bottom-inner {
        align-items: center;
        text-align: center;
    }

    .sf-breadcrumbs {
        display: none;
    }

    .sf-mobile-breadcrumbs {
        display: flex;
        align-items: center;
        gap: 8px;
        margin: 0 0 18px;
        padding: 0;
        color: var(--wd-muted);
        font-size: 13px;
        line-height: 1.35;
        white-space: nowrap;
    }

    .sf-mobile-breadcrumbs a,
    .sf-mobile-breadcrumbs span {
        min-width: 0;
        overflow: hidden;
        color: inherit;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .sf-mobile-breadcrumbs a:first-child {
        flex: 0 1 auto;
        font-weight: 400;
    }

    .sf-mobile-breadcrumbs a:last-child,
    .sf-mobile-breadcrumbs span:last-child {
        flex: none;
    }

    .sf-mobile-breadcrumbs span[aria-hidden="true"] {
        flex: none;
        color: var(--wd-muted);
    }

    .sf-section-head {
        align-items: center;
        flex-direction: column;
        text-align: center;
    }

    .sf-section-head .sf-section-link {
        align-self: center;
    }

    .sf-cart-actions {
        grid-template-columns: 54px minmax(0, 1fr) 66px 44px;
        gap: 7px;
        align-items: center;
    }

    .sf-device-selector {
        grid-template-columns: 1fr;
    }

    .sf-guide-hero,
    .sf-guide-feature-card,
    .sf-guide-images,
    .sf-guide-images figure.is-wide {
        grid-template-columns: 1fr;
        grid-column: auto;
    }

    .sf-guide-feature-cards {
        display: none;
    }

    .sf-guide-hero,
    .sf-guide-section {
        padding: 20px;
    }

    .sf-guide-heading h1 {
        font-size: 32px;
    }

    .sf-guide-images img,
    .sf-guide-images figure.is-wide img,
    .sf-guide-images figure.is-tall img {
        height: auto;
        max-height: 360px;
    }

    .sf-checkout-action {
        flex-direction: column;
        align-items: stretch;
    }

    .sf-checkout-action .sf-btn,
    .sf-checkout-action .sf-quantity {
        width: 100%;
    }

    .sf-cart-actions .sf-quantity {
        width: 54px;
        height: 44px;
        padding: 0 4px;
        text-align: center;
    }

    .sf-cart-actions .sf-btn {
        min-height: 44px;
        padding: 0 8px;
        font-size: 12px;
    }

    .sf-cart-actions [data-add-to-cart] {
        width: 100%;
    }

    .sf-cart-actions .sf-btn--green {
        width: 66px;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .sf-cart-actions .sf-product-wishlist {
        width: 44px;
        min-height: 44px;
        padding: 0;
    }

    .sf-cart-actions .sf-product-wishlist span {
        display: none;
    }

    .sf-cart-actions .sf-product-wishlist .sf-ico {
        width: 18px;
        height: 18px;
    }

    .sf-header-search {
        flex-direction: row;
    }

    .sf-recently-viewed__grid {
        grid-template-columns: 1fr;
    }

    .sf-thank-you__meta {
        grid-template-columns: 1fr;
    }
}

.sf-withdrawal {
    padding: 42px 0 70px;
}

.sf-withdrawal__card {
    max-width: 880px;
    margin: 0 auto;
    padding: 30px;
    border: 1px solid var(--wd-border-color, #e5e7eb);
    border-radius: 8px;
    background: #fff;
}

.sf-withdrawal__header h1,
.sf-withdrawal-summary h2,
.sf-withdrawal-complete h2 {
    margin: 0 0 22px;
    color: var(--wd-title-color, #10233f);
    font-family: var(--wd-title-font);
    font-size: 30px;
    line-height: 1.2;
}

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

.sf-withdrawal-form label {
    display: grid;
    gap: 7px;
    font-weight: 600;
}

.sf-withdrawal-form input,
.sf-withdrawal-form textarea {
    width: 100%;
    min-height: 46px;
    padding: 10px 13px;
    border: 1px solid #d8dde8;
    border-radius: 6px;
    background: #fff;
    color: #17233b;
    font: inherit;
}

.sf-withdrawal-form textarea {
    min-height: 110px;
}

.sf-withdrawal-summary {
    display: grid;
    gap: 20px;
    margin-bottom: 24px;
}

.sf-withdrawal-summary dl,
.sf-withdrawal-complete dl {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 0;
}

.sf-withdrawal-summary dl div,
.sf-withdrawal-complete dl div {
    padding: 13px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.sf-withdrawal-summary dt,
.sf-withdrawal-complete dt {
    color: #64748b;
    font-size: 13px;
}

.sf-withdrawal-summary dd,
.sf-withdrawal-complete dd {
    margin: 4px 0 0;
    font-weight: 700;
}

.sf-withdrawal-options {
    display: grid;
    gap: 10px;
    padding: 16px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.sf-withdrawal-options legend {
    padding: 0 6px;
    font-weight: 700;
}

.sf-radio-row,
.sf-check-row {
    display: flex !important;
    grid-template-columns: none !important;
    align-items: flex-start;
    gap: 10px !important;
    font-weight: 500 !important;
}

.sf-radio-row input,
.sf-check-row input {
    width: auto;
    min-height: auto;
    margin-top: 5px;
}

.sf-withdrawal-items {
    display: grid;
    gap: 10px;
}

.sf-check-row,
.sf-withdrawal-item {
    padding: 12px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
}

.sf-check-row span,
.sf-withdrawal-item {
    display: grid;
    gap: 4px;
}

.sf-check-row small,
.sf-withdrawal-item small {
    color: #64748b;
}

.sf-withdrawal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.sf-button {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.sf-button--primary {
    border: 1px solid var(--wd-primary-color, #1c61e7);
    background: var(--wd-primary-color, #1c61e7);
    color: #fff;
}

.sf-button--secondary {
    border: 1px solid #d8dde8;
    background: #fff;
    color: #10233f;
}

.sf-withdrawal-complete {
    display: grid;
    gap: 18px;
}

@media (max-width: 700px) {
    .sf-withdrawal__card {
        padding: 22px;
    }

    .sf-withdrawal-summary dl,
    .sf-withdrawal-complete dl {
        grid-template-columns: 1fr;
    }
}
