:root {
    --sb-blue: #0052cc;
    --sb-blue-dark: #0b3d99;
    --sb-blue-deep: #07316f;
    --sb-yellow: #ffd500;
    --sb-yellow-warm: #ffc107;
    --sb-ink: #101828;
    --sb-muted: #667085;
    --sb-line: #e4e7ec;
    --sb-soft: #f6f8fc;
    --sb-card: #ffffff;
    --sb-danger: #d92d20;
    --sb-radius: 8px;
    --sb-container: 1400px;
    --sb-shadow: 0 18px 40px rgba(16, 24, 40, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: #ffffff;
    color: var(--sb-ink);
    font-family: "DM Sans", Arial, sans-serif;
    overflow-x: clip;
}

body.admin-bar .sb-site-header {
    top: 32px;
}

body.sb-menu-open,
body.sb-popup-open,
body.sb-cookie-modal-open,
body.sb-location-open {
    overflow: hidden;
}

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

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

button,
input,
select {
    font: inherit;
}

button {
    color: inherit;
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

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

.sb-icon {
    width: 1em;
    height: 1em;
    flex: 0 0 auto;
}

.sb-site-header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: #ffffff;
    border-bottom: 1px solid var(--sb-line);
    box-shadow: 0 6px 20px rgba(16, 24, 40, 0.06);
}

.sb-topbar {
    background: var(--sb-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.sb-topbar__inner,
.sb-topbar__left,
.sb-topbar__right,
.sb-topbar a,
.sb-topbar span:not(.sb-top-separator) {
    display: flex;
    align-items: center;
}

.sb-location-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    font-weight: inherit;
    cursor: pointer;
}

.sb-topbar__inner {
    min-height: 38px;
    justify-content: space-between;
    gap: 20px;
}

.sb-topbar__left,
.sb-topbar__right {
    gap: 15px;
}

.sb-topbar a,
.sb-topbar span:not(.sb-top-separator) {
    gap: 6px;
}

.sb-topbar .sb-icon {
    width: 16px;
    height: 16px;
}

.sb-topbar a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sb-location-trigger:hover {
    color: rgba(255, 255, 255, 0.8);
}

.sb-location-dialog[hidden] {
    display: none;
}

.sb-location-dialog {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    padding: 18px;
}

.sb-location-dialog__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(16, 24, 40, 0.42);
    cursor: pointer;
}

.sb-location-dialog__panel {
    position: relative;
    width: min(100%, 520px);
    border: 1px solid var(--sb-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 28px 70px rgba(16, 24, 40, 0.22);
    padding: 24px;
}

.sb-location-dialog__panel header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.sb-location-dialog__panel h2 {
    margin: 0 0 8px;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 24px;
    line-height: 1.15;
}

.sb-location-dialog__panel p {
    margin: 0;
    color: var(--sb-muted);
    line-height: 1.55;
}

.sb-location-dialog__panel header button {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sb-line);
    border-radius: 999px;
    background: #ffffff;
    cursor: pointer;
}

.sb-location-dialog__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.sb-location-dialog__actions button,
.sb-location-form button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: var(--sb-ink);
    font-weight: 800;
    padding: 0 16px;
    cursor: pointer;
}

.sb-location-dialog__actions .sb-button,
.sb-location-form button {
    border-color: var(--sb-blue);
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-location-form {
    display: grid;
    gap: 10px;
    margin-top: 14px;
}

.sb-location-form[hidden] {
    display: none;
}

.sb-location-form label {
    color: var(--sb-ink);
    font-weight: 800;
}

.sb-location-form input {
    min-height: 46px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    padding: 0 14px;
}

.sb-location-status {
    min-height: 22px;
    margin-top: 12px;
    font-size: 14px;
}

.sb-top-separator {
    width: 1px;
    height: 16px;
    background: rgba(255, 255, 255, 0.22);
}

.sb-cart-icon {
    position: relative;
}

.sb-cart-icon b {
    position: absolute;
    top: -9px;
    right: -10px;
    min-width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--sb-danger);
    color: #ffffff;
    font-size: 10px;
    line-height: 1;
}

.sb-mainbar {
    background: #ffffff;
}

.sb-mainbar__inner {
    min-height: 110px;
    display: flex;
    align-items: center;
    gap: 32px;
}

.sb-logo {
    flex: 0 0 auto;
}

.sb-logo img {
    width: auto;
    height: 80px;
    max-height: none;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(16, 24, 40, 0.12));
}

.sb-search {
    display: flex;
    align-items: stretch;
    flex: 1 1 auto;
    max-width: 780px;
    min-width: 280px;
    min-height: 56px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: 0 10px 18px rgba(16, 24, 40, 0.06);
    overflow: hidden;
}

.sb-search select {
    width: 168px;
    min-width: 138px;
    padding: 0 14px;
    border: 0;
    border-right: 1px solid var(--sb-line);
    color: var(--sb-ink);
    background: #f8fafc;
    font-size: 14px;
    font-weight: 700;
    outline: 0;
}

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

.sb-search-tools {
    display: flex;
    align-items: center;
    gap: 2px;
    padding: 0 8px 0 2px;
}

.sb-search-tools button {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: var(--sb-muted);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sb-search-tools button:hover {
    background: var(--sb-soft);
    color: var(--sb-blue);
}

.sb-search-tools button.is-listening {
    background: #fff1f0;
    color: var(--sb-danger);
    animation: sb-pulse 1s ease-in-out infinite;
}

@keyframes sb-pulse {
    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.08);
    }
}

.sb-search-tools .sb-icon {
    width: 17px;
    height: 17px;
}

.sb-search-submit {
    width: 58px;
    border: 0;
    background: var(--sb-blue);
    color: var(--sb-yellow);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sb-search-submit .sb-icon {
    width: 22px;
    height: 22px;
}

.sb-header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 0 0 auto;
}

.sb-language-wrap {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.sb-language {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 10px;
    border: 1px solid transparent;
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
}

.sb-language:hover {
    border-color: var(--sb-line);
}

.sb-language .sb-icon:first-child {
    color: var(--sb-blue);
}

.sb-language-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: 90;
    width: 190px;
    padding: 8px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: var(--sb-shadow);
}

.sb-language-menu[hidden] {
    display: none;
}

.sb-language-menu button {
    width: 100%;
    min-height: 38px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: var(--sb-ink);
    font: 700 14px/1 var(--sb-font);
    text-align: left;
    cursor: pointer;
}

.sb-language-menu button:hover {
    background: var(--sb-soft);
    color: var(--sb-blue);
}

.sb-google-translate,
.goog-te-gadget {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.goog-te-banner-frame,
body > .skiptranslate {
    display: none !important;
}

body {
    top: 0 !important;
}

.sb-signin,
.sb-button,
.sb-newsletter-form button,
.sb-popup-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: var(--sb-radius);
    border: 1px solid transparent;
    font-weight: 800;
    text-align: center;
    cursor: pointer;
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.sb-signin {
    min-height: 48px;
    padding: 0 26px;
    background: var(--sb-blue);
    color: var(--sb-yellow);
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: 0 8px 20px rgba(0, 82, 204, 0.22), inset 0 2px 0 rgba(255, 255, 255, 0.26);
}

.sb-signin:hover,
.sb-button:hover,
.sb-newsletter-form button:hover,
.sb-popup-form button:hover {
    transform: translateY(-1px);
}

.sb-menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    padding: 10px;
    cursor: pointer;
}

.sb-menu-toggle span:not(.screen-reader-text) {
    display: block;
    height: 2px;
    margin: 5px 0;
    background: var(--sb-ink);
}

.sb-quicknav {
    border-top: 1px solid var(--sb-line);
    background: rgba(248, 250, 252, 0.45);
}

.sb-quicknav__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.sb-quicknav__inner::-webkit-scrollbar {
    display: none;
}

.sb-quicknav a,
.sb-quicknav button {
    min-height: 58px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    color: var(--sb-ink);
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
}

.sb-quicknav a:hover,
.sb-quicknav button:hover,
.sb-quicknav .is-active {
    color: var(--sb-blue);
    border-bottom-color: var(--sb-blue);
}

.sb-quicknav .sb-icon {
    width: 16px;
    height: 16px;
}

.sb-nav-separator {
    width: 1px;
    height: 22px;
    background: var(--sb-line);
}

.sb-mobile-backdrop {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
}

.sb-mobile-backdrop[hidden],
.sb-mobile-panel[hidden],
.sb-discount-popup[hidden],
.sb-cookie-banner[hidden],
.sb-cookie-preferences[hidden] {
    display: none;
}

.sb-mobile-panel {
    position: fixed;
    inset: 0 auto 0 0;
    z-index: 101;
    width: min(88vw, 340px);
    background: #ffffff;
    box-shadow: 22px 0 50px rgba(16, 24, 40, 0.24);
    display: flex;
    flex-direction: column;
}

.sb-mobile-panel__header {
    min-height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 24px;
    border-bottom: 1px solid var(--sb-line);
}

.sb-mobile-panel__header img {
    width: 208px;
}

.sb-mobile-panel__close {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: #f2f4f7;
    color: var(--sb-muted);
    cursor: pointer;
}

.sb-mobile-panel__close:hover {
    background: var(--sb-yellow);
    color: var(--sb-ink);
}

.sb-mobile-panel__close .sb-icon {
    width: 20px;
    height: 20px;
}

.sb-mobile-panel__content {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 22px 20px;
}

.sb-mobile-panel__content a {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 10px 8px;
    border-radius: var(--sb-radius);
    color: var(--sb-ink);
    font-size: 16px;
    font-weight: 700;
}

.sb-mobile-panel__content a:hover {
    background: #f2f6ff;
    color: var(--sb-blue);
}

.sb-mobile-panel__content a .sb-icon {
    width: 24px;
    height: 24px;
    padding: 10px;
    box-sizing: content-box;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-mobile-panel__label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 22px 0 14px;
    padding: 0 8px;
    color: #667085;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.sb-mobile-panel__label::before {
    content: "";
    width: 6px;
    height: 18px;
    border-radius: 999px;
    background: var(--sb-blue);
}

.sb-mobile-panel__footer {
    padding: 24px;
    border-top: 1px solid var(--sb-line);
    background: #ffffff;
}

.sb-mobile-panel__footer .sb-mobile-panel__cta {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sb-radius);
    background: var(--sb-blue);
    color: #ffffff;
    font-weight: 800;
    box-shadow: 0 12px 24px rgba(0, 82, 204, 0.18);
}

.sb-cookie-banner {
    position: fixed;
    inset: auto 0 0;
    z-index: 120;
    padding: 0 16px 16px;
}

.sb-cookie-banner__inner {
    width: min(100%, 960px);
    margin: 0 auto;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    border: 1px solid var(--sb-line);
    border-radius: 16px;
    background: #ffffff;
    color: var(--sb-ink);
    box-shadow: 0 25px 70px rgba(16, 24, 40, 0.22);
}

.sb-cookie-banner__copy {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.sb-cookie-banner__icon {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-cookie-banner__icon .sb-icon {
    width: 20px;
    height: 20px;
}

.sb-cookie-banner h2 {
    margin: 0;
    font-size: 15px;
    line-height: 1.35;
    font-weight: 800;
}

.sb-cookie-banner p {
    margin: 6px 0 0;
    color: var(--sb-muted);
    font-size: 14px;
    line-height: 1.55;
    font-weight: 500;
}

.sb-cookie-banner a,
.sb-cookie-banner__copy button {
    border: 0;
    padding: 0;
    background: transparent;
    color: var(--sb-blue);
    font: inherit;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
    cursor: pointer;
}

.sb-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.sb-cookie-banner__actions button,
.sb-cookie-preferences footer button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 2px 7px rgba(16, 24, 40, 0.06);
}

.sb-cookie-banner__actions button:hover,
.sb-cookie-preferences footer button:hover {
    border-color: rgba(0, 82, 204, 0.35);
    color: var(--sb-blue);
}

.sb-cookie-banner__actions [data-sb-cookie-accept],
.sb-cookie-preferences footer [data-sb-cookie-save] {
    border-color: var(--sb-blue);
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-cookie-banner__actions [data-sb-cookie-accept]:hover,
.sb-cookie-preferences footer [data-sb-cookie-save]:hover {
    color: #ffffff;
    background: #0047b3;
}

.sb-cookie-preferences {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.sb-cookie-preferences__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(16, 24, 40, 0.5);
    backdrop-filter: blur(6px);
}

.sb-cookie-preferences__dialog {
    position: relative;
    width: min(100%, 540px);
    max-height: min(90vh, 720px);
    overflow-y: auto;
    border: 1px solid var(--sb-line);
    border-radius: 16px;
    background: #ffffff;
    box-shadow: 0 28px 80px rgba(16, 24, 40, 0.25);
}

.sb-cookie-preferences header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    padding: 22px 24px;
    border-bottom: 1px solid var(--sb-line);
}

.sb-cookie-preferences header h2 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
}

.sb-cookie-preferences header p {
    margin: 8px 0 0;
    color: var(--sb-muted);
    font-size: 14px;
    line-height: 1.55;
}

.sb-cookie-preferences header button {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 0;
    border-radius: 50%;
    background: var(--sb-soft);
    color: var(--sb-muted);
}

.sb-cookie-preferences__list {
    display: grid;
    gap: 14px;
    padding: 22px 24px;
}

.sb-cookie-preferences__list label {
    min-height: 94px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    border: 1px solid var(--sb-line);
    border-radius: 12px;
}

.sb-cookie-preferences__list strong,
.sb-cookie-preferences__list em {
    display: block;
}

.sb-cookie-preferences__list strong {
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 800;
}

.sb-cookie-preferences__list em {
    margin-top: 5px;
    color: var(--sb-muted);
    font-size: 12px;
    font-style: normal;
    line-height: 1.55;
}

.sb-cookie-preferences__list input {
    width: 42px;
    height: 24px;
    flex: 0 0 auto;
    accent-color: var(--sb-blue);
}

.sb-cookie-preferences footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 20px 24px 24px;
    border-top: 1px solid var(--sb-line);
}

.sb-discount-popup {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.sb-discount-popup__backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(255, 255, 255, 0.58);
    backdrop-filter: blur(10px);
}

.sb-discount-popup__dialog {
    position: relative;
    width: min(100%, 920px);
    max-height: min(90vh, 720px);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(228, 231, 236, 0.9);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(16, 24, 40, 0.24);
}

.sb-discount-popup__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 2;
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.22);
    color: var(--sb-ink);
    cursor: pointer;
}

.sb-discount-popup__brand {
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    padding: 42px;
    background: linear-gradient(135deg, #003d99, #0052cc);
    color: #ffffff;
}

.sb-discount-popup__brand span,
.sb-offer-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sb-discount-popup__brand h2,
.sb-discount-popup__content h2 {
    margin: 14px 0;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 42px;
    line-height: 1.12;
    font-weight: 800;
}

.sb-discount-popup__brand p,
.sb-discount-popup__content p {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.sb-discount-popup__content {
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sb-offer-pill {
    width: fit-content;
    min-height: 32px;
    padding: 0 12px;
    border: 1px solid rgba(0, 82, 204, 0.18);
    border-radius: var(--sb-radius);
    background: rgba(0, 82, 204, 0.08);
    color: var(--sb-blue);
}

.sb-discount-popup__content h2 {
    color: var(--sb-ink);
    font-size: 38px;
}

.sb-discount-popup__content h2 strong {
    color: var(--sb-blue);
}

.sb-discount-popup__content p {
    color: var(--sb-muted);
    font-size: 17px;
}

.sb-popup-form {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.sb-popup-form input {
    min-height: 52px;
    padding: 0 16px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    outline: 0;
}

.sb-popup-form button {
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-popup-account {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid var(--sb-line);
    text-align: center;
}

.sb-popup-account span,
.sb-popup-account a {
    display: block;
}

.sb-popup-account span {
    color: var(--sb-muted);
    font-size: 14px;
    font-weight: 700;
}

.sb-popup-account a {
    margin-top: 12px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 82, 204, 0.28);
    border-radius: var(--sb-radius);
    color: var(--sb-blue);
    font-weight: 800;
}

.sb-hero {
    position: relative;
    height: 600px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-hero__bg,
.sb-stats > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sb-hero__overlay,
.sb-stats__shade {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
}

.sb-hero__texture,
.sb-stats__texture {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px);
    background-size: 26px 26px;
    mix-blend-mode: overlay;
}

.sb-hero__label,
.sb-hero__support {
    position: absolute;
    top: 24px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 15px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.28);
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sb-hero__label {
    left: 28px;
}

.sb-hero__support {
    right: 28px;
    border-color: transparent;
    background: var(--sb-yellow-warm);
    color: var(--sb-blue);
}

.sb-hero__slides {
    position: relative;
    z-index: 2;
    width: min(100% - 96px, 1180px);
    height: calc(100% - 112px);
    display: grid;
    place-items: center;
}

.sb-hero-slide {
    grid-area: 1 / 1;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateX(40px);
    transition: opacity 300ms ease, transform 300ms ease, visibility 300ms ease;
    text-align: center;
}

.sb-hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.sb-hero-slide h1,
.sb-hero-slide h2,
.sb-rewards h2,
.sb-newsletter h2,
.sb-section-title,
.sb-section-head h2 {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0;
}

.sb-hero-slide h1 {
    font-size: 44px;
}

.sb-hero-slide h2 {
    font-size: 38px;
}

.sb-hero-slide h1 span,
.sb-hero-slide h2 span {
    color: var(--sb-yellow-warm);
}

.sb-hero-slide p {
    width: min(100%, 680px);
    margin: 22px auto 34px;
    color: rgba(255, 255, 255, 0.94);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.6;
}

.sb-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.sb-button--yellow {
    background: var(--sb-yellow-warm);
    color: var(--sb-blue);
    box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
}

.sb-button--white {
    background: #ffffff;
    color: var(--sb-blue);
}

.sb-button--ghost {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.32);
    color: #ffffff;
    backdrop-filter: blur(4px);
}

.sb-button--muted {
    background: rgba(255, 255, 255, 0.5);
    color: var(--sb-blue);
    cursor: not-allowed;
}

.sb-mini-product-grid {
    width: min(100%, 940px);
    margin: 28px auto 32px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.sb-mini-product {
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.sb-mini-product__image {
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.06);
}

.sb-mini-product__image .sb-icon {
    width: 50px;
    height: 50px;
    color: rgba(255, 255, 255, 0.55);
}

.sb-mini-product h3 {
    margin: 0 0 8px;
    color: #ffffff;
    font-size: 18px;
}

.sb-mini-product strong {
    display: block;
    margin-bottom: 14px;
    color: var(--sb-yellow-warm);
    font-size: 22px;
    font-weight: 800;
}

.sb-mini-product__actions {
    display: flex;
    gap: 8px;
}

.sb-mini-product__actions span,
.sb-mini-product__actions button {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sb-radius);
    border: 0;
    font-weight: 800;
}

.sb-mini-product__actions span {
    flex: 1;
    background: #ffffff;
    color: var(--sb-blue);
}

.sb-mini-product__actions button {
    width: 42px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.28);
}

.sb-hero-slide--split {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    gap: 52px;
    align-items: center;
    text-align: left;
}

.sb-hero-slide--split p {
    margin-left: 0;
    max-width: 460px;
}

.sb-spark-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.sb-spark-grid span {
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 193, 7, 0.75);
}

.sb-spark-grid .sb-icon {
    width: 42px;
    height: 42px;
}

.sb-hero-icon-ring,
.sb-hero-phone {
    width: 96px;
    height: 96px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    border-radius: 50%;
    border: 2px solid rgba(255, 193, 7, 0.5);
    background: rgba(255, 193, 7, 0.18);
    color: var(--sb-yellow-warm);
}

.sb-hero-phone {
    width: 72px;
    height: 72px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.12);
}

.sb-hero-icon-ring .sb-icon {
    width: 48px;
    height: 48px;
}

.sb-hero-phone .sb-icon {
    width: 38px;
    height: 38px;
}

.sb-hero-cats {
    width: min(100%, 980px);
    margin: 30px auto;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 14px;
}

.sb-hero-cats a {
    min-height: 112px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.sb-hero-cats span {
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-hero__arrow {
    position: absolute;
    top: 50%;
    z-index: 6;
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    cursor: pointer;
    transform: translateY(-50%);
    backdrop-filter: blur(8px);
}

.sb-hero__arrow:hover {
    background: rgba(255, 255, 255, 0.24);
}

.sb-hero__arrow .sb-icon {
    width: 24px;
    height: 24px;
}

.sb-hero__arrow--prev {
    left: 28px;
}

.sb-hero__arrow--next {
    right: 28px;
}

.sb-hero__dots {
    position: absolute;
    left: 50%;
    bottom: 68px;
    z-index: 6;
    display: flex;
    align-items: center;
    gap: 10px;
    transform: translateX(-50%);
}

.sb-hero__dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    cursor: pointer;
}

.sb-hero__dots button.is-active {
    width: 32px;
    background: var(--sb-yellow-warm);
    box-shadow: 0 0 12px rgba(255, 193, 7, 0.5);
}

.sb-payment-strip {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 7;
    width: 100%;
    padding: 12px 0;
    border-top: 1px solid #d0d5dd;
    background: #f2f4f7;
    color: #111827;
    box-shadow: 0 -8px 16px rgba(16, 24, 40, 0.08);
}

.sb-payment-strip__inner,
.sb-payment-strip__inner span,
.sb-payment-strip__inner div,
.sb-payment-strip b {
    display: flex;
    align-items: center;
}

.sb-payment-strip__inner {
    justify-content: space-between;
    gap: 18px;
}

.sb-payment-strip__inner span {
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
}

.sb-payment-strip__inner div {
    gap: 12px;
}

.sb-payment-strip b {
    min-height: 28px;
    padding: 0 10px;
    justify-content: center;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    background: #ffffff;
    color: var(--sb-blue);
    font-size: 11px;
    font-weight: 900;
    font-style: italic;
}

.sb-payment-strip b strong {
    margin-right: 2px;
    color: #111827;
}

.sb-mastercard {
    gap: 0;
}

.sb-mastercard i {
    width: 13px;
    height: 13px;
    display: block;
    border-radius: 50%;
}

.sb-mastercard i:first-child {
    margin-right: -6px;
    background: #eb001b;
    opacity: 0.9;
}

.sb-mastercard i:last-child {
    background: #f79e1b;
    opacity: 0.9;
}

.sb-trust {
    padding: 56px 0;
    background: #f8fafc;
    border-bottom: 1px solid var(--sb-line);
}

.sb-trust__grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.sb-trust__grid div,
.sb-category-card,
.sb-product-card,
.sb-review,
.sb-reward-list div {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
}

.sb-trust__grid div {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sb-trust__grid div:hover,
.sb-category-card:hover,
.sb-product-card:hover,
.sb-review:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: var(--sb-shadow);
}

.sb-trust .sb-icon {
    width: 80px;
    height: 80px;
    padding: 20px;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-trust h2 {
    margin: 18px 0 8px;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--sb-ink);
    font-size: 18px;
    font-weight: 800;
}

.sb-trust p,
.sb-section-head p,
.sb-review p,
.sb-site-footer p,
.sb-product-card p {
    color: var(--sb-muted);
}

.sb-stats {
    position: relative;
    padding: 72px 0;
    overflow: hidden;
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-stats .sb-container {
    position: relative;
    z-index: 2;
}

.sb-stats h2 {
    margin: 0 0 34px;
    color: #ffffff;
    text-align: center;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 34px;
    font-weight: 800;
}

.sb-stat-grid {
    width: min(100%, 880px);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 34px;
}

.sb-stat-grid div {
    aspect-ratio: 1 / 1;
    min-height: 248px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--sb-radius);
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(8px);
}

.sb-stat-grid span {
    width: 68px;
    height: 68px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow-warm);
    color: var(--sb-blue);
}

.sb-stat-grid span .sb-icon {
    width: 34px;
    height: 34px;
}

.sb-stat-grid h3 {
    margin: 16px 0 8px;
    color: #ffffff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 18px;
}

.sb-stat-grid strong {
    color: var(--sb-yellow-warm);
    font-size: 22px;
    font-weight: 800;
}

.sb-stat-grid p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    font-weight: 600;
}

.sb-section {
    padding: 84px 0;
    background: #ffffff;
}

.sb-section--muted {
    background: var(--sb-soft);
}

.sb-section--reviews {
    border-top: 1px solid var(--sb-line);
    background: #ffffff;
}

.sb-section--gifts {
    border-top: 1px solid var(--sb-line);
}

.sb-section-title,
.sb-section-head h2 {
    color: var(--sb-ink);
    font-size: 34px;
}

.sb-section-title {
    margin-bottom: 34px;
}

.sb-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 36px;
}

.sb-section-head--stacked {
    align-items: flex-end;
}

.sb-section-head p {
    margin: 12px 0 0;
    font-size: 18px;
    font-weight: 600;
}

.sb-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-blue);
    font-size: 15px;
    font-weight: 800;
}

.sb-link .sb-icon {
    width: 16px;
    height: 16px;
}

.sb-countdown {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid #ffe28a;
    border-radius: var(--sb-radius);
    background: #fff4c2;
    color: var(--sb-blue);
    font-weight: 900;
}

.sb-category-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.sb-category-card {
    min-height: 136px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    text-align: center;
    background: var(--sb-blue);
    color: #ffffff;
    font-weight: 800;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sb-category-card span {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow);
    color: var(--sb-blue);
    box-shadow: 0 8px 14px rgba(16, 24, 40, 0.08);
}

.sb-category-card .sb-icon {
    width: 27px;
    height: 27px;
    stroke-width: 1.75;
}

.sb-deals-carousel {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 96px) / 5);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.sb-deals-carousel::-webkit-scrollbar {
    display: none;
}

.sb-product-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
    padding: 2px;
}

.sb-product-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.sb-product-grid--five {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sb-home-best-sellers-grid,
.sb-home-recommended-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sb-product-card {
    min-width: 0;
    min-height: 462px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sb-product-card__media {
    position: relative;
    display: block;
    height: 224px;
    flex: 0 0 auto;
    background: #f7f9fc;
    border-bottom: 1px solid var(--sb-line);
    overflow: hidden;
}

.sb-product-card--best .sb-product-card__media {
    height: 224px;
}

.sb-product-card--gift .sb-product-card__media {
    height: 224px;
}

.sb-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 18px;
    mix-blend-mode: multiply;
    transition: transform 650ms ease;
}

.sb-product-card:hover .sb-product-card__media img {
    transform: scale(1.05);
}

.sb-badge,
.sb-rank {
    position: absolute;
    z-index: 2;
    min-height: 28px;
    display: inline-flex;
    align-items: center;
    border-radius: var(--sb-radius);
    font-size: 12px;
    font-weight: 900;
}

.sb-badge {
    top: 14px;
    left: 14px;
    padding: 0 10px;
    background: var(--sb-danger);
    color: #ffffff;
}

.sb-rank {
    top: 14px;
    right: 14px;
    width: 46px;
    justify-content: center;
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-product-card__body {
    padding: 20px;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
}

.sb-product-card h3 {
    min-height: 48px;
    margin: 0 0 12px;
    font-family: "Outfit", Arial, sans-serif;
    color: var(--sb-ink);
    font-size: 18px;
    line-height: 1.3;
    font-weight: 800;
}

.sb-product-card h3 a:hover {
    color: var(--sb-blue);
}

.sb-product-card .sb-rating {
    color: var(--sb-yellow-warm);
    font-size: 14px;
    letter-spacing: 0;
}

.sb-product-card .sb-rating span {
    color: var(--sb-muted);
    font-weight: 700;
}

.sb-product-card__footer {
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    justify-content: flex-end;
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid rgba(228, 231, 236, 0.72);
}

.sb-product-card__footer strong {
    display: block;
    color: var(--sb-ink);
    font-size: 23px;
    font-weight: 900;
}

.sb-card-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
}

.sb-add-button {
    flex: 1;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--sb-radius);
    background: var(--sb-blue);
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
}

.sb-add-button.is-disabled {
    opacity: 0.8;
}

.sb-save-button {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    color: var(--sb-ink);
}

.sb-save-button:hover {
    color: var(--sb-blue);
}

.sb-pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sb-pill-row a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 17px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 8px 14px rgba(16, 24, 40, 0.05);
}

.sb-pill-row a.is-active {
    border-color: var(--sb-blue);
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-review-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 24px;
}

.sb-review {
    position: relative;
    min-height: 268px;
    padding: 24px;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sb-review > span {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 5px 9px;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow);
    color: var(--sb-blue);
    font-size: 11px;
    font-weight: 900;
}

.sb-review .sb-rating {
    margin: 18px 0 24px;
    color: var(--sb-blue);
    font-size: 18px;
    letter-spacing: 0;
}

.sb-review h3 {
    margin: 0 0 12px;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 19px;
}

.sb-review p {
    margin: 0 0 24px;
    font-size: 14px;
    line-height: 1.6;
}

.sb-review__person {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid rgba(228, 231, 236, 0.72);
}

.sb-review__person b {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--sb-blue), var(--sb-yellow));
    color: #ffffff;
    font-size: 18px;
}

.sb-review__person strong,
.sb-review__person small {
    display: block;
}

.sb-review__person strong {
    color: var(--sb-ink);
    font-size: 14px;
}

.sb-review__person small {
    margin-top: 2px;
    color: var(--sb-muted);
    font-size: 12px;
}

.sb-rewards {
    padding: 96px 0;
    background: var(--sb-blue-dark);
    color: #ffffff;
}

.sb-rewards__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.85fr);
    gap: 64px;
    align-items: center;
}

.sb-eyebrow {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 14px;
    border: 1px solid rgba(255, 213, 0, 0.32);
    border-radius: var(--sb-radius);
    background: rgba(255, 213, 0, 0.12);
    color: var(--sb-yellow);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.sb-rewards h2 {
    max-width: 740px;
    margin-top: 24px;
    color: #ffffff;
    font-size: 42px;
}

.sb-rewards p {
    max-width: 640px;
    margin: 24px 0 36px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.7;
}

.sb-reward-list {
    margin-top: 56px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.sb-reward-list div {
    padding: 24px;
    display: grid;
    grid-template-columns: 48px 1fr;
    column-gap: 16px;
    align-items: center;
    background: transparent;
    border-color: transparent;
}

.sb-reward-list .sb-icon {
    grid-row: span 2;
    width: 48px;
    height: 48px;
    padding: 12px;
    border-radius: var(--sb-radius);
    background: rgba(255, 213, 0, 0.13);
    color: var(--sb-yellow);
}

.sb-reward-list strong,
.sb-reward-list span {
    display: block;
}

.sb-reward-list strong {
    color: #ffffff;
    font-size: 18px;
}

.sb-reward-list span {
    margin-top: 4px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    font-weight: 600;
}

.sb-rewards figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    border-radius: var(--sb-radius);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.22);
}

.sb-rewards figure::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(11, 61, 153, 0.78), transparent);
}

.sb-rewards figure img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.sb-newsletter {
    padding: 96px 0;
    border-top: 1px solid var(--sb-line);
    background: #ffffff;
    text-align: center;
}

.sb-newsletter h2 {
    color: var(--sb-ink);
    font-size: 42px;
}

.sb-newsletter p {
    width: min(100%, 620px);
    margin: 18px auto 38px;
    color: var(--sb-muted);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.6;
}

.sb-newsletter-form {
    width: min(100%, 620px);
    margin: 0 auto;
    display: flex;
    gap: 12px;
}

.sb-newsletter-form input {
    flex: 1 1 auto;
    min-width: 0;
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    outline: 0;
    font-size: 16px;
}

.sb-newsletter-form input:focus {
    border-color: var(--sb-blue);
    box-shadow: 0 0 0 3px rgba(0, 82, 204, 0.14);
}

.sb-newsletter-form button {
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-assistant-button {
    position: fixed;
    right: 28px;
    bottom: 28px;
    z-index: 70;
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #ffffff;
    border-radius: 50%;
    background: #4169e1;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(0, 61, 153, 0.38);
    cursor: pointer;
}

.sb-assistant-button .sb-icon {
    width: 32px;
    height: 32px;
}

.sb-site-footer {
    padding: 56px 0 30px;
    background: var(--sb-blue-dark);
    color: #ffffff;
}

.sb-footer-grid {
    display: grid;
    grid-template-columns: 1.1fr repeat(4, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 34px;
}

.sb-footer-brand {
    display: inline-flex;
    align-items: baseline;
    margin-bottom: 16px;
    font-family: "Outfit", Arial, sans-serif;
    color: #ffffff;
    font-size: 28px;
    font-weight: 800;
}

.sb-footer-brand strong {
    color: var(--sb-yellow);
}

.sb-site-footer h2 {
    margin: 0 0 16px;
    color: #ffffff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 16px;
    font-weight: 800;
}

.sb-site-footer a {
    display: block;
    margin: 10px 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 14px;
    font-weight: 500;
}

.sb-site-footer a:hover {
    color: var(--sb-yellow);
}

.sb-site-footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    font-size: 14px;
    line-height: 1.7;
}

.sb-footer-middle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.sb-payments,
.sb-app-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.sb-payments b {
    min-height: 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 4px;
    background: #ffffff;
    color: var(--sb-blue);
    font-size: 12px;
    font-weight: 900;
}

.sb-app-buttons a {
    min-height: 44px;
    display: grid;
    grid-template-columns: 24px 1fr;
    align-items: center;
    column-gap: 8px;
    margin: 0;
    padding: 6px 14px;
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: #111827;
}

.sb-app-buttons a:hover {
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-app-buttons span {
    grid-row: span 2;
}

.sb-app-buttons small,
.sb-app-buttons strong {
    display: block;
    line-height: 1;
}

.sb-app-buttons small {
    font-size: 10px;
}

.sb-app-buttons strong {
    font-size: 12px;
}

.sb-footer-bottom {
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.sb-footer-bottom p a {
    display: inline;
    margin: 0;
}

.sb-socials {
    display: flex;
    align-items: center;
    gap: 14px;
}

.sb-socials a {
    width: 28px;
    height: 28px;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    font-size: 11px;
    font-weight: 900;
}

.sb-page {
    background: var(--sb-soft);
    padding: 56px 0;
}

.sb-page__inner {
    background: #ffffff;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    padding: 32px;
}

.sb-content h1,
.sb-woocommerce-page h1,
.woocommerce-products-header__title {
    margin-top: 0;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 36px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    padding: 16px;
    background: #ffffff;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
    border-radius: var(--sb-radius);
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-best-sellers-page {
    min-height: 960px;
    padding: 52px 0 80px;
    background: #ffffff;
}

.sb-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
}

.sb-breadcrumb a {
    color: #667085;
}

.sb-breadcrumb a:hover {
    color: var(--sb-blue);
}

.sb-breadcrumb span {
    display: inline-flex;
    color: #98a2b3;
}

.sb-breadcrumb .sb-icon {
    width: 15px;
    height: 15px;
}

.sb-breadcrumb strong {
    color: var(--sb-ink);
    font-weight: 800;
}

.sb-best-sellers-hero {
    margin-bottom: 36px;
}

.sb-top-rated-pill {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 193, 7, 0.14);
    color: #b7791f;
    font-size: 14px;
    font-weight: 900;
}

.sb-top-rated-pill .sb-icon {
    width: 17px;
    height: 17px;
}

.sb-best-sellers-hero h1 {
    margin: 0 0 18px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 46px;
    line-height: 1;
    font-weight: 800;
    letter-spacing: 0;
}

.sb-best-sellers-hero p {
    max-width: 680px;
    margin: 0;
    color: #667085;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.55;
}

.sb-best-sellers-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 34px;
    align-items: start;
}

.sb-best-filter-column {
    min-width: 0;
}

.sb-results-label,
.sb-best-results__count {
    min-height: 28px;
    display: flex;
    align-items: center;
    color: #98a2b3;
    font-size: 14px;
    font-weight: 800;
}

.sb-results-label {
    margin-bottom: 12px;
}

.sb-best-results__count {
    justify-content: flex-end;
    margin-bottom: 12px;
}

.sb-filter-card {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    overflow: hidden;
}

.sb-filter-card__heading {
    min-height: 60px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
    border-bottom: 1px solid #eef0f4;
    color: var(--sb-ink);
}

.sb-filter-card__heading .sb-icon {
    width: 21px;
    height: 21px;
}

.sb-filter-card__heading h2 {
    margin: 0;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 18px;
    font-weight: 800;
}

.sb-filter-section {
    border-bottom: 1px solid #eef0f4;
}

.sb-filter-section:last-child {
    border-bottom: 0;
}

.sb-filter-section > button {
    width: 100%;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    border: 0;
    background: #ffffff;
    color: var(--sb-ink);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.sb-filter-section > button:hover {
    background: #f9fafb;
}

.sb-filter-section > button .sb-icon {
    width: 15px;
    height: 15px;
    color: #98a2b3;
    transition: transform 160ms ease;
}

.sb-filter-section.is-open > button .sb-icon {
    transform: rotate(180deg);
}

.sb-filter-section__body {
    display: none;
    padding: 0 16px 16px;
}

.sb-filter-section.is-open .sb-filter-section__body {
    display: block;
}

.sb-check-row {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 28px;
    color: #667085;
    cursor: pointer;
}

.sb-check-row input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.sb-check-row span {
    width: 16px;
    height: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    border: 1px solid #d0d5dd;
    border-radius: 4px;
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.sb-check-row input:checked + span {
    border-color: var(--sb-blue);
    background: var(--sb-blue);
}

.sb-check-row input:checked + span::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;
    transform: rotate(-45deg) translate(1px, -1px);
}

.sb-check-row b {
    color: #667085;
    font-size: 14px;
    font-weight: 600;
}

.sb-price-slider {
    position: relative;
    height: 20px;
    margin: 10px 0 16px;
}

.sb-price-slider::before,
.sb-price-slider span {
    content: "";
    position: absolute;
    top: 9px;
    left: 0;
    height: 5px;
    border-radius: 999px;
}

.sb-price-slider::before {
    right: 0;
    background: #d8e0f4;
}

.sb-price-slider span {
    width: 52%;
    background: #3155c9;
}

.sb-price-slider::after {
    content: "";
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border: 2px solid #9bb7ff;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 2px 4px rgba(16, 24, 40, 0.1);
}

.sb-price-inputs {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 10px;
}

.sb-price-inputs label {
    position: relative;
    display: block;
}

.sb-price-inputs label span {
    position: absolute;
    left: 12px;
    top: 50%;
    color: #667085;
    font-size: 14px;
    font-weight: 700;
    transform: translateY(-50%);
}

.sb-price-inputs input {
    width: 100%;
    height: 34px;
    padding: 0 10px 0 28px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    color: #667085;
    background: #ffffff;
    font-size: 14px;
    outline: 0;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.sb-price-inputs i {
    color: #98a2b3;
    font-style: normal;
    font-weight: 700;
}

.sb-best-results {
    min-width: 0;
}

.sb-empty-results {
    min-height: 350px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 48px 24px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    text-align: center;
}

.sb-empty-results > .sb-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 18px;
    color: #d0d5dd;
}

.sb-empty-results h2 {
    margin: 0 0 12px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.sb-empty-results p {
    margin: 0 0 28px;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
}

.sb-empty-results a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 18px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    color: #344054;
    font-size: 14px;
    font-weight: 800;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.sb-best-product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.sb-collection-hero-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
}

.sb-top-rated-pill--blue {
    background: rgba(0, 82, 204, 0.1);
    color: var(--sb-blue);
}

.sb-top-rated-pill--red {
    background: rgba(217, 45, 32, 0.1);
    color: var(--sb-danger);
}

.sb-deals-countdown {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 20px;
    border: 1px solid rgba(255, 193, 7, 0.8);
    border-radius: var(--sb-radius);
    background: rgba(255, 213, 0, 0.28);
    color: var(--sb-blue);
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.sb-deals-countdown .sb-icon {
    width: 20px;
    height: 20px;
}

.sb-gift-page {
    padding-bottom: 0;
}

.sb-gift-hero {
    margin-bottom: 38px;
}

.sb-gift-section {
    margin-bottom: 54px;
}

.sb-gift-section h2 {
    margin: 0 0 10px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 28px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: 0;
}

.sb-gift-section > p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #667085;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.55;
}

.sb-gift-grid {
    display: grid;
    gap: 22px;
}

.sb-gift-grid--perfect {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.sb-gift-grid--occasion {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.sb-gift-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.sb-gift-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.3);
    box-shadow: var(--sb-shadow);
}

.sb-gift-card__media {
    display: block;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f2f4f7;
}

.sb-gift-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 650ms ease;
}

.sb-gift-card:hover .sb-gift-card__media img {
    transform: scale(1.05);
}

.sb-gift-card__body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    padding: 18px;
}

.sb-gift-card__body strong {
    margin-bottom: 8px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 800;
}

.sb-gift-card__body em {
    flex: 1 1 auto;
    margin-bottom: 18px;
    color: #667085;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
    line-height: 1.55;
}

.sb-gift-card__body b {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: var(--sb-radius);
    background: var(--sb-blue);
    color: #ffffff;
    font-size: 13px;
    font-weight: 900;
}

.sb-gift-card__body b .sb-icon {
    width: 14px;
    height: 14px;
}

.sb-utility-page {
    min-height: 720px;
    padding: 52px 0 80px;
    background: #ffffff;
}

.sb-utility-hero {
    margin: 0 0 34px;
}

.sb-utility-hero--center {
    max-width: 760px;
    margin-inline: auto;
    text-align: center;
}

.sb-utility-hero h1 {
    margin: 0 0 14px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.05;
    font-weight: 800;
}

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

.sb-utility-hero--center p {
    margin-inline: auto;
}

.sb-directory-grid {
    width: min(100%, 1040px);
    margin-inline: auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
}

.sb-directory-card,
.sb-account-card,
.sb-account-panel,
.sb-utility-empty,
.sb-woocommerce-panel,
.sb-store-category-card {
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
}

.sb-directory-card {
    overflow: hidden;
}

.sb-directory-card header {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    border-bottom: 1px solid #eef0f4;
    background: #fbfcff;
}

.sb-directory-card header span {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    color: var(--sb-blue);
    background: #ffffff;
}

.sb-directory-card h2 {
    margin: 0;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 22px;
    font-weight: 800;
}

.sb-directory-card ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.sb-directory-card li + li {
    border-top: 1px solid #eef0f4;
}

.sb-directory-card li a {
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 20px;
    color: #030b1d;
    font-size: 16px;
    font-weight: 700;
}

.sb-directory-card li a:hover {
    color: var(--sb-blue);
    background: #f8fafc;
}

.sb-directory-card li a .sb-icon {
    width: 16px;
    height: 16px;
    opacity: 0;
    transform: translateX(-6px);
    transition: 0.2s ease;
}

.sb-directory-card li a:hover .sb-icon {
    opacity: 1;
    transform: translateX(0);
}

.sb-legal-container {
    width: min(100% - 32px, 960px);
}

.sb-legal-card {
    display: grid;
    gap: 34px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
    background: #ffffff;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.04);
    padding: 34px;
}

.sb-legal-section h2 {
    margin: 0 0 18px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 26px;
    line-height: 1.15;
    font-weight: 800;
}

.sb-legal-section h3 {
    margin: 22px 0 8px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 800;
}

.sb-legal-section p {
    margin: 0;
    color: var(--sb-muted);
    font-size: 16px;
    line-height: 1.7;
}

.sb-v2-page {
    min-height: 720px;
    padding: 52px 0 82px;
    background: #ffffff;
}

.sb-v2-container {
    width: min(100% - 32px, 900px);
    margin-inline: auto;
}

.sb-v2-wide-container {
    width: min(100% - 32px, 1180px);
}

.sb-v2-hero {
    margin-bottom: 42px;
}

.sb-v2-hero h1,
.sb-v2-track-title h1,
.sb-v2-signin-card h1 {
    margin: 0 0 14px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(36px, 4.6vw, 58px);
    line-height: 1.02;
    font-weight: 900;
}

.sb-v2-hero p {
    max-width: 760px;
    margin: 0;
    color: #5f6f8f;
    font-size: 18px;
    line-height: 1.65;
}

.sb-v2-hero .sb-v2-updated {
    margin: -4px 0 24px;
    color: #52617f;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.4;
}

.sb-v2-sections {
    display: grid;
    gap: 44px;
}

.sb-v2-section h2,
.sb-v2-faq-group h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0 0 18px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 23px;
    line-height: 1.2;
    font-weight: 900;
}

.sb-v2-section h2 span,
.sb-v2-faq-group h2 span {
    display: inline-flex;
    color: var(--sb-blue);
}

.sb-v2-section h2 .sb-icon,
.sb-v2-faq-group h2 .sb-icon {
    width: 22px;
    height: 22px;
}

.sb-v2-section h3 {
    margin: 0 0 12px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 19px;
    font-weight: 900;
}

.sb-v2-section p,
.sb-v2-section li {
    color: #5f6f8f;
    font-size: 16px;
    line-height: 1.75;
}

.sb-v2-section p {
    margin: 0 0 18px;
}

.sb-v2-section ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.sb-v2-section li + li {
    margin-top: 9px;
}

.sb-v2-section a,
.sb-v2-contact-form a,
.sb-v2-faq-page a {
    color: var(--sb-blue);
    font-weight: 800;
    text-decoration: none;
}

.sb-v2-section a:hover,
.sb-v2-contact-form a:hover,
.sb-v2-faq-page a:hover {
    text-decoration: underline;
}

.sb-v2-placeholder {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    max-width: 100%;
    padding: 4px 10px;
    border: 1px solid #f4c400;
    border-radius: 6px;
    background: #ffe779;
    color: var(--sb-blue);
    font-weight: 800;
    line-height: 1.2;
    vertical-align: middle;
}

.sb-v2-placeholder small {
    color: #5270a8;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.sb-v2-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 10px;
}

.sb-v2-delivery-card {
    position: relative;
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--sb-line);
    border-radius: 18px;
    background: #fbfcff;
}

.sb-v2-delivery-card.is-popular {
    border-color: rgba(47, 91, 209, 0.28);
    background: #f4f7ff;
    overflow: hidden;
}

.sb-v2-delivery-card > span {
    position: absolute;
    top: 0;
    right: 0;
    padding: 8px 14px;
    border-bottom-left-radius: 10px;
    background: var(--sb-blue);
    color: #ffffff;
    font-size: 12px;
    font-weight: 900;
}

.sb-v2-delivery-card strong {
    display: block;
    margin-bottom: 18px;
    font-size: 30px;
    font-weight: 900;
}

.sb-v2-faq-groups {
    display: grid;
    gap: 40px;
}

.sb-v2-accordion {
    overflow: hidden;
    border: 1px solid var(--sb-line);
    border-radius: 12px;
    background: #ffffff;
}

.sb-v2-accordion details + details {
    border-top: 1px solid #edf0f5;
}

.sb-v2-accordion summary {
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 0 22px;
    color: #030b1d;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    list-style: none;
}

.sb-v2-accordion summary::-webkit-details-marker {
    display: none;
}

.sb-v2-accordion summary .sb-icon {
    width: 16px;
    height: 16px;
    color: #60708c;
    transition: transform 0.2s ease;
}

.sb-v2-accordion details[open] summary .sb-icon {
    transform: rotate(180deg);
}

.sb-v2-accordion details p {
    margin: -4px 22px 18px;
    color: #5f6f8f;
    font-size: 15px;
    line-height: 1.65;
}

.sb-v2-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(320px, 2fr);
    gap: 42px;
    align-items: start;
}

.sb-v2-contact-form,
.sb-v2-info-card,
.sb-v2-track-card,
.sb-v2-signin-card {
    border: 1px solid var(--sb-line);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(16, 24, 40, 0.05);
}

.sb-v2-contact-form {
    padding: 34px;
}

.sb-v2-contact-form h2,
.sb-v2-info-card h3 {
    margin: 0 0 22px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 27px;
    font-weight: 900;
}

.sb-v2-contact-form form,
.sb-v2-contact-form label {
    display: grid;
    gap: 10px;
}

.sb-v2-form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.sb-v2-contact-form label,
.sb-v2-track-card label {
    color: #030b1d;
    font-weight: 800;
}

.sb-v2-contact-form input,
.sb-v2-contact-form textarea,
.sb-v2-track-card input {
    width: 100%;
    border: 1px solid #dce2ed;
    border-radius: 8px;
    background: #ffffff;
    color: #030b1d;
    font: inherit;
    font-size: 16px;
    outline: none;
}

.sb-v2-contact-form input,
.sb-v2-track-card input {
    height: 48px;
    padding: 0 16px;
}

.sb-v2-contact-form textarea {
    min-height: 150px;
    padding: 14px 16px;
    resize: vertical;
}

.sb-v2-contact-form input:focus,
.sb-v2-contact-form textarea:focus,
.sb-v2-track-card input:focus {
    border-color: var(--sb-blue);
    box-shadow: 0 0 0 3px rgba(47, 91, 209, 0.12);
}

.sb-v2-submit,
.sb-v2-track-card button,
.sb-v2-signin-card a {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border: 0;
    border-radius: 8px;
    background: var(--sb-blue);
    color: #ffffff;
    font-size: 16px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 8px 18px rgba(47, 91, 209, 0.18);
}

.sb-v2-submit {
    width: 100%;
}

.sb-v2-submit .sb-icon,
.sb-v2-track-card button .sb-icon {
    width: 19px;
    height: 19px;
}

.sb-v2-contact-form form > p {
    margin: 0;
    color: #5f6f8f;
    font-size: 13px;
}

.sb-v2-contact-cards {
    display: grid;
    gap: 24px;
}

.sb-v2-info-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 26px;
    background: #fbfcff;
}

.sb-v2-info-card.is-primary {
    border-color: rgba(47, 91, 209, 0.28);
    background: #f4f7ff;
}

.sb-v2-info-card > span {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 48px;
    border-radius: 12px;
    background: #ffdf44;
    color: var(--sb-blue);
}

.sb-v2-info-card.is-primary > span {
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-v2-info-card h3 {
    margin-bottom: 8px;
    font-size: 27px;
}

.sb-v2-info-card p {
    margin: 0 0 10px;
    color: #5f6f8f;
    font-size: 16px;
    line-height: 1.55;
}

.sb-v2-small-button {
    min-height: 38px;
    padding: 0 16px;
    border: 1px solid var(--sb-line);
    border-radius: 8px;
    background: #ffffff;
    color: #030b1d;
    font-weight: 800;
}

.sb-v2-socials {
    display: flex;
    gap: 10px;
    margin-bottom: 14px;
}

.sb-v2-socials a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: rgba(47, 91, 209, 0.1);
    color: var(--sb-blue);
    font-weight: 900;
    text-decoration: none;
}

.sb-v2-track-page,
.sb-v2-orders-page {
    min-height: 720px;
    background: #ffffff;
}

.sb-v2-track-hero {
    padding: 58px 0 92px;
    background: var(--sb-blue);
    color: #ffffff;
}

.sb-v2-track-hero .sb-breadcrumb,
.sb-v2-track-hero .sb-breadcrumb a,
.sb-v2-track-hero .sb-breadcrumb span {
    color: rgba(255, 255, 255, 0.86);
}

.sb-v2-track-title {
    display: flex;
    align-items: center;
    gap: 34px;
}

.sb-v2-track-title > span {
    width: 112px;
    height: 112px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    background: #ffdf44;
    color: var(--sb-blue);
    flex: 0 0 112px;
}

.sb-v2-track-title > span .sb-icon {
    width: 52px;
    height: 52px;
}

.sb-v2-track-title h1 {
    color: #ffffff;
    font-size: clamp(42px, 5vw, 68px);
}

.sb-v2-track-title p {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 23px;
    font-weight: 700;
}

.sb-v2-track-body {
    padding: 0 0 80px;
}

.sb-v2-track-card {
    position: relative;
    z-index: 2;
    margin-top: -54px;
    padding: 48px 58px;
}

.sb-v2-track-card label span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 18px;
}

.sb-v2-track-card label span .sb-icon {
    width: 22px;
    height: 22px;
    color: var(--sb-blue);
}

.sb-v2-track-card button {
    min-width: 260px;
    min-height: 72px;
    margin-top: 32px;
    border-radius: 14px;
    background: #ffdf44;
    color: var(--sb-blue);
    font-size: 22px;
}

.sb-v2-orders-page {
    display: grid;
    place-items: start center;
    padding: 106px 16px 120px;
}

.sb-v2-signin-card {
    width: min(100%, 640px);
    padding: 48px 54px;
    text-align: center;
}

.sb-v2-signin-card h1 {
    font-size: 32px;
}

.sb-v2-signin-card p {
    margin: 0 0 30px;
    color: #5f6f8f;
    font-size: 22px;
}

.sb-v2-signin-card a {
    width: 100%;
    text-decoration: none;
}

.sb-store-hero {
    margin: -52px 0 42px;
    padding: 54px 0;
    color: #ffffff;
    background: var(--sb-blue-dark);
}

.sb-store-hero span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 14px;
    margin-bottom: 18px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-weight: 800;
}

.sb-store-hero h1 {
    max-width: 760px;
    margin: 0 0 12px;
    color: #ffffff;
    font-family: "Outfit", Arial, sans-serif;
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.05;
    font-weight: 800;
}

.sb-store-hero p {
    max-width: 620px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 18px;
    line-height: 1.6;
}

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

.sb-store-category-card {
    min-height: 210px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: 0.2s ease;
}

.sb-store-category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 82, 204, 0.28);
    box-shadow: 0 18px 38px rgba(16, 24, 40, 0.1);
}

.sb-store-category-card > span {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: var(--sb-radius);
    background: var(--sb-yellow);
    color: var(--sb-blue);
}

.sb-store-category-card > span .sb-icon {
    width: 25px;
    height: 25px;
}

.sb-store-category-card strong {
    display: block;
    margin-bottom: 10px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 800;
}

.sb-store-category-card em {
    flex: 1 1 auto;
    margin-bottom: 20px;
    color: var(--sb-muted);
    font-style: normal;
    line-height: 1.55;
}

.sb-store-category-card b {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sb-blue);
    font-size: 14px;
}

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

.sb-account-card {
    padding: 26px;
    text-align: center;
}

.sb-account-card > span,
.sb-utility-empty__icon {
    width: 72px;
    height: 72px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 50%;
    background: #f2f6ff;
    color: var(--sb-blue);
}

.sb-account-card .sb-icon,
.sb-utility-empty__icon .sb-icon {
    width: 34px;
    height: 34px;
}

.sb-account-card h2,
.sb-utility-empty h2 {
    margin: 0 0 10px;
    color: #030b1d;
    font-family: "Outfit", Arial, sans-serif;
    font-size: 24px;
    font-weight: 800;
}

.sb-account-card p,
.sb-utility-empty p {
    margin: 0 0 24px;
    color: var(--sb-muted);
    line-height: 1.6;
}

.sb-account-panel,
.sb-woocommerce-panel {
    padding: 28px;
    overflow: hidden;
}

.sb-account-panel .woocommerce,
.sb-woocommerce-panel .woocommerce {
    color: var(--sb-ink);
}

.sb-account-panel input,
.sb-woocommerce-panel input,
.sb-account-panel textarea,
.sb-woocommerce-panel textarea,
.sb-account-panel select,
.sb-woocommerce-panel select {
    min-height: 44px;
    border: 1px solid var(--sb-line);
    border-radius: var(--sb-radius);
}

.sb-account-panel .button,
.sb-woocommerce-panel .button,
.sb-account-panel button,
.sb-woocommerce-panel button {
    border-radius: var(--sb-radius) !important;
}

.sb-utility-empty {
    min-height: 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 760px;
    margin-inline: auto;
    padding: 48px 24px;
    text-align: center;
}

.sb-utility-empty .sb-button {
    min-width: 160px;
    justify-content: center;
}

@media (min-width: 768px) {
    .sb-hero {
        height: 650px;
    }

    .sb-hero-slide h1 {
        font-size: 62px;
    }

    .sb-hero-slide h2 {
        font-size: 52px;
    }

    .sb-stats h2,
    .sb-newsletter h2 {
        font-size: 42px;
    }

    .sb-section-title,
    .sb-section-head h2 {
        font-size: 38px;
    }

    .sb-rewards h2 {
        font-size: 50px;
    }
}

@media (min-width: 1180px) {
    .sb-hero-slide h1 {
        font-size: 72px;
    }

    .sb-hero-slide h2 {
        font-size: 60px;
    }

    .sb-section-title,
    .sb-section-head h2,
    .sb-newsletter h2 {
        font-size: 42px;
    }
}

@media (max-width: 1260px) {
    .sb-mainbar__inner {
        gap: 18px;
    }

    .sb-logo img {
        width: auto;
        height: 64px;
    }

    .sb-trust__grid,
    .sb-product-row,
    .sb-product-grid,
    .sb-product-grid--five,
    .sb-review-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

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

@media (max-width: 1040px) {
    body.admin-bar .sb-site-header {
        top: 46px;
    }

    .sb-topbar__left {
        display: none;
    }

    .sb-topbar__inner {
        justify-content: flex-end;
    }

    .sb-mainbar__inner {
        min-height: 94px;
        flex-wrap: wrap;
        padding: 12px 0;
    }

    .sb-search {
        order: 4;
        flex-basis: 100%;
        max-width: none;
    }

    .sb-menu-toggle {
        display: block;
    }

    .sb-quicknav {
        display: none;
    }

    .sb-mini-product-grid,
    .sb-hero-slide--split,
    .sb-stat-grid,
    .sb-rewards__inner,
    .sb-footer-middle {
        grid-template-columns: 1fr;
    }

    .sb-hero-slide--split {
        text-align: center;
    }

    .sb-hero-slide--split p {
        margin-left: auto;
    }

    .sb-spark-grid {
        max-width: 420px;
        margin: 0 auto;
    }

    .sb-hero-cats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sb-product-row,
    .sb-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-home-best-sellers-grid,
    .sb-home-recommended-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-deals-carousel {
        grid-template-columns: none;
        grid-auto-columns: calc((100% - 24px) / 2);
    }

    .sb-rewards figure {
        display: none;
    }

    .sb-best-sellers-page {
        padding-top: 42px;
    }

    .sb-best-sellers-layout {
        grid-template-columns: 1fr;
    }

    .sb-best-filter-column {
        position: static;
    }

    .sb-filter-card {
        max-width: 420px;
    }

    .sb-best-results__count {
        justify-content: flex-start;
    }

    .sb-best-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-collection-hero-row {
        align-items: flex-start;
        flex-direction: column;
    }

    .sb-gift-grid--perfect,
    .sb-gift-grid--occasion {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sb-directory-grid,
    .sb-store-category-grid,
    .sb-account-layout {
        grid-template-columns: 1fr;
    }

    .sb-account-card {
        text-align: left;
    }
}

@media (max-width: 720px) {
    .sb-container {
        width: min(100% - 24px, var(--sb-container));
    }

    .sb-topbar {
        display: none;
    }

    body.admin-bar .sb-site-header {
        top: 0;
    }

    .sb-mainbar__inner {
        gap: 12px;
    }

    .sb-logo img {
        width: auto;
        height: 56px;
    }

    .sb-language-wrap,
    .sb-signin {
        display: none;
    }

    .sb-search {
        min-width: 0;
        min-height: 50px;
    }

    .sb-search select,
    .sb-search-tools {
        display: none;
    }

    .sb-search-submit {
        width: 52px;
    }

    .sb-discount-popup {
        padding: 16px;
    }

    .sb-discount-popup__dialog {
        grid-template-columns: 1fr;
        overflow-y: auto;
    }

    .sb-discount-popup__brand {
        display: none;
    }

    .sb-discount-popup__content {
        padding: 34px 24px;
    }

    .sb-discount-popup__content h2 {
        font-size: 30px;
    }

    .sb-hero {
        height: 610px;
    }

    .sb-hero__support {
        display: none;
    }

    .sb-hero__label {
        left: 16px;
        top: 18px;
    }

    .sb-hero__slides {
        width: min(100% - 28px, 1180px);
        height: calc(100% - 100px);
    }

    .sb-hero-slide h1 {
        font-size: 38px;
    }

    .sb-hero-slide h2 {
        font-size: 34px;
    }

    .sb-hero-slide p {
        font-size: 16px;
    }

    .sb-hero__arrow {
        display: none;
    }

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

    .sb-payment-strip__inner {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        gap: 8px;
    }

    .sb-payment-strip__inner div {
        gap: 8px;
    }

    .sb-trust__grid,
    .sb-category-grid,
    .sb-product-row,
    .sb-product-grid,
    .sb-home-best-sellers-grid,
    .sb-home-recommended-grid,
    .sb-product-grid--five,
    .sb-review-grid,
    .sb-reward-list,
    .sb-footer-grid {
        grid-template-columns: 1fr;
    }

    .sb-section,
    .sb-rewards,
    .sb-newsletter {
        padding: 64px 0;
    }

    .sb-deals-carousel {
        grid-template-columns: none;
        grid-auto-columns: 100%;
    }

    .sb-section-head,
    .sb-section-head--stacked {
        align-items: flex-start;
        flex-direction: column;
    }

    .sb-newsletter-form {
        flex-direction: column;
    }

    .sb-newsletter-form button {
        width: 100%;
    }

    .sb-footer-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .sb-assistant-button {
        right: 18px;
        bottom: 18px;
        width: 62px;
        height: 62px;
    }

    .sb-best-sellers-page {
        min-height: 760px;
        padding: 34px 0 58px;
    }

    .sb-breadcrumb {
        margin-bottom: 22px;
    }

    .sb-best-sellers-hero {
        margin-bottom: 28px;
    }

    .sb-best-sellers-hero h1 {
        font-size: 38px;
    }

    .sb-best-sellers-hero p {
        font-size: 16px;
    }

    .sb-filter-card {
        max-width: none;
    }

    .sb-empty-results {
        min-height: 300px;
    }

    .sb-best-product-grid {
        grid-template-columns: 1fr;
    }

    .sb-deals-countdown {
        width: 100%;
        white-space: normal;
    }

    .sb-gift-section h2 {
        font-size: 25px;
    }

    .sb-gift-grid--perfect,
    .sb-gift-grid--occasion {
        grid-template-columns: 1fr;
    }

    .sb-utility-page {
        min-height: 620px;
        padding: 34px 0 58px;
    }

    .sb-utility-hero {
        margin-bottom: 26px;
    }

    .sb-utility-hero--center {
        text-align: left;
    }

    .sb-utility-hero h1 {
        font-size: 34px;
    }

    .sb-utility-hero p {
        font-size: 16px;
    }

    .sb-directory-grid {
        gap: 18px;
    }

    .sb-directory-card header,
    .sb-directory-card li a {
        padding-inline: 16px;
    }

    .sb-store-hero {
        margin-top: -34px;
        padding: 38px 0;
    }

    .sb-store-category-grid {
        gap: 16px;
    }

    .sb-store-category-card {
        min-height: auto;
    }

    .sb-account-panel,
    .sb-woocommerce-panel {
        padding: 18px;
    }
}

@media (max-width: 900px) {
    .sb-v2-contact-grid,
    .sb-v2-delivery-grid,
    .sb-v2-form-row {
        grid-template-columns: 1fr;
    }

    .sb-v2-track-title {
        align-items: flex-start;
        flex-direction: column;
        gap: 22px;
    }

    .sb-v2-track-card {
        padding: 30px 22px;
    }
}

@media (max-width: 720px) {
    .sb-v2-page {
        padding: 36px 0 58px;
    }

    .sb-v2-hero {
        margin-bottom: 32px;
    }

    .sb-v2-hero h1,
    .sb-v2-track-title h1 {
        font-size: 36px;
    }

    .sb-v2-hero p,
    .sb-v2-section p,
    .sb-v2-section li,
    .sb-v2-info-card p {
        font-size: 15px;
    }

    .sb-v2-section h2,
    .sb-v2-faq-group h2 {
        align-items: flex-start;
        font-size: 21px;
    }

    .sb-v2-placeholder {
        white-space: normal;
    }

    .sb-v2-contact-form,
    .sb-v2-info-card,
    .sb-v2-signin-card {
        padding: 24px;
    }

    .sb-v2-info-card {
        flex-direction: column;
    }

    .sb-v2-track-hero {
        padding: 40px 0 80px;
    }

    .sb-v2-track-title > span {
        width: 86px;
        height: 86px;
        flex-basis: 86px;
    }

    .sb-v2-track-title > span .sb-icon {
        width: 42px;
        height: 42px;
    }

    .sb-v2-track-title p {
        font-size: 18px;
    }

    .sb-v2-track-card button {
        width: 100%;
        min-width: 0;
    }

    .sb-v2-orders-page {
        padding: 70px 16px;
    }

    .sb-v2-signin-card h1 {
        font-size: 28px;
    }

    .sb-v2-signin-card p {
        font-size: 18px;
    }
}
