/* ==========================================================================
   SMART TECH ENERGY & SOLUTIONS — storefront design system
   Source of truth: website/Smart Tech Storefront (offline).html
   Loaded after the Martfury base stylesheet.
   ========================================================================== */

:root {
    --st-navy: #071a2f;
    --st-navy-2: #0c2947;
    --st-ink: #14213d;
    --st-ink-2: #2c4055;
    --st-body: #3d5366;
    --st-muted: #657487;
    --st-muted-2: #4a6070;
    --st-faint: #9aabb9;
    --st-green: #13a04b;
    --st-green-dark: #0c7a39;
    --st-green-soft: #eef6f2;
    --st-green-soft-2: #f2fbf5;
    --st-green-soft-3: #e6f7ec;
    --st-blue: #0b78c5;
    --st-blue-dark: #09639f;
    --st-red: #d8392b;
    --st-line: #dce5ec;
    --st-line-2: #e5edf3;
    --st-line-3: #eef2f6;
    --st-input: #cfdbe4;
    --st-bg: #f5f8fb;
    --st-bg-green: #f6faf8;
    --st-radius: 12px;
    --st-shadow-hover: 0 14px 32px rgba(10, 40, 70, .1);
    --st-font: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --st-font-head: 'Barlow', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --st-gutter: clamp(20px, 4vw, 48px);
}

/* ---------- Base ---------- */
html { scroll-padding-top: 80px; }
body {
    margin: 0;
    background: #fff;
    color: var(--st-ink);
    font-family: var(--st-font);
    font-size: 14px;
    line-height: normal;
    -webkit-font-smoothing: antialiased;
}
body *, body *::before, body *::after { box-sizing: border-box; }
/* Martfury ships `* { font-family; font-weight: 400 }`, which breaks inheritance. */
body * { font-family: inherit; font-weight: inherit; }
b, strong, th, dt { font-weight: 700; }
h1, h2, h3, h4, h5, h6 {
    font-family: var(--st-font-head);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--st-ink);
    margin: 0;
}
p { color: inherit; font-size: inherit; line-height: inherit; }
[class^="icon-"], [class*=" icon-"] { font-family: 'Linearicons' !important; }
.fa { font-family: FontAwesome !important; }
a { color: var(--st-green-dark); text-decoration: none; transition: color .15s ease, background-color .15s ease, border-color .15s ease, box-shadow .15s ease; }
a:hover, a:focus { color: var(--st-green); text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font-family: inherit; color: inherit; }
input:focus-visible, select:focus-visible, textarea:focus-visible, button:focus-visible, a:focus-visible {
    outline: 2px solid var(--st-green);
    outline-offset: 2px;
}
::selection { background: #c8ecd6; }
.visually-hidden { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

.st-container {
    width: min(1440px, calc(100% - var(--st-gutter)));
    margin-left: auto;
    margin-right: auto;
}

.st-kicker {
    text-transform: uppercase;
    color: var(--st-green-dark);
    font-weight: 800;
    font-size: 12.5px;
    letter-spacing: .1em;
}

.st-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--st-green); flex: 0 0 4px; display: inline-block; }

/* ---------- Buttons ---------- */
.st-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    border: 0;
    border-radius: 9px;
    padding: 12px 20px;
    font-weight: 800;
    font-size: 13.5px;
    line-height: 1.2;
    white-space: nowrap;
    cursor: pointer;
}
.st-btn--lg { padding: 14px 22px; border-radius: 10px; font-size: 14.5px; gap: 10px; }
.st-btn--block { width: 100%; }
.st-btn--green { background: var(--st-green); color: #fff; }
.st-btn--green:hover, .st-btn--green:focus { background: var(--st-green-dark); color: #fff; }
.st-btn--shadow { box-shadow: 0 10px 24px rgba(19, 160, 75, .28); }
.st-btn--blue { background: var(--st-blue); color: #fff; }
.st-btn--blue:hover, .st-btn--blue:focus { background: var(--st-blue-dark); color: #fff; }
.st-btn--navy { background: var(--st-navy-2); color: #fff; }
.st-btn--navy:hover, .st-btn--navy:focus { background: var(--st-navy); color: #fff; }
.st-btn--outline { border: 1.5px solid var(--st-green); color: var(--st-ink); background: rgba(255, 255, 255, .9); }
.st-btn--outline:hover, .st-btn--outline:focus { background: var(--st-green-soft); color: var(--st-green-dark); }
.st-btn--ghost { border: 1px solid var(--st-line); background: #fff; color: var(--st-ink); }
.st-btn--ghost:hover, .st-btn--ghost:focus { border-color: var(--st-green); color: var(--st-green-dark); }
.st-btn[disabled], .st-btn.button-loading { opacity: .7; pointer-events: none; }

.st-link-arrow { font-size: 13.5px; font-weight: 800; display: inline-flex; align-items: center; gap: 7px; color: var(--st-green-dark); white-space: nowrap; }

/* ---------- Top bar ---------- */
.st-topbar { background: var(--st-navy); color: #dfe8ef; font-size: 12.5px; }
.st-topbar__inner { min-height: 38px; padding: 6px 0; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 6px 16px; }
.st-topbar__tagline { letter-spacing: .02em; white-space: pre-wrap; }
.st-topbar__links { display: flex; flex-wrap: wrap; row-gap: 4px; column-gap: 16px; align-items: center; }
.st-topbar__links a { color: #dfe8ef; }
.st-topbar__links a:hover { color: var(--st-green); }
.st-topbar__sep { color: #2b4a66; }
.st-topbar__lang { color: #9fb3c2; }
.st-topbar a.st-topbar__phone { display: inline-flex; align-items: center; gap: 7px; color: #fff; font-weight: 700; }
.st-topbar__phone svg { color: var(--st-green); }

/* ---------- Header ---------- */
.st-header { background: #fff; border-bottom: 1px solid var(--st-line); position: relative; z-index: 110; }
.st-header__inner { display: flex; flex-wrap: wrap; gap: 14px 20px; align-items: center; padding: 14px 0; }
.st-header__burger { display: none; border: 0; background: none; padding: 6px; margin-left: -6px; color: var(--st-ink); cursor: pointer; }
.st-header__logo { display: block; flex: 0 1 auto; min-width: 0; order: 1; }
.st-header__logo img { height: 46px !important; width: auto; max-width: 100%; object-fit: contain; display: block; }

.st-search {
    position: relative;
    display: flex;
    flex: 1 1 300px;
    min-width: 190px;
    order: 2;
    margin: 0 0 0 clamp(0px, 3vw, 56px);
    border: 1.5px solid #cbd7e1;
    border-radius: 10px;
    height: 48px;
    background: #fff;
}
.st-search:focus-within { border-color: var(--st-green); }
.st-search__input { border: 0 !important; padding: 0 16px; flex: 1; min-width: 0; outline: none !important; background: transparent; font-size: 14px; height: 100%; border-radius: 10px 0 0 10px; box-shadow: none !important; }
.st-search__input::-webkit-search-cancel-button { -webkit-appearance: none; }
.st-search__input::placeholder { color: #7d8b9a; }
.st-search__button { width: 62px; border: 0; background: var(--st-green); color: #fff; display: grid; place-items: center; cursor: pointer; border-radius: 0 8px 8px 0; margin: -1.5px -1.5px -1.5px 0; }
.st-search__button:hover { background: var(--st-green-dark); }
.st-search__spinner { position: absolute; right: 76px; top: 50%; transform: translateY(-50%); color: var(--st-faint); animation: st-spin 1s linear infinite; }
@keyframes st-spin { to { transform: translateY(-50%) rotate(360deg); } }

.st-search__results.ps-panel--search-result {
    position: absolute; left: 0; right: 0; top: calc(100% + 8px); z-index: 130;
    background: #fff; border: 1px solid var(--st-line); border-radius: 12px; box-shadow: 0 26px 52px rgba(8, 35, 61, .16);
    max-height: 70vh; overflow: auto; display: none; padding: 8px;
}
.st-search__results.active { display: block; }
.st-search__results .ps-panel__content { padding: 0; }
.st-search__results .ps-product--wide { display: flex; gap: 12px; align-items: center; padding: 8px; border-radius: 8px; margin: 0; border: 0; }
.st-search__results .ps-product--wide:hover { background: var(--st-green-soft-2); }
.st-search__results .ps-product__thumbnail { flex: 0 0 56px; max-width: 56px; background: var(--st-bg); border-radius: 8px; overflow: hidden; }
.st-search__results .ps-product__thumbnail img { width: 56px; height: 56px; object-fit: contain; }
.st-search__results .ps-product__title { font-size: 13px; font-weight: 700; color: var(--st-ink); line-height: 1.35; }
.st-search__results .ps-product__price { font-family: var(--st-font-head); font-weight: 800; font-size: 14px; color: var(--st-ink); margin: 2px 0 0; }
.st-search__results .ps-panel__footer { padding: 10px 8px 4px; border-top: 1px solid var(--st-line-3); text-align: left; }
.st-search__results .ps-panel__footer a { font-weight: 800; font-size: 12.5px; color: var(--st-green-dark); }

.st-actions { display: flex; flex-wrap: wrap; justify-content: flex-end; flex: 0 1 auto; min-width: 0; order: 3; gap: 10px 18px; font-size: 12.5px; color: var(--st-ink); align-items: center; }
.st-action { display: flex; gap: 9px; align-items: center; color: var(--st-ink); position: relative; }
.st-action:hover, .st-action:focus { color: var(--st-green); }
.st-action__text { line-height: 1.35; }
.st-action__text b { display: block; font-size: 12.5px; font-weight: 800; }
.st-action__text span, .st-action__label { color: var(--st-muted); }
.st-action__icon { position: relative; display: block; line-height: 0; }
.st-badge {
    position: absolute; top: -7px; right: -9px;
    background: var(--st-green); color: #fff; border-radius: 999px;
    min-width: 17px; height: 17px; padding: 0 4px;
    font-size: 10px; font-style: normal; font-weight: 700; line-height: 17px; text-align: center;
}

.st-search.ps-form--quick-search { width: auto; flex-flow: row nowrap; }
.st-search.ps-form--quick-search .st-search__input { height: 100%; border: 0; color: var(--st-ink); }
.st-search.ps-form--quick-search .st-search__button { background-color: var(--st-green); color: #fff; padding: 0; border-radius: 0 8px 8px 0; font-weight: 700; }
.st-search.ps-form--quick-search .st-search__button:hover { background-color: var(--st-green-dark); }

/* Mini cart (Martfury cart partial restyled) */
.st-minicart { position: relative; }
.st-minicart__panel.ps-cart--mobile {
    position: absolute; right: -12px; top: calc(100% + 14px); width: 360px; z-index: 140;
    background: #fff; border: 1px solid var(--st-line); border-radius: 12px; box-shadow: 0 26px 52px rgba(8, 35, 61, .16);
    opacity: 0; visibility: hidden; transform: translateY(6px); transition: all .16s ease;
}
.st-minicart__panel.ps-cart--mobile, .st-minicart__panel.ps-cart--mobile * { pointer-events: none; }
.st-minicart__panel.ps-cart--mobile .ps-cart__content { visibility: inherit !important; }
.st-minicart:hover .st-minicart__panel, .st-minicart:focus-within .st-minicart__panel { opacity: 1; visibility: visible; transform: none; }
.st-minicart:hover .st-minicart__panel, .st-minicart:hover .st-minicart__panel *, .st-minicart:focus-within .st-minicart__panel, .st-minicart:focus-within .st-minicart__panel * { pointer-events: auto; }
.st-minicart__panel::before { content: ''; position: absolute; left: 0; right: 0; top: -16px; height: 16px; }
.st-minicart .ps-cart__content, .st-minicart__panel.ps-cart--mobile .ps-cart__content { position: static; min-width: 0; min-height: 0; padding: 0; transform: none; opacity: 1; }
.st-minicart .ps-cart__items::before { display: none; }
.st-minicart__panel .ps-cart__items { padding: 14px 16px; max-height: min(320px, calc(100vh - 330px)); overflow-y: auto; overflow-x: hidden; overscroll-behavior: contain; border: 0; background: transparent; }
.st-minicart__panel .ps-cart__items .ps-product--cart-mobile { margin-bottom: 0; }
.st-minicart__panel .ps-cart__footer { border: 0; }
.st-minicart__panel .ps-cart_no_items { text-align: center; color: var(--st-muted); padding: 26px 16px; }
.st-minicart__panel .ps-product--cart-mobile { display: flex; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--st-line-3); margin: 0; }
.st-minicart__panel .ps-product--cart-mobile:last-child { border-bottom: 0; }
.st-minicart__panel .ps-product__thumbnail { flex: 0 0 56px; max-width: 56px; background: var(--st-bg); border-radius: 8px; overflow: hidden; }
.st-minicart__panel .ps-product__thumbnail img { width: 56px; height: 56px; object-fit: contain; }
.st-minicart__panel .ps-product__content { position: relative; padding-right: 22px; font-size: 12.5px; flex: 1; min-width: 0; }
.st-minicart__panel .ps-product__content > a:not(.ps-product__remove) { color: var(--st-ink); font-weight: 700; line-height: 1.35; display: block; }
.st-minicart__panel .ps-product__remove { position: absolute; right: 0; top: 0; color: var(--st-faint); }
.st-minicart__panel .cart-price { font-family: var(--st-font-head); font-weight: 800; color: var(--st-ink); }
.st-minicart__panel .ps-cart__footer { padding: 14px 16px 16px; border-top: 1px solid var(--st-line-3); background: var(--st-bg); border-radius: 0 0 12px 12px; }
.st-minicart__panel .ps-cart__footer h3, .st-minicart__panel .ps-cart__footer h5 { display: flex; justify-content: space-between; font-family: var(--st-font); font-size: 13px; font-weight: 700; margin: 0 0 10px; letter-spacing: 0; }
.st-minicart__panel .ps-cart__footer h3 strong { float: none; font-family: var(--st-font-head); font-size: 17px; color: var(--st-ink); }
.st-minicart__panel .ps-cart__footer figure .ps-btn { padding: 11px 12px; }
.st-minicart__panel .ps-cart__footer figure { display: flex; gap: 8px; margin: 0; }
.st-minicart__panel .ps-cart__footer .ps-btn { flex: 1; text-align: center; background: var(--st-green); color: #fff; border-radius: 9px; padding: 11px 12px; font-weight: 800; font-size: 13px; }
.st-minicart__panel .ps-cart__footer .ps-btn:first-child { background: #fff; color: var(--st-ink); border: 1px solid var(--st-line); }

/* ---------- Navigation ---------- */
.st-nav { position: sticky; top: 0; border-bottom: 1px solid var(--st-line); background: #fff; z-index: 100; box-shadow: 0 1px 0 rgba(8, 35, 61, .04); }
.admin-bar .st-nav { top: 40px; }
.st-nav__inner { display: flex; align-items: center; gap: 16px; flex-wrap: nowrap; min-height: 58px; padding: 10px 0; }
.st-nav__menu { display: flex; flex-wrap: nowrap; align-items: center; gap: 18px; flex: 1 1 0; min-width: 0; overflow-x: auto; overflow-y: hidden; scrollbar-width: none; }
.st-nav__menu::-webkit-scrollbar { display: none; }
.st-nav__item { flex: 0 0 auto; }
.st-nav__link { font-weight: 700; font-size: 13.5px; color: var(--st-ink); display: flex; align-items: center; gap: 5px; padding: 6px 0; white-space: nowrap; }
.st-nav__link:hover, .st-nav__item.is-open > .st-nav__link, .st-nav__item.is-current > .st-nav__link { color: var(--st-green); }
.st-nav__cta { flex: 0 0 auto; padding: 11px 18px; border-radius: 8px; }

.st-nav__item.has-mega > .st-nav__link { position: relative; }
.st-nav__item.has-mega > .st-nav__link svg { transition: transform .18s ease; }
.st-nav__item.is-open > .st-nav__link svg { transform: rotate(180deg); }
.st-nav__item.is-open > .st-nav__link { box-shadow: inset 0 -2px 0 var(--st-green); }

.st-mega {
    position: absolute; left: 0; right: 0; top: 100%; z-index: 120;
    max-height: var(--menu-maxh, 60vh); overflow-y: auto; overscroll-behavior: contain;
    background: #fff; border-top: 1px solid var(--st-line-2); border-bottom: 1px solid var(--st-line);
    box-shadow: 0 30px 60px rgba(8, 35, 61, .16);
    display: none;
}
.st-nav__item.is-open .st-mega { display: block; animation: st-mega-in .18s ease-out; }
@keyframes st-mega-in { from { opacity: 0; transform: translateY(-6px); } to { opacity: 1; transform: none; } }
.st-mega__inner { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 32px; padding: 26px 0 28px; }
.st-mega__inner:not(:has(.st-mega__aside)) { grid-template-columns: minmax(0, 1fr); }
.st-mega__cols { display: grid; grid-template-columns: repeat(var(--mega-cols, 4), minmax(0, 1fr)); align-items: stretch; }
.st-mega__col { min-width: 0; padding: 0 24px; border-left: 1px solid var(--st-line-3); }
.st-mega__col:first-child { padding-left: 0; border-left: 0; }

.st-mega__head { display: flex; align-items: center; gap: 11px; margin-bottom: 14px; min-height: 42px; }
.st-mega__head-icon { width: 42px; height: 42px; flex: 0 0 42px; border-radius: 10px; background: var(--st-green-soft-2); border: 1px solid #d7eedf; color: var(--st-green-dark); display: grid; place-items: center; overflow: hidden; }
.st-mega__head-icon img { width: 30px; height: 30px; object-fit: contain; }
.st-mega__head-text { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.st-mega__head-text > a, .st-mega__head-text > span { font-family: var(--st-font-head); font-size: 16px; font-weight: 700; color: var(--st-ink); letter-spacing: -.01em; }
.st-mega__head-text > a:hover { color: var(--st-green-dark); }
.st-mega__head-text small { font-size: 11.5px; font-weight: 600; color: var(--st-muted); }

.st-mega__links { display: flex; flex-direction: column; gap: 2px; }
.st-mega__link { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin: 0 -10px; padding: 7px 10px; border-radius: 8px; font-size: 13.5px; font-weight: 600; color: var(--st-ink-2); transition: background .15s, color .15s; }
.st-mega__link span { position: relative; transition: transform .15s; }
.st-mega__link em { font-style: normal; font-size: 11px; font-weight: 700; color: var(--st-muted); background: var(--st-bg); border-radius: 999px; padding: 2px 8px; min-width: 26px; text-align: center; }
.st-mega__link:hover, .st-mega__link:focus-visible { background: var(--st-green-soft-2); color: var(--st-green-dark); }
.st-mega__link:hover span { transform: translateX(3px); }
.st-mega__link:hover em { background: #fff; color: var(--st-green-dark); }

.st-mega__col--chips .st-mega__links { flex-direction: row; flex-wrap: wrap; gap: 8px; }
.st-mega__col--chips .st-mega__link { margin: 0; padding: 7px 13px; border: 1px solid var(--st-line); border-radius: 999px; font-size: 12.5px; background: #fff; }
.st-mega__col--chips .st-mega__link:hover { border-color: var(--st-green); }
.st-mega__col--chips .st-mega__link:hover span { transform: none; }

.st-mega__col--brands .st-mega__links { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
.st-mega__brand { display: flex; flex-direction: column; justify-content: center; gap: 3px; min-height: 58px; padding: 9px 12px; border: 1px solid var(--st-line); border-radius: 10px; background: #fff; color: var(--st-ink); transition: border-color .15s, box-shadow .15s; }
.st-mega__brand b { font-family: var(--st-font-head); font-size: 15px; font-weight: 800; line-height: 1.1; color: var(--brand-color, var(--st-navy-2)); }
.st-mega__brand img { max-height: 24px; width: auto; max-width: 100%; object-fit: contain; align-self: flex-start; }
.st-mega__brand small { font-size: 10.5px; font-weight: 700; color: var(--st-muted); line-height: 1.2; }
.st-mega__brand:hover { border-color: var(--st-green); box-shadow: 0 8px 20px rgba(10, 40, 70, .08); color: var(--st-ink); }
.st-mega__brand--all { grid-column: 1 / -1; min-height: 40px; flex-direction: row; align-items: center; justify-content: space-between; background: var(--st-bg); border-style: dashed; color: var(--st-green-dark); }
.st-mega__brand--all b { font-family: var(--st-font); font-size: 12.5px; color: var(--st-green-dark); }

.st-mega__aside { display: flex; flex-direction: column; gap: 12px; min-width: 0; }
.st-mega__feature { position: relative; display: flex; align-items: flex-end; min-height: 196px; border-radius: 14px; overflow: hidden; background: linear-gradient(135deg, var(--st-navy-2), #0f5a3a); color: #fff; isolation: isolate; }
.st-mega__feature img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.st-mega__feature::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 26, 47, .05) 20%, rgba(7, 26, 47, .88) 100%); }
.st-mega__feature:hover { color: #fff; }
.st-mega__feature:hover img { transform: scale(1.05); }
.st-mega__feature-body { display: block; padding: 18px; }
.st-mega__feature-body b { display: block; font-family: var(--st-font-head); font-size: 19px; font-weight: 700; line-height: 1.15; margin-bottom: 6px; }
.st-mega__feature-body span { display: block; font-size: 12.5px; line-height: 1.5; color: rgba(255, 255, 255, .86); }
.st-mega__feature-body em { display: inline-flex; align-items: center; gap: 7px; margin-top: 12px; padding: 8px 14px; border-radius: 8px; background: var(--st-green); font-size: 12.5px; font-weight: 800; font-style: normal; color: #fff; transition: background .15s, gap .15s; }
.st-mega__feature:hover .st-mega__feature-body em { background: var(--st-green-dark); gap: 10px; }
.st-mega__help { display: flex; align-items: center; gap: 11px; padding: 11px 13px; border: 1px solid var(--st-line); border-radius: 12px; color: var(--st-ink); background: #fff; }
.st-mega__help-icon { width: 36px; height: 36px; flex: 0 0 36px; border-radius: 50%; display: grid; place-items: center; background: #e8f2fb; color: var(--st-blue); }
.st-mega__help > span:nth-child(2) { flex: 1; min-width: 0; font-size: 11.5px; line-height: 1.35; color: var(--st-muted); }
.st-mega__help b { display: block; font-size: 13px; color: var(--st-ink); }
.st-mega__help > svg { color: var(--st-faint); }
.st-mega__help:hover { border-color: var(--st-blue); color: var(--st-ink); }
.st-mega__help:hover > svg { color: var(--st-blue); }

.st-mega__bar { background: var(--st-bg-green); border-top: 1px solid var(--st-line-2); }
.st-mega__bar-inner { display: flex; align-items: center; gap: 12px 28px; flex-wrap: wrap; padding: 12px 0; }
.st-mega__all { display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 800; color: var(--st-green-dark); }
.st-mega__all span { font-size: 11.5px; font-weight: 700; color: var(--st-muted); }
.st-mega__all:hover { color: var(--st-green); gap: 11px; }
.st-mega__perks { display: flex; flex-wrap: wrap; gap: 6px 22px; margin: 0 0 0 auto; padding: 0; list-style: none; }
.st-mega__perks li { display: inline-flex; align-items: center; gap: 7px; font-size: 12px; font-weight: 600; color: var(--st-ink-2); }
.st-mega__perks svg { color: var(--st-green); }
.st-mega__call { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--st-line); font-size: 12.5px; font-weight: 800; color: var(--st-ink); white-space: nowrap; }
.st-mega__call svg { color: var(--st-green); }
.st-mega__call:hover { border-color: var(--st-green); color: var(--st-green-dark); }

@media (max-width: 1279px) {
    .st-nav__menu { gap: 14px; }
    .st-nav__link { font-size: 13px; }
    .st-mega__inner { grid-template-columns: minmax(0, 1fr) 260px; gap: 24px; }
    .st-mega__col { padding: 0 16px; }
    .st-mega__feature { min-height: 180px; }
    .st-mega__help > span:nth-child(2) span { display: none; }
    .st-mega__perks li:nth-child(3) { display: none; }
}
@media (min-width: 1024px) and (max-width: 1199px) {
    .st-nav__inner { gap: 12px; }
    .st-nav__menu { gap: 13px !important; }
    .st-nav__link > svg, .st-nav__cta svg, .st-allcats__toggle > svg:last-child { display: none; }
    .st-nav__cta { padding: 10px 14px; }
    .st-allcats__toggle { padding-left: 14px; padding-right: 14px; }
}

/* All products dropdown */
.st-allcats { position: relative; flex: 0 0 auto; }
.st-allcats__toggle { white-space: nowrap; background: var(--st-green); color: #fff; padding: 12px 18px; border-radius: 8px; font-weight: 800; font-size: 13.5px; display: flex; align-items: center; gap: 10px; }
.st-allcats__toggle:hover, .st-allcats__toggle:focus, .st-allcats.is-open .st-allcats__toggle { background: var(--st-green-dark); color: #fff; }
.st-allcats__panel { position: absolute; left: 0; top: calc(100% + 12px); z-index: 120; display: none; }
.st-allcats.is-open .st-allcats__panel { display: block; }
.st-allcats__panel::before { content: ''; position: absolute; left: 0; right: 0; top: -14px; height: 14px; }
.st-allcats__list { width: 312px; max-height: var(--menu-maxh, 60vh); overflow-y: auto; overscroll-behavior: contain; background: #fff; border: 1px solid var(--st-line); border-radius: 12px; box-shadow: 0 26px 52px rgba(8, 35, 61, .16); padding: 8px; }
.st-allcats__item { display: flex; gap: 12px; align-items: center; padding: 9px 10px; border-radius: 8px; color: var(--st-ink); }
.st-allcats__item:hover, .st-allcats__item.is-active { background: var(--st-green-soft-2); color: var(--st-green-dark); }
.st-allcats__icon { width: 30px; height: 30px; flex: 0 0 30px; display: block; }
.st-allcats__icon img { width: 30px; height: 30px; object-fit: contain; border-radius: 4px; }
.st-allcats__name { flex: 1; min-width: 0; font-size: 13px; font-weight: 700; }
.st-allcats__count { font-size: 11px; color: var(--st-faint); }
.st-allcats__item svg { flex: 0 0 13px; color: var(--st-faint); }
.st-allcats__all { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 6px; padding: 12px 10px 6px; border-top: 1px solid var(--st-line-3); font-size: 12.5px; font-weight: 800; color: var(--st-green-dark); }
.st-allcats__sub { position: absolute; left: calc(312px + 10px); top: var(--sub-top, 0px); z-index: 130; width: 430px; max-height: var(--menu-maxh, 60vh); overflow-y: auto; background: #fff; border: 1px solid var(--st-line); border-radius: 12px; box-shadow: 0 26px 52px rgba(8, 35, 61, .16); padding: 20px 22px; display: none; }
.st-allcats__sub.is-active { display: block; }
.st-allcats__sub-head { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--st-line-3); margin-bottom: 14px; }
.st-allcats__sub-head h4 { margin: 0; font-size: 15px; font-weight: 800; }
.st-allcats__sub-head span { font-size: 11.5px; color: var(--st-faint); }
.st-allcats__sub-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(170px, 1fr)); gap: 9px 18px; }
.st-allcats__sub-grid a { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 600; color: var(--st-muted-2); padding: 4px 0; }
.st-allcats__sub-grid a:hover { color: var(--st-green-dark); }
.st-allcats__engineer { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--st-line-3); font-size: 12.5px; font-weight: 800; color: var(--st-blue); }

/* Drawer (tablet & mobile) */
.st-drawer { position: fixed; inset: 0; z-index: 1000; }
.st-drawer[hidden] { display: none !important; }
.st-drawer__backdrop { position: absolute; inset: 0; background: rgba(7, 26, 47, .5); }
.st-drawer__panel { position: absolute; left: 0; top: 0; bottom: 0; width: min(360px, 88vw); background: #fff; display: flex; flex-direction: column; box-shadow: 20px 0 60px rgba(7, 26, 47, .25); animation: st-drawer-in .2s ease; }
@keyframes st-drawer-in { from { transform: translateX(-100%); } to { transform: none; } }
.st-drawer__head { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px; border-bottom: 1px solid var(--st-line); }
.st-drawer__head img { height: 36px !important; width: auto; }
.st-drawer__close { border: 0; background: none; color: var(--st-ink); padding: 6px; cursor: pointer; }
.st-drawer__body { overflow-y: auto; padding: 8px 16px 24px; }
.st-drawer__title { font-family: var(--st-font); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--st-green-dark); margin: 18px 0 8px; }
.st-drawer__list { list-style: none; margin: 0 0 12px; padding: 0; }
.st-drawer__list > li { border-bottom: 1px solid var(--st-line-3); }
.st-drawer__list summary, .st-drawer__link { display: flex; align-items: center; gap: 10px; padding: 12px 2px; font-weight: 700; font-size: 14px; color: var(--st-ink); cursor: pointer; list-style: none; }
.st-drawer__list summary::-webkit-details-marker { display: none; }
.st-drawer__list summary svg { margin-left: auto; color: var(--st-faint); transition: transform .15s; }
.st-drawer__list details[open] summary svg { transform: rotate(180deg); }
.st-drawer__list summary img { width: 26px; height: 26px; object-fit: contain; }
.st-drawer__list ul { list-style: none; margin: 0 0 10px; padding: 0 0 0 12px; }
.st-drawer__list ul a { display: block; padding: 7px 0; font-size: 13px; font-weight: 600; color: var(--st-muted-2); }

/* ---------- Home: hero ---------- */
.st-hero { position: relative; background: #eef4f1; overflow: hidden; }
.st-hero__media { position: absolute; inset: 0; }
.st-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 62% 58%; display: block; }
.st-hero__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(248, 251, 249, .97) 0%, rgba(248, 251, 249, .9) 24%, rgba(248, 251, 249, .6) 40%, rgba(248, 251, 249, .18) 54%, rgba(248, 251, 249, 0) 64%), linear-gradient(0deg, rgba(248, 251, 249, .5) 0%, rgba(248, 251, 249, 0) 26%); }
.st-hero__inner { position: relative; z-index: 2; padding: clamp(28px, 4.4vw, 58px) 0; }
.st-hero__content { width: min(700px, 94%); }
.st-hero__title { font-size: clamp(34px, 5.4vw, 68px); line-height: 1.01; margin: 16px 0 18px; letter-spacing: -.045em; color: var(--st-navy); font-weight: 800; }
.st-hero__subtitle { font-size: clamp(16px, 1.6vw, 22px); margin: 0 0 30px; color: var(--st-ink); max-width: 620px; line-height: 1.45; font-weight: 500; }
.st-hero__tagline { position: absolute; z-index: 2; right: max(28px, calc((100% - 1440px) / 2 + 12px)); bottom: clamp(26px, 3.4vw, 50px); transform: rotate(-11deg); transform-origin: right bottom; font-family: 'Caveat Brush', 'Segoe Script', 'Bradley Hand', cursive; font-size: clamp(26px, 2.9vw, 44px); line-height: 1.02; color: #fff; text-shadow: 0 2px 12px rgba(6, 30, 20, .45); pointer-events: none; }
.st-hero__tagline span { display: block; }
.st-hero__tagline span:first-child { padding-left: .35em; }
.st-hero__tagline svg { display: block; width: 118%; height: .42em; margin: .08em 0 0 -26%; color: #2bb94c; filter: drop-shadow(0 1px 3px rgba(0, 0, 0, .25)); }
.st-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Trust bar */
.st-trust { background: var(--st-bg-green); border-top: 1px solid #e0eae4; border-bottom: 1px solid var(--st-line); }
.st-trust__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 14px 18px; padding: 16px 0; }
.st-trust__item { display: flex; gap: 11px; align-items: center; font-size: 11.5px; line-height: 1.4; }
.st-trust__icon { width: 36px; height: 36px; flex: 0 0 36px; border: 1.5px solid #7ec79a; background: rgba(255, 255, 255, .82); color: var(--st-green-dark); display: grid; place-items: center; border-radius: 50%; }
.st-trust__item b { display: block; font-size: 12.5px; color: #0e2a1c; }
.st-trust__item span > span { color: #33574a; }
/* On the homepage the trust bar sits inside the hero, over the photo. */
@media (min-width: 768px) {
    div:has(> .st-hero):has(+ div > .st-trust) .st-hero__inner { padding-bottom: calc(clamp(28px, 4.4vw, 58px) + 72px); }
    div:has(> .st-hero):has(+ div > .st-trust) .st-hero__tagline { bottom: clamp(30px, 3.6vw, 56px); }
    div:has(> .st-hero) + div > .st-trust { position: relative; z-index: 3; margin-top: -72px; height: 72px; background: transparent; border: 0; }
    div:has(> .st-hero) + div > .st-trust .st-trust__grid { grid-template-columns: repeat(4, max-content); gap: 14px clamp(22px, 3vw, 46px); padding: 6px 0 22px; width: min(1440px, calc(100% - var(--st-gutter))); }
    div:has(> .st-hero) + div > .st-trust .st-trust__icon { width: 40px; height: 40px; flex-basis: 40px; background: rgba(255, 255, 255, .9); border-color: #3fb863; }
}
@media (min-width: 768px) and (max-width: 1279px) {
    div:has(> .st-hero):has(+ div > .st-trust) .st-hero__tagline { bottom: 104px; font-size: 28px; }
}

/* Sections */
.st-section { padding: clamp(24px, 3.4vw, 36px) 0; }
.st-section--need { padding: clamp(28px, 4vw, 44px) 0 8px; }
.st-section--featured { padding: 28px 0 44px; }
.st-section--solutions { padding: clamp(28px, 4vw, 44px) 0; }
.st-section--brands { padding: 8px 0 44px; }
.st-section--why { padding: 8px 0 48px; }
.st-section--knowledge { padding: clamp(28px, 4vw, 44px) 0; background: var(--st-bg); }
.st-section-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.st-section-head h2, .st-section-title { font-size: clamp(22px, 2.7vw, 30px); font-weight: 800; line-height: 1.2; }
.st-section-title { margin-bottom: 22px; }
.st-section-head--tabs { align-items: center; gap: 24px; flex-wrap: wrap; }

/* Need cards */
.st-need-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px; }
.st-need { border: 1px solid var(--st-line); border-radius: 12px; overflow: hidden; background: #fff; display: flex; flex-direction: column; box-shadow: 0 2px 10px rgba(10, 40, 70, .04); color: var(--st-ink); }
.st-need:hover, .st-need:focus { border-color: var(--st-green); box-shadow: 0 12px 28px rgba(10, 40, 70, .1); color: var(--st-ink); }
.st-need__img { height: 82px; position: relative; background: #e9f1f5; display: block; }
.st-need__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-need__body { padding: 14px; display: flex; gap: 11px; flex: 1; }
.st-need__icon { width: 34px; height: 34px; flex: 0 0 34px; border-radius: 9px; background: var(--st-green-soft); color: var(--st-green); display: grid; place-items: center; }
.st-need__text { flex: 1; min-width: 0; }
.st-need__text b { display: block; font-family: var(--st-font-head); font-size: 14px; margin: 0 0 4px; font-weight: 700; letter-spacing: -.02em; }
.st-need__text span { display: block; font-size: 11.5px; color: var(--st-muted); line-height: 1.5; }
.st-need__arrow { align-self: flex-end; color: var(--st-green); line-height: 0; }

/* Category tiles */
.st-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(118px, 1fr)); gap: 12px; }
.st-cat { text-align: center; background: #fff; border: 1px solid var(--st-line-2); border-radius: 12px; padding: 16px 8px 12px; color: var(--st-ink); display: block; }
.st-cat:hover, .st-cat:focus { border-color: var(--st-green); color: var(--st-green-dark); box-shadow: 0 10px 24px rgba(10, 40, 70, .08); }
.st-cat__img { height: 78px; display: block; margin: 0 auto 10px; }
.st-cat__img img { width: 100%; height: 100%; object-fit: contain; display: block; }
.st-cat b { font-size: 12px; line-height: 1.3; display: block; }

/* Tabs */
.st-tabs { display: flex; flex-wrap: wrap; row-gap: 6px; gap: 4px; align-items: center; margin-left: auto; }
.st-tabs__btn { border: 0; background: none; cursor: pointer; font-size: 12.5px; font-weight: 600; padding: 7px 12px; border-radius: 7px; white-space: nowrap; color: var(--st-muted); border-bottom: 2.5px solid transparent; }
.st-tabs__btn:hover { color: var(--st-green-dark); }
.st-tabs__btn.is-active { font-weight: 800; color: var(--st-green-dark); border-bottom-color: var(--st-green); }

/* Product grid & card */
.st-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.st-product-grid--home { grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 14px; }
.st-product-grid[hidden] { display: none; }
.st-card { position: relative; border: 1px solid var(--st-line); border-radius: 12px; background: #fff; padding: 14px; display: flex; flex-direction: column; min-width: 0; }
.st-card:hover { border-color: var(--st-green); box-shadow: var(--st-shadow-hover); }
.st-card--home { padding: 13px; }
.st-card__media { position: relative; display: block; height: 168px; background: var(--st-bg); border-radius: 10px; overflow: hidden; }
.st-card--home .st-card__media { height: 150px; }
.st-card__media img { width: 100%; height: 100%; object-fit: contain; display: block; }
.st-card__media.is-placeholder img { object-fit: cover; }
.st-card__badge { position: absolute; left: 8px; top: 8px; background: var(--st-red); color: #fff; font-size: 11px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
.st-card__meta { font-size: 11px; color: #8fa1b0; font-weight: 700; margin: 12px 0 5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-card__title { font-family: var(--st-font-head); font-size: 14px; line-height: 1.35; margin: 0 0 10px; min-height: 38px; font-weight: 700; letter-spacing: -.02em; }
.st-card--home .st-card__title { font-size: 13.5px; margin: 12px 0 8px; min-height: 37px; }
.st-card__meta + .st-card__title { margin-top: 0; }
.st-card__title a { color: var(--st-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.st-card__title a:hover { color: var(--st-green-dark); }
.st-card__row { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 13px; }
.st-card--home .st-card__row { margin-bottom: 12px; }
.st-card__price { font-family: var(--st-font-head); font-size: 18px; font-weight: 800; color: var(--st-ink); display: flex; flex-wrap: wrap; align-items: baseline; column-gap: 7px; line-height: 1.2; letter-spacing: -.01em; }
.st-card--home .st-card__price { font-size: 17px; }
.st-card__price del { font-family: var(--st-font); font-size: 11.5px; font-weight: 600; color: var(--st-faint); }
.st-card--home .st-card__price del { display: none; }
.st-card__price--request { font-size: 14px; color: var(--st-muted-2); }
.st-stock { display: inline-flex; align-items: center; gap: 4px; font-size: 10.5px; color: var(--st-green-dark); font-weight: 800; white-space: nowrap; }
.st-stock.is-out { color: #b0473c; }
.st-card__actions { display: flex; gap: 8px; margin-top: auto; }
.st-card__cart { flex: 1; border: 1px solid var(--st-line); background: #fff; color: var(--st-ink); padding: 10px; border-radius: 8px; font-weight: 800; font-size: 12px; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 7px; line-height: 1.2; }
.st-card--home .st-card__cart { padding: 9px; }
.st-card__cart:hover, .st-card__cart:focus, .st-card__cart.is-added { background: var(--st-green); color: #fff; border-color: var(--st-green); }
.st-card__icon { border: 1px solid var(--st-line); background: #fff; color: var(--st-muted); padding: 10px 11px; border-radius: 8px; cursor: pointer; display: grid; place-items: center; line-height: 0; }
.st-card--home .st-card__icon { padding: 9px 11px; }
.st-card__icon:hover, .st-card__icon.active { border-color: var(--st-green); color: var(--st-green); }
.button-loading { position: relative; color: transparent !important; pointer-events: none; }
.button-loading::after { content: ''; position: absolute; left: 50%; top: 50%; width: 14px; height: 14px; margin: -7px 0 0 -7px; border: 2px solid var(--st-green); border-right-color: transparent; border-radius: 50%; animation: st-rotate .7s linear infinite; }
@keyframes st-rotate { to { transform: rotate(360deg); } }

/* Solar flow */
.st-flow { padding: clamp(26px, 3.6vw, 40px) 0; background: var(--st-green-soft); border-top: 1px solid #d7e7de; border-bottom: 1px solid #d7e7de; }
.st-flow__inner { display: flex; flex-wrap: wrap; gap: clamp(22px, 2.8vw, 40px); align-items: center; }
.st-flow__intro h2 { font-size: clamp(22px, 2.7vw, 30px); margin: 0 0 10px; font-weight: 800; }
.st-flow__intro p { font-size: 14px; color: var(--st-muted-2); margin: 0 0 18px; line-height: 1.6; }
.st-flow__steps { flex: 1 1 520px; display: flex; flex-wrap: wrap; row-gap: 20px; align-items: flex-start; gap: 4px; }
.st-flow__step { display: flex; align-items: flex-start; gap: 4px; flex: 1; min-width: 0; }
.st-flow__node { text-align: center; flex: 1; min-width: 0; }
.st-flow__circle { width: 64px; height: 64px; margin: 0 auto 10px; border-radius: 50%; background: #fff; border: 1px solid #d7e7de; display: grid; place-items: center; }
.st-tone-sun { color: #e0a80c; } .st-tone-blue { color: var(--st-blue); } .st-tone-ink { color: var(--st-ink); }
.st-tone-green { color: var(--st-green); } .st-tone-deep { color: var(--st-green-dark); } .st-tone-muted { color: var(--st-muted); }
.st-flow__node b { display: block; font-size: 12.5px; color: var(--st-ink); }
.st-flow__node span { font-size: 11.5px; color: var(--st-muted); }
.st-flow__arrow { margin-top: 24px; flex: 0 0 18px; color: var(--st-green); line-height: 0; }

/* Featured solutions */
.st-solution-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.st-solution { position: relative; border-radius: 12px; overflow: hidden; height: 250px; color: #fff; background: var(--st-navy-2); }
.st-solution > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.st-solution__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(180deg, rgba(3, 18, 31, .62) 0%, rgba(3, 18, 31, .12) 45%, rgba(3, 18, 31, .8) 100%); }
.st-solution__text { position: absolute; left: 18px; right: 18px; top: 16px; z-index: 2; pointer-events: none; }
.st-solution__text h3 { font-size: 18px; margin: 0 0 4px; font-weight: 700; color: #fff; }
.st-solution__text p { font-size: 12px; margin: 0; color: #dce9ef; }
.st-solution__btn { position: absolute; left: 18px; bottom: 16px; z-index: 2; display: inline-flex; align-items: center; gap: 8px; background: var(--st-navy-2); color: #fff; padding: 9px 15px; border-radius: 8px; font-weight: 800; font-size: 12.5px; }
.st-solution__btn:hover, .st-solution__btn:focus { background: var(--st-green); color: #fff; }

/* Brand strip */
.st-brand-strip { display: grid; grid-template-columns: repeat(auto-fill, minmax(128px, 1fr)); border: 1px solid var(--st-line); border-radius: 12px; overflow: hidden; background: #fff; }
.st-brand-strip__item { position: relative; padding: 22px 8px; min-height: 66px; text-align: center; border-right: 1px solid var(--st-line); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
.st-brand-strip__item:hover { background: var(--st-bg); }
.st-brand-strip__name { font-family: var(--st-font-head); font-weight: 800; font-size: 14.5px; color: var(--brand-color, var(--st-navy-2)); line-height: 1.1; }
.st-brand-strip__item img { max-height: 32px; width: auto; object-fit: contain; }
.st-brand-strip__dealer { position: absolute; left: 4px; right: 4px; bottom: 7px; font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--st-green-dark); line-height: 1; }

/* Why choose */
.st-why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(215px, 1fr)); gap: 16px; }
.st-why { display: flex; gap: 11px; align-items: flex-start; }
.st-why__icon { width: 38px; height: 38px; flex: 0 0 38px; border-radius: 50%; background: var(--st-green-soft-3); color: var(--st-green-dark); display: grid; place-items: center; }
.st-why b { font-size: 12.5px; }
.st-why div span { display: block; font-size: 11.5px; color: var(--st-muted); margin-top: 3px; line-height: 1.45; }

/* Impact band */
.st-impact { position: relative; background: #0a2b20; color: #fff; overflow: hidden; }
.st-impact__bg { position: absolute; inset: 0; opacity: .32; }
.st-impact__bg img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-impact__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(8, 38, 28, .96), rgba(8, 38, 28, .7)); }
.st-impact__inner { position: relative; z-index: 2; padding: clamp(28px, 4vw, 44px) 0; display: flex; flex-wrap: wrap; gap: clamp(22px, 2.8vw, 40px); align-items: center; }
.st-impact__intro h2 { font-size: clamp(24px, 3vw, 32px); font-weight: 800; line-height: 1.14; margin: 0 0 10px; color: #fff; }
.st-impact__intro p { font-size: 14px; color: #bfd8cd; margin: 0 0 18px; }
.st-impact__stats { display: grid; flex: 1 1 460px; grid-template-columns: repeat(auto-fit, minmax(195px, 1fr)); gap: 14px; }
.st-impact__stat { border: 1px solid rgba(255, 255, 255, .18); background: rgba(255, 255, 255, .06); border-radius: 12px; padding: 18px 16px; }
.st-impact__icon { color: #5fd68f; margin-bottom: 10px; line-height: 0; }
.st-impact__value { font-family: var(--st-font-head); font-size: 26px; font-weight: 800; line-height: 1; }
.st-impact__label { font-size: 12.5px; color: #cde4d8; margin-top: 4px; }
.st-impact__note { font-size: 10.5px; color: #7fa896; margin-top: 2px; }

/* Articles */
.st-article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px; }
.st-article { border: 1px solid var(--st-line); border-radius: 12px; overflow: hidden; background: #fff; display: block; color: var(--st-ink); }
.st-article:hover, .st-article:focus { border-color: var(--st-green); box-shadow: var(--st-shadow-hover); color: var(--st-ink); }
.st-article__img { display: block; height: 132px; position: relative; background: #e9f1f5; }
.st-article__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-article__body { display: block; padding: 16px; }
.st-article__kicker { display: block; text-transform: uppercase; color: var(--st-green-dark); font-weight: 800; font-size: 10.5px; letter-spacing: .08em; margin-bottom: 6px; }
.st-article__body h3 { margin: 0 0 7px; font-size: 15.5px; font-weight: 700; line-height: 1.3; }
.st-article__body p { font-size: 12.5px; color: var(--st-muted); margin: 0; line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* ---------- Pre-footer & footer ---------- */
.st-prefooter { background: linear-gradient(90deg, #0d3a2d, #0a2b45); color: #fff; padding: clamp(24px, 3.2vw, 34px) 0; }
.st-prefooter__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.st-prefooter h2 { margin: 0 0 6px; font-size: clamp(21px, 2.4vw, 26px); font-weight: 800; color: #fff; }
.st-prefooter p { margin: 0; font-size: 14px; color: #cfe3dc; }

.st-footer { background: var(--st-navy); color: #d6e1e9; padding: 48px 0 20px; }
.st-footer__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: clamp(24px, 2.8vw, 38px); }
.st-footer__logo { display: inline-block; background: #fff; border-radius: 8px; padding: 7px 11px; line-height: 0; }
.st-footer__logo img { height: 26px !important; width: auto; }
.st-footer__brand p { font-size: 13px; line-height: 1.75; margin: 16px 0 18px; color: #9fb3c2; max-width: 330px; }
.st-footer__social { display: flex; gap: 10px; }
.st-footer__social a { width: 34px; height: 34px; border: 1px solid #1d3850; border-radius: 8px; display: grid; place-items: center; color: #d6e1e9; }
.st-footer__social a:hover { background: var(--st-green); border-color: var(--st-green); color: #fff; }
.st-footer__col h4, .st-footer .widget-title { color: #fff; margin: 0 0 14px; font-size: 15px; font-weight: 700; }
.st-footer__links { list-style: none; margin: 0; padding: 0; }
.st-footer__links a { display: block; font-size: 13px; margin: 9px 0; color: #9fb3c2; }
.st-footer__links a:hover { color: var(--st-green); }
.st-footer__contact { display: flex; gap: 10px; align-items: flex-start; font-size: 13px; margin: 9px 0; color: #9fb3c2; }
a.st-footer__contact:hover { color: var(--st-green); }
.st-footer__contact svg { flex: 0 0 15px; margin-top: 2px; color: var(--st-green); }
.st-footer__bottom { border-top: 1px solid #1d3850; margin-top: 30px; padding-top: 18px; display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; font-size: 12px; color: #7d93a6; }
.st-footer__bottom p { margin: 0; }

/* ---------- Page header ---------- */
.st-page-hero { position: relative; background: linear-gradient(105deg, #edf8f1, #eef5fb); border-bottom: 1px solid var(--st-line); overflow: hidden; }
.st-page-hero__media { position: absolute; right: 0; top: 0; bottom: 0; width: min(46%, 560px); }
.st-page-hero__media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-page-hero.has-image::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, #eef7f2 0%, rgba(238, 247, 242, .95) 48%, rgba(238, 247, 242, 0) 78%); pointer-events: none; }
.st-page-hero__inner { position: relative; z-index: 2; padding: clamp(20px, 2.8vw, 26px) 0 clamp(22px, 3vw, 30px); }
.st-page-hero h1 { font-size: clamp(27px, 3.6vw, 40px); font-weight: 800; letter-spacing: -.03em; color: var(--st-navy); margin: 6px 0 0; }
.st-page-hero p { margin: 10px 0 0; color: var(--st-muted-2); font-size: 14.5px; max-width: 660px; line-height: 1.6; }
.st-page-hero .st-hero__actions { margin-top: 20px; }
.st-page-hero .st-kicker { margin-top: 4px; }

.st-breadcrumb, .st-page-hero .breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 10px; padding: 0; font-size: 12.5px; color: var(--st-muted); background: none; }
.st-page-hero .breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.st-page-hero .breadcrumb li + li::before { content: '/'; color: var(--st-muted); padding: 0 2px; }
.st-page-hero .breadcrumb a { color: var(--st-muted); }
.st-page-hero .breadcrumb a:hover { color: var(--st-green-dark); }
.st-page-hero .breadcrumb li:last-child span { color: var(--st-ink); font-weight: 700; }
.st-page-hero .breadcrumb .extra-breadcrumb-name { display: none; }

/* ---------- Product listing ---------- */
.st-page-hero--listing .st-page-hero__desc { margin: 10px 0 0; color: var(--st-muted-2); font-size: 14.5px; max-width: 660px; line-height: 1.6; }
.st-page-hero__desc p { margin: 0; }
.st-page-hero--compact .st-page-hero__inner { padding: 18px 0 20px; }
.st-page-hero--compact h1 { font-size: clamp(24px, 3vw, 34px); }
.st-dealer-badge { display: inline-flex; align-items: center; gap: 7px; margin-top: 14px; background: var(--st-green-soft-3); color: var(--st-green-dark); font-size: 12px; font-weight: 800; padding: 6px 12px; border-radius: 999px; }

.st-listing { padding: clamp(22px, 3vw, 28px) 0 clamp(36px, 5vw, 56px); display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.st-listing__main { flex: 1 1 520px; min-width: 0; }
.st-filters { flex: 0 1 268px; min-width: 240px; border: 1px solid var(--st-line); border-radius: 12px; padding: 18px; background: #fff; position: sticky; top: 92px; z-index: 1; max-height: calc(100vh - 110px); overflow-y: auto; scrollbar-width: thin; }
.st-filters__mobile-head { display: none; }
.st-filters__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.st-filters__head h3 { font-size: 15px; font-weight: 800; }
.st-filters__head a { color: var(--st-green-dark); font-weight: 800; font-size: 12px; }
.st-filter { padding: 16px 0; border-top: 1px solid var(--st-line-3); }
.st-filter h4 { margin: 0 0 11px; font-family: var(--st-font); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--st-ink); }
.st-filter__options { display: flex; flex-direction: column; gap: 9px; }
.st-filter__options.is-scroll { max-height: 238px; overflow-y: auto; padding-right: 4px; }
.st-check { display: flex; gap: 9px; align-items: center; font-size: 13px; color: var(--st-muted-2); cursor: pointer; margin: 0; font-weight: 400; }
.st-check input { position: absolute; opacity: 0; pointer-events: none; }
.st-check__box { width: 17px; height: 17px; flex: 0 0 17px; border: 1.5px solid var(--st-input); border-radius: 4px; background: #fff; display: grid; place-items: center; transition: all .12s; }
.st-check input:checked + .st-check__box { background: var(--st-green); border-color: var(--st-green); }
.st-check input:checked + .st-check__box::after { content: ''; width: 9px; height: 5px; border: 2px solid #fff; border-top: 0; border-right: 0; transform: rotate(-45deg) translate(1px, -1px); }
.st-check input:focus-visible + .st-check__box { outline: 2px solid var(--st-green); outline-offset: 2px; }
.st-check__label { flex: 1; min-width: 0; }
.st-check:hover .st-check__label { color: var(--st-ink); }
.st-check__count { color: var(--st-faint); font-size: 11.5px; }
.st-filter__cats, .st-filter__cats ul { list-style: none; margin: 0; padding: 0; }
.st-filter__cats a { display: flex; justify-content: space-between; gap: 8px; padding: 5px 0; font-size: 13px; color: var(--st-muted-2); font-weight: 600; }
.st-filter__cats a em { font-style: normal; font-size: 11.5px; color: var(--st-faint); font-weight: 400; }
.st-filter__cats a:hover, .st-filter__cats a.is-active { color: var(--st-green-dark); }
.st-filter__cats a.is-active { font-weight: 800; }
.st-filter__cats ul { padding: 2px 0 6px 12px; border-left: 2px solid var(--st-line-3); margin: 2px 0 4px 2px; }
.st-filter__price { display: flex; gap: 9px; align-items: center; }
.st-filter__price input { flex: 1; min-width: 0; border: 1px solid var(--st-input); border-radius: 8px; padding: 9px 10px; font-size: 13px; background: #fff; -moz-appearance: textfield; }
.st-filter__price input::-webkit-outer-spin-button, .st-filter__price input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.st-filter__price span { color: var(--st-faint); }
.st-filter--price .st-btn { margin-top: 12px; padding: 11px; border-radius: 9px; font-size: 13px; }

.st-listing-banner { position: relative; border-radius: 12px; overflow: hidden; height: 150px; background: var(--st-navy-2); margin-bottom: 20px; }
.st-listing-banner > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.st-listing-banner__shade { position: absolute; inset: 0; pointer-events: none; background: linear-gradient(90deg, rgba(7, 26, 47, .94) 0%, rgba(7, 26, 47, .6) 52%, rgba(7, 26, 47, .08) 100%); }
.st-listing-banner__text { position: absolute; inset: 0; z-index: 2; display: flex; flex-direction: column; justify-content: center; padding: 0 30px; color: #fff; pointer-events: none; }
.st-listing-banner__kicker { text-transform: uppercase; font-size: 11px; font-weight: 800; letter-spacing: .12em; color: #6fd79c; }
.st-listing-banner h2 { font-size: 24px; font-weight: 800; margin: 7px 0 4px; color: #fff; }
.st-listing-banner p { margin: 0; font-size: 13px; color: #c6dbe8; }
.st-listing-banner__btn { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); z-index: 3; }

.st-listing__items { position: relative; min-height: 200px; }
.st-listing__items .loading-spinner { position: absolute; inset: 0; background: rgba(255, 255, 255, .7); z-index: 5; }
.st-listing__items .loading-spinner::after { content: ''; position: absolute; left: 50%; top: 120px; width: 30px; height: 30px; margin-left: -15px; border: 3px solid var(--st-green); border-right-color: transparent; border-radius: 50%; animation: st-rotate .7s linear infinite; }
.st-listing__toolbar { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; margin-bottom: 18px; }
.st-listing__filter-btn { display: none; padding: 9px 14px; }
.st-listing__count { font-size: 13.5px; color: var(--st-muted); }
.st-listing__sort { display: flex; gap: 10px; align-items: center; margin: 0; font-weight: 400; }
.st-listing__sort span { font-size: 13px; color: var(--st-muted); }
.st-select { border: 1px solid var(--st-line); padding: 9px 34px 9px 12px; border-radius: 8px; font-size: 13px; font-weight: 700; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23657487' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 12px center; cursor: pointer; -webkit-appearance: none; appearance: none; color: var(--st-ink); height: auto; }

.st-pagination { margin-top: 32px; }
.st-pages { display: flex; gap: 8px; align-items: center; justify-content: center; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.st-pages__btn { min-width: 38px; height: 38px; padding: 0 12px; border-radius: 8px; font-weight: 800; font-size: 13px; border: 1px solid var(--st-line); background: #fff; color: var(--st-ink); display: inline-grid; place-items: center; }
a.st-pages__btn:hover { border-color: var(--st-green); color: var(--st-green-dark); }
.st-pages__btn.is-active { border-color: var(--st-green); background: var(--st-green); color: #fff; }
.st-pages__btn.is-disabled, .st-pages__btn.is-gap { color: var(--st-muted); }

.st-empty { text-align: center; border: 1px dashed var(--st-input); border-radius: 14px; padding: clamp(28px, 5vw, 56px) 20px; background: var(--st-bg); }
.st-empty__icon { width: 64px; height: 64px; margin: 0 auto 14px; border-radius: 50%; background: #fff; border: 1px solid var(--st-line); display: grid; place-items: center; color: var(--st-green); }
.st-empty h3 { font-size: 20px; font-weight: 800; margin-bottom: 8px; }
.st-empty p { color: var(--st-muted); max-width: 460px; margin: 0 auto 18px; line-height: 1.6; }
.st-empty__actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1023px) {
    .st-filters { position: fixed; left: 0; top: 0; bottom: 0; width: min(340px, 88vw); max-height: none; border-radius: 0; z-index: 1001; transform: translateX(-105%); transition: transform .2s ease; box-shadow: 20px 0 60px rgba(7, 26, 47, .25); }
    .st-filters.is-open { transform: none; }
    .st-filters__mobile-head { display: flex; align-items: center; justify-content: space-between; margin: -4px 0 10px; }
    .st-filters__close { border: 0; background: none; padding: 4px; color: var(--st-ink); }
    .st-listing__filter-btn { display: inline-flex; }
    .st-listing { gap: 0; }
    body.st-filters-open::after { content: ''; position: fixed; inset: 0; background: rgba(7, 26, 47, .5); z-index: 1000; }
}
@media (max-width: 767px) {
    .st-listing-banner { height: auto; min-height: 150px; }
    .st-listing-banner__text { position: relative; padding: 20px; }
    .st-listing-banner > img { position: absolute; inset: 0; }
    .st-listing-banner__btn { position: relative; transform: none; right: auto; top: auto; margin: 0 20px 20px; }
    .st-listing__toolbar { gap: 10px; }
    .st-listing__count { order: 3; width: 100%; font-size: 12.5px; }
}

/* ---------- Product detail ---------- */
.st-crumbs { padding: 18px 0 0; }
.st-crumbs .breadcrumb, .st-page-body .breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0; padding: 0; font-size: 12.5px; color: var(--st-muted); background: none; }
.st-crumbs .breadcrumb li { display: inline-flex; align-items: center; gap: 6px; }
.st-crumbs .breadcrumb li + li::before { content: '/'; color: var(--st-muted); padding: 0 2px; }
.st-crumbs .breadcrumb a { color: var(--st-muted); }
.st-crumbs .breadcrumb a:hover { color: var(--st-green-dark); }
.st-crumbs .breadcrumb li:last-child span { color: var(--st-ink); font-weight: 700; }
.st-crumbs .extra-breadcrumb-name { display: none; }

.st-pdp { padding: 22px 0 0; display: flex; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.st-pdp__gallery { flex: 1 1 360px; min-width: 0; }
.st-pdp__stage { border: 1px solid var(--st-line); border-radius: 14px; background: var(--st-bg); padding: 18px; display: grid; place-items: center; height: clamp(250px, 32vw, 430px); overflow: hidden; }
.st-pdp__stage img { max-height: 100%; max-width: 100%; object-fit: contain; }
.st-pdp__stage.is-placeholder { padding: 0; }
.st-pdp__stage.is-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.st-pdp__thumbs { display: grid; grid-template-columns: repeat(auto-fit, minmax(70px, 1fr)); gap: 10px; margin-top: 12px; }
.st-pdp__thumb { border: 1px solid var(--st-line); border-radius: 10px; background: var(--st-bg); height: 86px; display: grid; place-items: center; padding: 8px; cursor: pointer; overflow: hidden; }
.st-pdp__thumb img { max-height: 66px; object-fit: contain; }
.st-pdp__thumb.is-active { border: 1.5px solid var(--st-green); }
.st-pdp__photo-note { margin: 10px 2px 0; font-size: 11.5px; color: var(--st-faint); }

.st-pdp__info { flex: 1 1 340px; min-width: 0; }
.st-pdp__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.st-pdp__brand { font-family: var(--st-font-head); font-weight: 800; font-size: 15px; text-transform: uppercase; letter-spacing: .02em; }
.st-pdp__sep { width: 1px; height: 15px; background: var(--st-line); }
.st-pdp__sku { font-size: 12px; color: var(--st-muted); }
.st-pill { background: var(--st-green-soft-3); color: var(--st-green-dark); font-size: 11px; font-weight: 800; padding: 4px 9px; border-radius: 999px; }
.st-pdp__title { font-size: clamp(23px, 2.9vw, 31px); line-height: 1.14; font-weight: 800; letter-spacing: -.025em; margin: 0 0 14px; }
.st-pdp__rating { display: flex; align-items: center; gap: 12px; font-size: 12.5px; color: var(--st-muted); margin-bottom: 18px; }
.st-pdp__rating a { color: var(--st-muted); }
.st-stars { position: relative; color: #e2e8ee; letter-spacing: 2px; font-size: 14px; line-height: 1; }
.st-stars::before { content: '★★★★★'; position: absolute; left: 0; top: 0; width: var(--rating, 0%); overflow: hidden; color: #e0a80c; white-space: nowrap; }
.st-pdp__tiles { display: grid; grid-template-columns: repeat(auto-fit, minmax(92px, 1fr)); gap: 9px; margin-bottom: 20px; }
.st-pdp__tile { background: var(--st-bg); border: 1px solid var(--st-line); padding: 12px; border-radius: 10px; text-align: center; min-width: 0; }
.st-pdp__tile b { display: block; font-family: var(--st-font-head); font-size: 18px; font-weight: 800; line-height: 1.2; overflow-wrap: anywhere; }
.st-pdp__tile span { font-size: 11px; color: var(--st-muted); }
.st-pdp__subhead { font-size: 15px; font-weight: 800; margin: 0 0 11px; }
.st-checklist { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.st-checklist li { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--st-body); line-height: 1.55; }
.st-checklist svg { flex: 0 0 16px; margin-top: 3px; color: var(--st-green); }
.st-pdp__facts { margin: 20px 0 0; border-top: 1px solid var(--st-line-3); padding-top: 14px; display: grid; gap: 8px; }
.st-pdp__facts div { display: grid; grid-template-columns: 90px 1fr; gap: 12px; font-size: 13px; }
.st-pdp__facts dt { color: var(--st-muted); font-weight: 600; }
.st-pdp__facts dd { margin: 0; color: var(--st-ink); font-weight: 700; }
.st-pdp__facts dd a { color: var(--st-green-dark); font-weight: 700; }

.st-buybox { flex: 1 1 320px; max-width: 350px; border: 1px solid var(--st-line); border-radius: 14px; padding: 20px; box-shadow: 0 14px 40px rgba(8, 35, 61, .08); position: sticky; top: 92px; z-index: 2; background: #fff; }
.st-buybox__price { font-family: var(--st-font-head); font-size: 30px; font-weight: 800; letter-spacing: -.02em; display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px 10px; line-height: 1.15; }
.st-buybox__price del { font-family: var(--st-font); font-size: 14px; font-weight: 600; color: var(--st-faint); letter-spacing: 0; }
.st-buybox__price--request { font-size: 24px; }
.st-buybox__note { font-size: 12px; color: var(--st-muted); margin: 4px 0 14px; }
.st-buybox__stock { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--st-green-dark); font-weight: 800; margin-bottom: 16px; }
.st-buybox__stock.is-out { color: #b0473c; }
.st-buybox__availability { font-size: 12.5px; margin-bottom: 10px; }
.st-buybox__availability .text-danger { color: #b0473c; }
.st-buybox__availability .text-success { color: var(--st-green-dark); }
.st-buybox__form { margin: 0; }
.st-buybox__form .st-btn + .st-btn { margin-top: 10px; }
.st-buybox__qty { display: flex; gap: 11px; align-items: center; margin-bottom: 14px; }
.st-buybox__qty > span { font-size: 12px; color: var(--st-muted); }
.st-qty { display: flex; border: 1px solid var(--st-line); border-radius: 9px; overflow: hidden; }
.st-qty button { border: 0; background: var(--st-bg); width: 38px; padding: 10px; cursor: pointer; font-weight: 800; color: var(--st-ink); font-size: 15px; line-height: 1; }
.st-qty button:hover { background: var(--st-green-soft); color: var(--st-green-dark); }
.st-qty input { width: 46px; border: 0; text-align: center; font-weight: 800; font-size: 14px; -moz-appearance: textfield; background: #fff; }
.st-qty input::-webkit-outer-spin-button, .st-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.st-buybox__secondary { display: flex; gap: 9px; margin-top: 12px; }
.st-buybox__secondary .st-btn { flex: 1; padding: 10px; font-size: 12px; gap: 7px; border-radius: 9px; }
.st-buybox__secondary .st-btn.active { border-color: var(--st-green); color: var(--st-green-dark); }
.st-buybox__perks { border-top: 1px solid var(--st-line-3); margin-top: 18px; padding-top: 16px; display: flex; flex-direction: column; gap: 12px; }
.st-buybox__perks > div { display: flex; gap: 11px; align-items: flex-start; }
.st-buybox__perks svg { flex: 0 0 17px; margin-top: 2px; color: var(--st-green); }
.st-buybox__perks span { font-size: 12.5px; color: var(--st-muted-2); }
.st-buybox__perks b { display: block; color: var(--st-ink); }

/* Variation swatches inside the buy box */
.st-buybox__variations { margin-bottom: 14px; }
.st-buybox__variations .attribute-swatches-wrapper { margin-bottom: 12px; }
.st-buybox__variations .attribute-name, .st-buybox__variations label.attribute-name { display: block; font-size: 12.5px; font-weight: 800; color: var(--st-ink); margin-bottom: 8px; }
.st-buybox__variations ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 7px; }
.st-buybox__variations .text-swatch li label, .st-buybox__variations .bb-product-attribute-swatch-item label { margin: 0; }
.st-buybox__variations .text-swatch li span, .st-buybox__variations .bb-product-attribute-swatch-text { display: inline-block; border: 1px solid var(--st-line); border-radius: 8px; padding: 7px 12px; font-size: 12.5px; font-weight: 700; cursor: pointer; background: #fff; color: var(--st-ink); }
.st-buybox__variations input:checked + span, .st-buybox__variations .active span { border-color: var(--st-green); background: var(--st-green-soft-2); color: var(--st-green-dark); }
.st-buybox__variations input[type=radio] { position: absolute; opacity: 0; }
.st-buybox__variations select { width: 100%; border: 1px solid var(--st-input); border-radius: 9px; padding: 10px 12px; font-size: 13.5px; }
.st-buybox__variations .disabled, .st-buybox__variations .pe-none { opacity: .45; }

.st-pdp-tabs { padding: 38px 0 0; }
.st-pdp-tabs__nav { display: flex; gap: 6px; border-bottom: 1px solid var(--st-line); flex-wrap: wrap; }
.st-pdp-tabs__btn { border: 0; background: none; padding: 14px 18px; font-weight: 800; font-size: 13.5px; cursor: pointer; color: var(--st-muted); border-bottom: 3px solid transparent; margin-bottom: -1px; }
.st-pdp-tabs__btn:hover { color: var(--st-green-dark); }
.st-pdp-tabs__btn.is-active { color: var(--st-green-dark); border-bottom-color: var(--st-green); }
.st-pdp-tabs__panel { padding: 26px 0 8px; }
.st-pdp-tabs__panel[hidden] { display: none; }
.st-pdp-overview:not([hidden]) { display: grid; grid-template-columns: minmax(0, 1.7fr) minmax(280px, 1fr); gap: clamp(22px, 3vw, 44px); align-items: start; }

.st-prose { font-size: 14.5px; line-height: 1.75; color: var(--st-body); max-width: 860px; }
.st-prose h2 { font-size: 21px; font-weight: 800; margin: 26px 0 10px; color: var(--st-ink); line-height: 1.25; }
.st-prose h3 { font-size: 18px; font-weight: 800; margin: 22px 0 8px; color: var(--st-ink); line-height: 1.3; }
.st-prose h4 { font-size: 15.5px; font-weight: 800; margin: 18px 0 8px; color: var(--st-ink); }
.st-prose > :first-child { margin-top: 0; }
.st-prose p { margin: 0 0 14px; text-wrap: pretty; }
.st-prose ul, .st-prose ol { margin: 0 0 16px; padding-left: 20px; }
.st-prose li { margin: 4px 0; }
.st-prose ul li::marker { color: var(--st-green); }
.st-prose strong { color: var(--st-ink); }
.st-prose a { color: var(--st-green-dark); text-decoration: underline; text-underline-offset: 2px; }

.st-summary-card { background: var(--st-bg); border: 1px solid var(--st-line); border-radius: 12px; padding: 20px; position: sticky; top: 92px; }
.st-summary-card h4 { font-size: 14px; font-weight: 800; margin: 0 0 12px; }
.st-summary-card__rows { display: flex; flex-direction: column; gap: 10px; font-size: 13px; color: var(--st-muted-2); margin-bottom: 16px; }
.st-summary-card__rows div { display: flex; justify-content: space-between; gap: 12px; padding-bottom: 9px; border-bottom: 1px solid #e4ebf1; }
.st-summary-card__rows div:last-child { border-bottom: 0; padding-bottom: 0; }
.st-summary-card__rows b { color: var(--st-ink); text-align: right; }
.st-summary-card .st-btn { padding: 11px 16px; font-size: 13px; }

.st-specs { max-width: 900px; }
.st-specs__group { margin-bottom: 22px; }
.st-specs__group h4 { font-family: var(--st-font); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--st-green-dark); margin: 0 0 6px; padding: 0 16px; }
.st-specs__row { display: grid; grid-template-columns: minmax(140px, 300px) minmax(0, 1fr); gap: 16px; padding: 13px 16px; border-bottom: 1px solid #e7edf2; font-size: 13.5px; }
.st-specs__row:nth-child(even) { background: #fbfcfd; }
.st-specs__row b { font-weight: 800; color: var(--st-ink); }
.st-specs__row span { color: var(--st-muted-2); overflow-wrap: anywhere; }
.st-specs__note { font-size: 12px; color: var(--st-faint); padding: 0 16px; }

.st-compat { max-width: 820px; }
.st-compat p { font-size: 14.5px; line-height: 1.75; color: var(--st-body); margin: 0 0 16px; }
.st-compat__chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.st-chip { display: inline-flex; align-items: center; border: 1px solid var(--st-green); background: var(--st-green-soft-2); color: var(--st-green-dark); border-radius: 999px; padding: 6px 12px; font-size: 12.5px; font-weight: 700; }
.st-chip--ghost { border-color: var(--st-line); background: #fff; color: var(--st-ink); }
.st-chip:hover { border-color: var(--st-green); color: var(--st-green-dark); }

.st-faq-list { max-width: 900px; display: flex; flex-direction: column; gap: 10px; }
.st-faq { border: 1px solid var(--st-line); border-radius: 12px; background: #fff; }
.st-faq summary { list-style: none; cursor: pointer; display: flex; justify-content: space-between; gap: 16px; padding: 16px 18px; font-weight: 800; font-size: 14.5px; color: var(--st-ink); }
.st-faq summary::-webkit-details-marker { display: none; }
.st-faq__mark::before { content: '+'; color: var(--st-green); font-size: 20px; line-height: 1; }
.st-faq[open] .st-faq__mark::before { content: '−'; }
.st-faq__answer { padding: 0 18px 16px; font-size: 14px; line-height: 1.7; color: var(--st-muted-2); }

.st-reviews { max-width: 900px; }
.st-reviews .btn, .st-reviews button[type=submit] { background: var(--st-green); color: #fff; border: 0; border-radius: 9px; padding: 11px 18px; font-weight: 800; }
.st-reviews textarea, .st-reviews input[type=text], .st-reviews input[type=email] { border: 1px solid var(--st-input); border-radius: 9px; }

.st-pdp-related { padding: 42px 0 56px; }
.st-pdp-related h2 { font-size: clamp(21px, 2.3vw, 26px); font-weight: 800; margin-bottom: 18px; }

@media (max-width: 1100px) {
    .st-buybox { max-width: none; flex-basis: 100%; position: static; }
}
@media (max-width: 767px) {
    .st-pdp { gap: 20px; }
    .st-pdp-overview:not([hidden]) { grid-template-columns: 1fr; }
    .st-summary-card { position: static; }
    .st-specs__row { grid-template-columns: 1fr; gap: 3px; }
    .st-pdp-tabs__nav { flex-wrap: nowrap; overflow-x: auto; scrollbar-width: none; }
    .st-pdp-tabs__btn { white-space: nowrap; padding: 12px 14px; }
}

/* ---------- Cart ---------- */
.st-cart-page { padding: clamp(22px, 3vw, 30px) 0 clamp(36px, 5vw, 56px); }
.st-cart-page__title { font-size: clamp(25px, 3.2vw, 34px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.st-cart-page__lede { font-size: 13.5px; color: var(--st-muted); margin: 0 0 26px; }
.st-cart-layout { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.st-cart-layout__main { flex: 1 1 520px; min-width: 0; }
.st-cart-table { border: 1px solid var(--st-line); border-radius: 14px; overflow: hidden; background: #fff; position: relative; }
.st-cart-table.content-loading::after { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, .6); }
.st-cart-table__head, .st-cart-row { display: grid; grid-template-columns: minmax(56px, 96px) minmax(0, 1fr) minmax(98px, 130px) minmax(76px, 120px) 30px; gap: 10px 14px; }
.st-cart-table__head { padding: 14px 18px; background: var(--st-bg); border-bottom: 1px solid var(--st-line); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--st-muted); }
.st-cart-row { align-items: center; padding: 16px 18px; border-bottom: 1px solid var(--st-line-3); }
.st-cart-row:last-child { border-bottom: 0; }
.st-cart-row__img { width: 100%; max-width: 96px; height: 80px; background: var(--st-bg); border-radius: 10px; overflow: hidden; display: block; }
.st-cart-row__img img { width: 100%; height: 100%; object-fit: contain; }
.st-cart-row__info { min-width: 0; }
.st-cart-row__meta { font-size: 11px; color: #8fa1b0; font-weight: 700; margin-bottom: 4px; }
.st-cart-row__name { font-size: 14.5px; font-weight: 700; color: var(--st-ink); line-height: 1.35; display: block; }
.st-cart-row__name:hover { color: var(--st-green-dark); }
.st-cart-row__attrs, .st-cart-row__info small { font-size: 12px; color: var(--st-muted); }
.st-cart-row__each { font-size: 12.5px; color: var(--st-muted); margin-top: 5px; display: flex; gap: 8px; flex-wrap: wrap; align-items: baseline; }
.st-cart-row__each del { color: var(--st-faint); font-size: 11.5px; }
.st-cart-row__stock { color: #b0473c; font-weight: 800; }
.st-qty--sm { margin: 0 auto; }
.st-qty--sm button { width: 32px; padding: 9px 0; }
.st-qty--sm input { width: 36px; font-size: 13.5px; }
.st-cart-row__total { text-align: right; font-family: var(--st-font-head); font-size: 18px; font-weight: 800; }
.st-cart-row__remove { color: var(--st-faint); display: grid; place-items: center; padding: 6px; }
.st-cart-row__remove:hover { color: #d84242; }
.st-cart-actions { display: flex; gap: 16px; align-items: center; justify-content: space-between; margin-top: 18px; flex-wrap: wrap; }
.st-link-arrow--back { gap: 8px; }
.st-coupon { display: flex; gap: 10px; }
.st-coupon input { border: 1px solid var(--st-input); border-radius: 9px; padding: 11px 14px; font-size: 13px; flex: 1 1 150px; min-width: 0; max-width: 190px; }
.st-coupon .st-btn { padding: 11px 18px; font-size: 13px; }
.st-callout { margin-top: 22px; border: 1px solid #d7e7de; background: var(--st-green-soft-2); border-radius: 12px; padding: 18px; display: flex; gap: 14px; align-items: flex-start; }
.st-callout > svg { flex: 0 0 22px; margin-top: 1px; color: var(--st-green-dark); }
.st-callout > div { flex: 1; min-width: 0; }
.st-callout b { display: block; font-size: 14px; margin-bottom: 4px; }
.st-callout span { font-size: 13px; color: #3d6b53; line-height: 1.6; }
.st-btn--deep { background: var(--st-green-dark); color: #fff; padding: 11px 16px; font-size: 13px; }
.st-btn--deep:hover, .st-btn--deep:focus { background: var(--st-green); color: #fff; }
.st-summary { flex: 1 1 320px; max-width: 380px; border: 1px solid var(--st-line); border-radius: 14px; padding: 20px; background: #fff; box-shadow: 0 14px 40px rgba(8, 35, 61, .06); position: sticky; top: 92px; z-index: 1; }
.st-summary h3 { font-size: 17px; font-weight: 800; margin: 0 0 16px; }
.st-summary__rows { display: flex; flex-direction: column; gap: 11px; font-size: 13.5px; color: var(--st-muted-2); }
.st-summary__rows > div { display: flex; justify-content: space-between; gap: 12px; }
.st-summary__rows b { color: var(--st-ink); text-align: right; }
.st-summary__rows a { font-size: 12px; color: #b0473c; margin-left: 4px; }
.st-summary__total { display: flex; justify-content: space-between; align-items: baseline; border-top: 1px solid var(--st-line); margin: 14px 0 18px; padding-top: 15px; }
.st-summary__total span { font-size: 15px; font-weight: 800; }
.st-summary__total strong { font-family: var(--st-font-head); font-size: 26px; font-weight: 800; }
.st-summary__assure { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--st-line-3); display: flex; flex-direction: column; gap: 9px; font-size: 12px; color: var(--st-muted); }
.st-summary__assure span { display: flex; gap: 8px; align-items: center; }
.st-summary__assure svg { color: var(--st-green); }
.st-empty--cart { border-style: dashed; padding: 64px 24px; background: #f9fbfd; }
.st-cart-layout__main .ps-section--default, .st-cart-layout__main .ps-section__header { margin-top: 28px; }
@media (max-width: 1023px) {
    .st-summary { max-width: none; position: static; flex-basis: 100%; }
}
@media (max-width: 767px) {
    .st-cart-table__head { display: none; }
    .st-cart-row { grid-template-columns: 72px minmax(0, 1fr) auto; grid-template-areas: 'img info remove' 'img qty total'; }
    .st-cart-row__img { grid-area: img; height: 72px; }
    .st-cart-row__info { grid-area: info; }
    .st-cart-row .st-qty { grid-area: qty; margin: 0; justify-self: start; }
    .st-cart-row__total { grid-area: total; text-align: right; font-size: 16px; }
    .st-cart-row__remove { grid-area: remove; align-self: start; }
    .st-summary { max-width: none; position: static; }
    .st-callout { flex-direction: column; }
}

/* ---------- Customer auth ---------- */
.st-auth { padding: clamp(26px, 3.6vw, 40px) 0 64px; display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; align-items: start; max-width: 1080px; }
.st-auth--single { max-width: 520px; grid-template-columns: 1fr; }
.st-auth__card { border: 1px solid var(--st-line); border-radius: 14px; padding: 28px; background: #fff; box-shadow: 0 14px 40px rgba(8, 35, 61, .06); min-width: 0; }
.st-auth__card--alt { background: var(--st-bg); box-shadow: none; }
.st-main .container { min-width: 0; }
.st-auth .ps-my-account, .st-auth .container { padding: 0; margin: 0; max-width: none; width: auto; }
.st-auth .row { margin: 0; --bs-gutter-x: 0; }
.st-auth .row > [class*="col-"] { width: 100%; max-width: 100%; flex: 1 0 100%; padding: 0; }
.st-auth .py-5 { padding: 0 !important; }
.st-auth .auth-card { border: 0; background: transparent; box-shadow: none; border-radius: 0; }
.st-auth .auth-card__header, .st-auth .auth-card__body, .st-auth .auth-card__footer { padding: 0 !important; background: transparent !important; border: 0 !important; }
.st-auth .auth-card__header-icon, .st-auth .auth-card__banner { display: none !important; }
.st-auth .auth-card__header-title { font-family: var(--st-font-head); font-size: clamp(21px, 2.4vw, 26px) !important; font-weight: 800; margin: 0 0 6px !important; color: var(--st-ink); }
.st-auth .auth-card__header-description { font-size: 13px; color: var(--st-muted) !important; margin: 0 0 22px; line-height: 1.55; }
.st-auth .form-label, .st-account .form-label, .st-form label.st-field__label { display: block; font-size: 12.5px; font-weight: 800; margin-bottom: 6px; color: var(--st-ink); }
.st-auth .form-control, .st-account .form-control, .st-account .form-select { border: 1px solid var(--st-input); border-radius: 9px; padding: 12px; font-size: 13.5px; height: auto; background-color: #fff; box-shadow: none; color: var(--st-ink); }
.st-auth .form-control.ps-5 { padding-left: 2.6rem !important; }
.st-auth .form-control:focus, .st-account .form-control:focus, .st-account .form-select:focus { border-color: var(--st-green); box-shadow: 0 0 0 3px rgba(19, 160, 75, .15); outline: none; }
.st-auth .auth-input-icon { position: absolute; left: 0; top: 0; bottom: 0; background: transparent; border: 0; color: var(--st-faint); z-index: 5; }
.st-auth .auth-input-icon svg { width: 17px; height: 17px; }
.st-auth .mb-3 { margin-bottom: 14px !important; }
.st-auth .form-check-input:checked { background-color: var(--st-green); border-color: var(--st-green); }
.st-auth .form-check-label, .st-auth .form-check { font-size: 12.5px; color: var(--st-muted-2); }
.st-auth a { font-weight: 800; }
.st-auth .text-center, .st-auth .auth-card__footer { font-size: 13px; color: var(--st-muted); }
.st-auth .st-btn--block { margin-top: 6px; }
.st-auth .invalid-feedback, .st-auth .text-danger { font-size: 12px; color: #b0473c; }
.st-auth__benefits h2 { font-size: clamp(21px, 2.4vw, 26px); font-weight: 800; margin: 0 0 16px; }
.st-auth__benefits p { margin: 20px 0 0; font-size: 13.5px; color: var(--st-muted); }
.st-auth__back { margin: 18px 0 0; font-size: 13px; }
.st-auth__back a { display: inline-flex; align-items: center; gap: 6px; }
.st-auth .social-login-basic, .st-auth .social-login { margin-top: 16px; }

/* ---------- Customer account ---------- */
.st-account { padding: clamp(22px, 3vw, 30px) 0 clamp(36px, 5vw, 56px); }
.st-account__head h1 { font-size: clamp(25px, 3.2vw, 34px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.st-account__head p { font-size: 13.5px; color: var(--st-muted); margin: 0 0 26px; }
.st-account__layout { display: flex; flex-wrap: wrap; gap: 28px; align-items: flex-start; }
.st-account__nav { flex: 0 1 236px; min-width: 220px; border: 1px solid var(--st-line); border-radius: 12px; padding: 12px; background: #fff; position: sticky; top: 92px; z-index: 1; }
.st-account__user { display: flex; gap: 12px; align-items: center; padding: 10px 12px 16px; border-bottom: 1px solid var(--st-line-3); margin-bottom: 8px; min-width: 0; }
.st-account__user > span:last-child { min-width: 0; }
.st-account__user b { display: block; font-size: 13.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-account__user span span { font-size: 11.5px; color: var(--st-muted); display: block; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.st-account__avatar { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; background: var(--st-green-soft-3); color: var(--st-green-dark); display: grid; place-items: center; font-family: var(--st-font-head); font-weight: 800; font-size: 15px; }
.st-account__link { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-radius: 8px; font-size: 13px; font-weight: 600; color: var(--st-muted-2); }
.st-account__link svg { width: 17px; height: 17px; color: var(--st-faint); }
.st-account__link:hover { color: var(--st-green-dark); background: var(--st-bg); }
.st-account__link.is-active { font-weight: 800; color: var(--st-green-dark); background: #eaf7ef; }
.st-account__link.is-active svg { color: var(--st-green); }
.st-account__content { flex: 1 1 540px; min-width: 0; }
.st-account .card, .st-account .bb-customer-card { border: 1px solid var(--st-line); border-radius: 14px; box-shadow: none; overflow: hidden; }
.st-account .card-header { background: #fff; border-bottom: 1px solid var(--st-line-3); padding: 18px 20px; }
.st-account .card-header h2, .st-account .card-header h3, .st-account .card-title, .st-account h2, .st-account h3.title { font-family: var(--st-font-head); font-size: 18px; font-weight: 800; color: var(--st-ink); margin: 0; }
.st-account .card-body { padding: 20px; }
.st-account table.table { font-size: 13.5px; margin: 0; }
.st-account table.table thead th { background: var(--st-bg); font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--st-muted); border-bottom: 1px solid var(--st-line); padding: 13px 16px; white-space: nowrap; }
.st-account table.table td { padding: 15px 16px; border-color: var(--st-line-3); vertical-align: middle; }
.st-account .table-responsive { border: 1px solid var(--st-line); border-radius: 14px; }
.st-account .btn { border-radius: 9px; font-weight: 800; font-size: 13px; padding: 9px 16px; }
.st-account .btn-primary, .st-account .ps-btn, .st-account button[type=submit]:not(.btn-danger):not(.btn-link) { background: var(--st-green); border-color: var(--st-green); color: #fff; }
.st-account .btn-primary:hover, .st-account .ps-btn:hover { background: var(--st-green-dark); border-color: var(--st-green-dark); color: #fff; }
.st-account .btn-outline-primary, .st-account .btn-secondary, .st-account .btn-light { background: #fff; color: var(--st-ink); border: 1px solid var(--st-line); }
.st-account .badge, .st-account .label { border-radius: 999px; font-size: 11.5px; font-weight: 800; padding: 5px 11px; }
.st-account .bg-success, .st-account .badge.bg-success { background: var(--st-green-soft-3) !important; color: var(--st-green-dark) !important; }
.st-account .bg-warning, .st-account .badge.bg-warning { background: #fdf4e0 !important; color: #b07706 !important; }
.st-account .bg-info, .st-account .badge.bg-info { background: #e7f3fb !important; color: var(--st-blue) !important; }
.st-account .bg-danger, .st-account .badge.bg-danger { background: #fbe9e7 !important; color: #b0473c !important; }
.st-account .pagination { gap: 6px; }
.st-account .page-link { border-radius: 8px !important; border: 1px solid var(--st-line); color: var(--st-ink); font-weight: 800; }
.st-account .page-item.active .page-link { background: var(--st-green); border-color: var(--st-green); color: #fff; }
.st-account .alert { border-radius: 12px; font-size: 13.5px; }
.st-account .bb-empty-state, .st-account .empty-state { text-align: center; padding: 40px 20px; }
@media (max-width: 1023px) {
    .st-account__nav { position: static; flex-basis: 100%; }
    .st-account__nav nav { display: flex; overflow-x: auto; gap: 4px; scrollbar-width: none; }
    .st-account__link { white-space: nowrap; }
    .st-account__user { border-bottom: 0; margin-bottom: 0; }
}

/* ---------- Simple pages: wishlist, compare, tracking ---------- */
.st-simple-page { padding: clamp(22px, 3vw, 30px) 0 clamp(36px, 5vw, 56px); }
.st-simple-page__title { font-size: clamp(25px, 3.2vw, 34px); font-weight: 800; letter-spacing: -.03em; margin-bottom: 6px; }
.st-simple-page__lede { font-size: 13.5px; color: var(--st-muted); margin: 0 0 26px; }
.st-list-card { border: 1px solid var(--st-line); border-radius: 14px; overflow: hidden; background: #fff; }
.st-wish-row { display: grid; grid-template-columns: minmax(64px, 100px) minmax(0, 1fr) minmax(88px, 150px) minmax(148px, 220px); gap: 12px 16px; align-items: center; padding: 18px; border-bottom: 1px solid var(--st-line-3); }
.st-wish-row:last-child { border-bottom: 0; }
.st-wish-row__img { width: 100%; max-width: 100px; height: 84px; background: var(--st-bg); border-radius: 10px; overflow: hidden; display: block; }
.st-wish-row__img img { width: 100%; height: 100%; object-fit: contain; }
.st-wish-row__info { min-width: 0; }
.st-wish-row__name { font-size: 15px; font-weight: 700; color: var(--st-ink); line-height: 1.35; display: block; margin-bottom: 6px; }
.st-wish-row__name:hover { color: var(--st-green-dark); }
.st-wish-row__price { font-family: var(--st-font-head); font-size: 20px; font-weight: 800; }
.st-wish-row__price small { font-family: var(--st-font); font-size: 13px; color: var(--st-muted-2); }
.st-wish-row__actions { display: flex; gap: 9px; justify-content: flex-end; }
.st-wish-row__actions .st-btn { padding: 11px 15px; font-size: 12.5px; border-radius: 8px; gap: 7px; }
.st-wish-row__remove:hover { color: #d84242; border-color: #f0c9c9; }

.st-compare { border: 1px solid var(--st-line); border-radius: 14px; overflow: auto; background: #fff; }
.st-compare__row { min-width: calc(220px + var(--st-compare-cols) * 220px); display: grid; grid-template-columns: minmax(150px, 220px) repeat(var(--st-compare-cols), minmax(0, 1fr)); }
.st-compare__label { border-right: 1px solid var(--st-line); border-bottom: 1px solid var(--st-line); background: #fafcfd; padding: 14px 16px; font-size: 13px; font-weight: 800; }
.st-compare__label--head { background: var(--st-bg); display: flex; align-items: flex-end; font-size: 12px; text-transform: uppercase; letter-spacing: .06em; color: var(--st-muted); padding: 20px 16px; }
.st-compare__product { position: relative; border-bottom: 1px solid var(--st-line); border-right: 1px solid var(--st-line); padding: 20px 16px; text-align: center; }
.st-compare__product:last-child, .st-compare__cell:last-child { border-right: 0; }
.st-compare__img { display: block; height: 120px; background: var(--st-bg); border-radius: 10px; overflow: hidden; margin-bottom: 12px; }
.st-compare__img img { width: 100%; height: 100%; object-fit: contain; }
.st-compare__product h3 { font-size: 14px; font-weight: 700; line-height: 1.35; margin: 0 0 12px; min-height: 38px; }
.st-compare__product h3 a { color: var(--st-ink); }
.st-compare__product .st-btn { padding: 10px; font-size: 12.5px; border-radius: 8px; }
.st-compare__remove { position: absolute; right: 8px; top: 8px; border: 1px solid var(--st-line); background: #fff; border-radius: 50%; width: 28px; height: 28px; display: grid; place-items: center; color: var(--st-faint); cursor: pointer; z-index: 2; }
.st-compare__remove:hover { color: #d84242; }
.st-compare__cell { padding: 14px 16px; text-align: center; font-size: 13.5px; font-weight: 600; border-bottom: 1px solid var(--st-line); border-right: 1px solid var(--st-line); color: var(--st-ink); overflow-wrap: anywhere; }
.st-compare__cell.is-best { font-weight: 800; color: var(--st-green-dark); background: var(--st-green-soft-2); }
.st-compare__group { min-width: calc(220px + var(--st-compare-cols) * 220px); padding: 12px 16px; font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--st-green-dark); background: var(--st-green-soft-2); border-bottom: 1px solid var(--st-line); }
.st-compare__actions { margin-top: 20px; display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
@media (max-width: 767px) {
    .st-wish-row { grid-template-columns: 72px minmax(0, 1fr); }
    .st-wish-row__price, .st-wish-row__actions { grid-column: 2; justify-content: flex-start; }
}

/* ---------- Order tracking ---------- */
.st-tracking { padding: clamp(24px, 3.2vw, 32px) 0 clamp(36px, 5vw, 56px); }
.st-tracking__form { border: 1px solid var(--st-line); border-radius: 14px; padding: 22px; background: #fff; max-width: 900px; }
.st-tracking__form .container, .st-tracking__form .row, .st-tracking__form [class*="col-"] { max-width: none; width: auto; padding: 0; margin: 0; flex: 1 1 auto; min-width: 0; }
.st-tracking__form .py-5 { padding: 0 !important; }
.st-tracking__form .card, .st-tracking__form .auth-card { border: 0; box-shadow: none; background: transparent; }
.st-tracking__form .card-body, .st-tracking__form .auth-card__body, .st-tracking__form .auth-card__header { padding: 0 !important; background: transparent !important; border: 0 !important; }
.st-tracking__form .auth-card__header { display: none !important; }
.st-tracking__form .auth-card__header-title { font-size: 17px !important; font-weight: 800; }
.st-tracking__form form { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 14px; align-items: end; }
.st-tracking__form form .mb-3 { margin: 0 !important; }
.st-tracking__form .form-label { font-size: 12.5px; font-weight: 800; margin-bottom: 6px; color: var(--st-ink); }
.st-tracking__form .form-control { border: 1px solid var(--st-input); border-radius: 9px; padding: 11px 12px; font-size: 13.5px; height: auto; }
.st-tracking__form .st-btn { padding: 13px; font-size: 14px; }
.st-tracking__form .input-group-text, .st-tracking__form .auth-input-icon { display: none; }
.st-tracking__form .form-control.ps-5 { padding-left: 12px !important; }
.st-track-card { margin-top: 26px; border: 1px solid var(--st-line); border-radius: 14px; padding: 26px; background: #fff; }
.st-track-card__head { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; padding-bottom: 22px; border-bottom: 1px solid var(--st-line-3); }
.st-track-card__code { font-size: 12px; color: var(--st-muted); font-weight: 700; margin-bottom: 4px; text-transform: uppercase; }
.st-track-card__head h2 { font-size: 22px; font-weight: 800; }
.st-track-card__facts { display: flex; flex-wrap: wrap; gap: 14px 30px; }
.st-track-card__facts > span { font-size: 12px; color: var(--st-muted); max-width: 280px; }
.st-track-card__facts b { display: block; font-size: 13.5px; color: var(--st-ink); }
.st-track-card__amount { font-family: var(--st-font-head); font-size: 20px !important; font-weight: 800; }
.st-track-card__alert { margin-top: 20px; padding: 14px 16px; border-radius: 10px; background: #fbe9e7; color: #b0473c; font-weight: 700; }
.st-track-steps { list-style: none; margin: 0; padding: 26px 0 0; display: flex; flex-wrap: wrap; row-gap: 24px; }
.st-track-steps li { flex: 1 1 148px; min-width: 0; display: flex; flex-direction: column; gap: 10px; }
.st-track-steps__line { display: flex; align-items: center; }
.st-track-steps__dot { width: 40px; height: 40px; flex: 0 0 40px; border-radius: 50%; display: grid; place-items: center; font-family: var(--st-font-head); font-weight: 800; font-size: 15px; border: 2px solid var(--st-line); background: #fff; color: var(--st-faint); }
.st-track-steps__bar { flex: 1; height: 3px; border-radius: 2px; background: #e3ebf1; }
.st-track-steps li.is-done .st-track-steps__dot { border-color: var(--st-green); background: var(--st-green); color: #fff; }
.st-track-steps li.is-done .st-track-steps__bar { background: var(--st-green); }
.st-track-steps b { font-size: 13px; font-weight: 800; color: #8fa1b0; padding-right: 14px; }
.st-track-steps li.is-done b { color: var(--st-ink); }
.st-track-steps span:not([class]) { display: block; font-size: 11.5px; color: #8fa1b0; margin-top: -6px; }
.st-track-grid { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 20px; align-items: flex-start; }
.st-track-items { flex: 1 1 440px; min-width: 0; border: 1px solid var(--st-line); border-radius: 14px; background: #fff; overflow: hidden; }
.st-track-items__head { padding: 16px 20px; border-bottom: 1px solid var(--st-line-3); }
.st-track-items__head h3, .st-track-address h3 { font-size: 16px; font-weight: 800; }
.st-track-items__row { display: flex; gap: 14px; align-items: center; padding: 16px 20px; border-bottom: 1px solid var(--st-line-3); }
.st-track-items__row img { width: 74px; height: 64px; object-fit: contain; background: var(--st-bg); border-radius: 9px; }
.st-track-items__row span { flex: 1; min-width: 0; font-size: 12.5px; color: var(--st-muted); }
.st-track-items__row b { display: block; font-size: 14px; color: var(--st-ink); }
.st-track-items__totals { padding: 14px 20px; display: flex; flex-direction: column; gap: 8px; font-size: 13.5px; color: var(--st-muted-2); }
.st-track-items__totals > div { display: flex; justify-content: space-between; }
.st-track-items__totals .is-total b { font-family: var(--st-font-head); font-size: 20px; color: var(--st-ink); }
.st-track-address { flex: 1 1 300px; max-width: 340px; border: 1px solid var(--st-line); border-radius: 14px; padding: 20px; background: #fff; }
.st-track-address h3 { margin: 0 0 14px; }
.st-track-address p { font-size: 13.5px; color: var(--st-muted-2); line-height: 1.7; margin: 0 0 12px; }
.st-tracking__empty { margin-top: 26px; }

/* ---------- 404 ---------- */
.st-404 { padding: 76px 0 92px; text-align: center; }
.st-404__code { font-family: var(--st-font-head); font-size: clamp(82px, 14vw, 130px); font-weight: 800; line-height: .9; letter-spacing: -.05em; color: var(--st-navy-2); }
.st-404__rule { width: min(180px, 60%); height: 1px; background: var(--st-line); margin: 28px auto; }
.st-404 h1 { font-size: clamp(24px, 3vw, 30px); font-weight: 800; margin: 0 0 10px; }
.st-404 p { font-size: 15px; color: var(--st-muted); margin: 0 auto 26px; max-width: 480px; line-height: 1.7; }
.st-404__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Martfury toast */
#alert-container { position: fixed; right: 24px; bottom: 24px; top: auto; z-index: 10000; }
#alert-container .alert { background: var(--st-navy-2) !important; color: #fff !important; border: 0; padding: 14px 18px; border-radius: 10px; box-shadow: 0 14px 40px rgba(8, 35, 61, .24); font-size: 13.5px; font-weight: 700; }
#alert-container .alert .message-icon { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
    .st-allcats__sub { width: 360px; }
}

@media (max-width: 1023px) {
    .st-header__burger { display: inline-flex; order: 0; }
    .st-search { order: 3; flex-basis: 100%; margin-left: 0; }
    .st-actions { order: 2; margin-left: auto; }
    .st-action--account .st-action__text { display: none; }
    .st-nav__inner { gap: 12px; }
    .st-allcats__panel { display: none !important; }
    .st-mega { display: none !important; }
    .st-nav__link svg { display: none; }
    .st-minicart__panel { display: none; }
    .st-hero__shade { background: linear-gradient(90deg, rgba(248, 251, 249, .97) 0%, rgba(248, 251, 249, .88) 38%, rgba(248, 251, 249, .35) 62%, rgba(248, 251, 249, 0) 80%); }
    .st-hero__tagline { display: none; }
}

@media (max-width: 767px) {
    .st-topbar__links > a, .st-topbar__links > .st-topbar__sep, .st-topbar__lang { display: none; }
    .st-topbar__inner { justify-content: space-between; flex-wrap: nowrap; gap: 10px; }
    .st-topbar__tagline { font-size: 11.5px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-width: 0; }
    .st-topbar__phone { white-space: nowrap; font-size: 12px; }
    .st-header__inner { gap: 12px 14px; padding: 10px 0 12px; }
    .st-header__logo img { height: 38px !important; }
    .st-actions { gap: 14px; }
    .st-action__label { display: none; }
    .st-search { height: 44px; }
    .st-nav__menu { gap: 16px; }
    .st-nav__cta { padding: 10px 14px; font-size: 12.5px; }
    .st-nav__cta svg { display: none; }
    .st-allcats__toggle { padding: 10px 14px; font-size: 12.5px; gap: 8px; }
    .st-allcats__toggle svg:last-child { display: none; }
    .st-hero__media img { object-position: 70% 60%; }
    .st-hero__shade { background: linear-gradient(90deg, rgba(248, 251, 249, .96) 0%, rgba(248, 251, 249, .85) 60%, rgba(248, 251, 249, .6) 100%); }
    .st-hero__subtitle { font-size: 16px; margin-bottom: 22px; }
    .st-section-head { align-items: flex-start; flex-direction: column; gap: 8px; }
    .st-section-head--tabs .st-tabs { margin-left: 0; overflow-x: auto; flex-wrap: nowrap; max-width: 100%; scrollbar-width: none; }
    .st-need-grid, .st-solution-grid, .st-article-grid { grid-template-columns: 1fr; }
    .st-product-grid, .st-product-grid--home { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
    .st-card { padding: 10px; }
    .st-card__media, .st-card--home .st-card__media { height: 128px; }
    .st-card__title, .st-card--home .st-card__title { font-size: 13px; }
    .st-card__row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .st-card__price { font-size: 16px; }
    .st-card__cart { font-size: 11.5px; padding: 9px 6px; gap: 5px; }
    .st-card__cart svg { display: none; }
    .st-card__cart { white-space: nowrap; }
    .st-card__actions .js-add-to-compare-button { display: none; }
    .st-pdp__tiles { grid-template-columns: repeat(2, minmax(0, 1fr)) !important; }
    .st-cat-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
    .st-cat__img { height: 58px; }
    .st-flow__steps { flex-basis: 100%; display: grid; grid-template-columns: repeat(3, 1fr); }
    .st-flow__arrow { display: none; }
    .st-brand-strip { grid-template-columns: repeat(2, 1fr); }
    .st-impact__stats { grid-template-columns: repeat(2, minmax(0, 1fr)); flex-basis: 100%; }
    .st-footer__bottom { flex-direction: column; gap: 6px; }
    #alert-container { left: 16px; right: 16px; bottom: 16px; }
}

@media (max-width: 420px) {
    .st-actions { gap: 12px; }
    .st-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
