:root {
    --black: #111111;
    --ink: #171717;
    --paper: #fff;
    --soft: #f5f3ee;
    --line: #deddd8;
    --yellow: #f9e45b;
    --pink: #ff8db7;
    --blue: #9de1ff;
    --purple: #d8c9ff;
    --coral: #ff806f;
    --green: #90e0b4;
    --radius: 28px;
    --shell: min(1440px, calc(100vw - 48px));
    --shadow: 0 22px 60px rgba(17, 17, 17, .10);
    --font-sans: "Nunito", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

    --z-header: 100;
    --z-dropdown: 200;
    --z-menu: 300;
    --z-drawer: 700;
    --z-modal: 800;
    --z-picker: 900;
    --z-popup: 1000;
    --z-loading: 1050;
    --z-toast: 9000;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 17px;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

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

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

button, input, select, textarea {
    font-family: var(--font-sans);
    font-size: 16px;
    font-weight: 600;
    color: inherit;
}

button {
    cursor: pointer;
}

p, li, dd, dt {
    font-weight: 500;
}

strong, b {
    font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-sans);
    font-weight: 900;
}

.rb-toast-container {
    z-index: var(--z-toast) !important;
}

@media (max-width: 1100px) {
    :root {
        --shell: min(100% - 32px, 1100px);
    }
}

@media (max-width: 760px) {
    :root {
        --shell: calc(100% - 28px);
        --radius: 20px;
    }

    html {
        font-size: 16px;
    }

    body {
        font-size: 16px;
        line-height: 1.58;
    }
}

.xs-accordion {
    margin-top: 22px;
    border-top: 1px solid var(--line);
}

.xs-accordion-button {
    width: 100%;
    border: 0;
    border-bottom: 1px solid var(--line);
    padding: 19px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    font-size: 17px;
    font-weight: 800;
    text-align: left;
}

.xs-accordion-button .xs-icon {
    width: 18px;
    transition: transform .2s;
}

.xs-accordion-button.xs-open .xs-icon {
    transform: rotate(45deg);
}

.xs-accordion-content {
    display: none;
    padding: 0 0 20px;
    color: #646460;
}

.xs-accordion-content.xs-open {
    display: block;
}

@media (max-width: 760px) {
    .xs-accordion-button {
        font-size: 16px;
    }
}

.xs-alert {
    position: relative;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px 52px 18px 18px;
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: var(--paper);
    color: var(--ink);
}

.xs-alert-icon {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    margin-top: 1px;
}

.xs-alert-body {
    min-width: 0;
}

.xs-alert-title {
    margin: 0 0 3px;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 900;
}

.xs-alert-text {
    margin: 0;
    color: #656560;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 600;
}

.xs-alert-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
    color: inherit;
}

.xs-alert-close:hover {
    background: rgba(17, 17, 17, .06);
}

.xs-alert-info {
    border-color: #8bcfe9;
    background: #eefaff;
}

.xs-alert-success {
    border-color: #74c99c;
    background: #effbf4;
}

.xs-alert-warning {
    border-color: #e1c94d;
    background: #fffbe8;
}

.xs-alert-danger {
    border-color: #ef9b8f;
    background: #fff1ef;
}

@media (max-width: 760px) {
    .xs-alert {
        border-radius: 16px;
        padding: 16px 48px 16px 16px;
    }
}

.xs-auth-page {
    background: #fff;
}

.xs-auth-card {
    width: 100%;
}

.xs-auth-layout {
    min-height: calc(100vh - 76px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

.xs-auth-form {
    width: 100%;
    max-width: 500px;
}

.xs-auth-card h1 {
    margin: 0 0 10px;
    font-size: 52px;
    line-height: 1;
    font-weight: 900;
    text-align: center;
}

.xs-auth-card > p {
    margin: 0;
    color: #666;
    font-size: 17px;
    font-weight: 500;
    text-align: center;
}

.xs-auth-links {
    margin-top: 18px;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.xs-auth-links a {
    text-decoration: underline;
    font-weight: 800;
}

@media (max-width: 760px) {
    .xs-auth-layout {
        min-height: auto;
        padding: 58px 20px 72px;
    }

    .xs-auth-card h1 {
        font-size: 44px;
    }
}

.xs-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border: 0;
    border-radius: 999px;
    color: var(--black);
    font-size: 11px;
    line-height: 1;
    font-weight: 900;
    vertical-align: middle;
    white-space: nowrap;
}

.xs-badge-primary {
    background: var(--purple);
}

.xs-badge-secondary {
    background: var(--soft);
}

.xs-badge-success {
    background: var(--green);
}

.xs-badge-info {
    background: var(--blue);
}

.xs-badge-warning {
    background: var(--yellow);
}

.xs-badge-danger {
    background: var(--pink);
}

.xs-badge-light {
    border: 1px solid var(--line);
    background: var(--paper);
}

.xs-badge-dark {
    background: var(--black);
    color: #fff;
}

.xs-badge-count {
    min-width: 30px;
    height: 30px;
    padding: 0 8px;
    font-size: 16px;
    vertical-align: top;
}

.xs-breadcrumbs {
    display: flex;
    gap: 10px;
    align-items: center;
    color: #71716d;
    margin: 28px 0;
    font-size: 13px;
    font-weight: 700;
}

.xs-breadcrumbs i {
    font-style: normal;
    color: #aaa;
}

.xs-breadcrumbs a:hover {
    text-decoration: underline;
}

.xs-button {
    border: 1.5px solid var(--black);
    min-height: 54px;
    padding: 0 26px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 18px;
    line-height: 1.2;
    font-weight: 800;
    background: transparent;
    transition: transform .2s, background .2s, color .2s;
}

.xs-button:hover {
    transform: translateY(-2px);
}

.xs-button:disabled {
    cursor: not-allowed;
    opacity: .65;
    transform: none;
}

.xs-button-outline {
    background: #fff;
}

.xs-button-dark {
    background: var(--black);
    color: #fff;
}

.xs-button-dark:hover {
    background: #303030;
}

.xs-button-light {
    background: #fff;
    color: var(--black);
    border-color: #fff;
}

.xs-button-wide {
    width: 100%;
}

.xs-button-small {
    min-height: 46px;
    padding: 0 20px;
    font-size: 16px;
}

.xs-button-grow {
    flex: 1;
}

@media (max-width: 760px) {
    .xs-button {
        min-height: 52px;
        padding-inline: 22px;
        font-size: 16px;
    }

    .xs-button-small {
        min-height: 46px;
        padding-inline: 18px;
        font-size: 15px;
    }
}

.xs-card {
    border-radius: var(--radius);
    background: var(--paper);
}

.xs-card-bordered {
    border: 1px solid var(--line);
}

.xs-card-soft {
    background: var(--soft);
}

.xs-card-shadow {
    box-shadow: var(--shadow);
}

.xs-card-header,
.xs-card-body,
.xs-card-footer {
    padding-inline: 24px;
}

.xs-card-header {
    padding-top: 24px;
    padding-bottom: 16px;
}

.xs-card-body {
    padding-top: 24px;
    padding-bottom: 24px;
}

.xs-card-header + .xs-card-body {
    padding-top: 0;
}

.xs-card-footer {
    padding-top: 16px;
    padding-bottom: 24px;
}

.xs-card-title {
    margin: 0;
    font-size: 22px;
    line-height: 1.2;
    font-weight: 900;
}

.xs-card-text {
    margin: 6px 0 0;
    color: #6f6f69;
    font-size: 15px;
    line-height: 1.55;
}

@media (max-width: 760px) {
    .xs-card-header,
    .xs-card-body,
    .xs-card-footer {
        padding-inline: 18px;
    }

    .xs-card-header {
        padding-top: 18px;
    }

    .xs-card-body {
        padding-top: 18px;
        padding-bottom: 18px;
    }

    .xs-card-footer {
        padding-bottom: 18px;
    }
}

.xs-carousel-arrow {
    position: absolute;
    top: 38%;
    z-index: 4;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .16);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .96);
    color: var(--black);
    transform: translateY(-50%);
    transition: background .2s, transform .2s, opacity .2s;
}

.xs-carousel-arrow svg {
    width: 19px;
    height: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.xs-carousel-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.xs-carousel-arrow--prev {
    left: 0;
}

.xs-carousel-arrow--next {
    right: 0;
}

.xs-carousel-arrow.slick-disabled {
    opacity: .35;
    cursor: default;
}

.xs-section-head.xs-related-head {
    display: block;
    width: 100%;
    text-align: center;
}

.xs-section-head.xs-related-head > div {
    width: 100%;
}

.xs-section-head.xs-related-head p {
    margin-left: auto;
    margin-right: auto;
}

.xs-related-slider {
    position: relative;
    margin: 0 -9px;
}

.xs-related-slider .slick-list {
    overflow: hidden;
}

.xs-related-slider .slick-slide {
    height: auto;
    padding: 0 9px;
}

.xs-related-slider .slick-track {
    display: flex;
}

.xs-check {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

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

.xs-check-mark {
    position: relative;
    width: 18px;
    height: 22px;
    flex: 0 0 22px;
    border: 1.5px solid #bdbdb7;
    border-radius: 7px;
    display: grid;
    place-items: center;
    background: #fff;
    transition: border-color .18s, background .18s, transform .18s;
}

.xs-check-mark::after {
    content: "";
    width: 9px;
    height: 5px;
    border-left: 2px solid #fff;
    border-bottom: 2px solid #fff;
    opacity: 0;
    transform: translateY(-1px) rotate(-45deg) scale(.7);
    transition: opacity .18s, transform .18s;
}

.xs-check-text {
    padding-top: 1px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.xs-check:hover .xs-check-mark {
    border-color: var(--black);
}

.xs-check input:checked + .xs-check-mark {
    border-color: var(--black);
    background: var(--black);
}

.xs-check input:checked + .xs-check-mark::after {
    opacity: 1;
    transform: translateY(-1px) rotate(-45deg) scale(1);
}

.xs-check input:focus-visible + .xs-check-mark {
    outline: 3px solid rgba(157, 225, 255, .75);
    outline-offset: 2px;
}

.xs-check input:disabled + .xs-check-mark,
.xs-check input:disabled ~ .xs-check-text {
    cursor: not-allowed;
    opacity: .5;
}

.xs-divider {
    width: 100%;
    height: 1px;
    border: 0;
    margin: 24px 0;
    background: var(--line);
}

.xs-divider-soft {
    background: rgba(17, 17, 17, .08);
}

.xs-divider-strong {
    background: var(--black);
}

.xs-divider-vertical {
    width: 1px;
    height: 24px;
    margin: 0 16px;
    flex: 0 0 1px;
}

.xs-divider-label {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #85857f;
    font-size: 12px;
    line-height: 1;
    font-weight: 800;
    text-transform: uppercase;
}

.xs-divider-label::before,
.xs-divider-label::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.xs-drawer-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(0, 0, 0, .34);
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s, visibility .25s;
}

.xs-drawer-backdrop.xs-active {
    opacity: 1;
    visibility: visible;
}

.xs-drawer {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1100;
    width: min(520px, 100%);
    height: 100vh;
    padding: 28px;
    overflow-y: auto;
    background: #fff;
    box-shadow: -18px 0 50px rgba(0, 0, 0, .14);
    transform: translateX(100%);
    transition: transform .3s ease;
}

.xs-drawer.xs-active {
    transform: translateX(0);
}

.xs-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.xs-drawer-head h2 {
    margin: 0;
    font-size: 30px;
    line-height: 1;
    font-weight: 900;
}

.xs-drawer-close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
}

@media (max-width: 760px) {
    .xs-drawer {
        width: 100%;
        padding: 22px 18px;
    }
}

.xs-dropdown {
    position: relative;
    display: inline-flex;
}

.xs-dropdown-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.xs-dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    z-index: var(--z-dropdown);
    min-width: 210px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: 16px;
    display: none;
    background: #fff;
    box-shadow: 0 18px 45px rgba(17, 17, 17, .12);
}

.xs-dropdown.xs-open > .xs-dropdown-menu {
    display: block;
}

.xs-dropdown-item {
    width: 100%;
    min-height: 42px;
    border: 0;
    border-radius: 10px;
    padding: 9px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.35;
    font-weight: 750;
    text-align: left;
}

.xs-dropdown-item:hover,
.xs-dropdown-item.xs-active,
.xs-dropdown-item.xs-selected {
    background: var(--soft);
}

.xs-dropdown-item-danger {
    color: #c4473a;
}

.xs-dropdown-divider {
    height: 1px;
    margin: 6px 4px;
    background: var(--line);
}

.xs-dropdown-select {
    display: block;
    width: 100%;
}

.xs-dropdown-select > .xs-dropdown-trigger {
    width: 100%;
    min-height: 55px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: #fff;
    color: var(--ink);
    font-size: 18px;
    font-weight: 800;
    text-align: left;
    justify-content: space-between;
}


.xs-dropdown-arrow {
    flex-shrink: 0;
    transition: transform .2s ease;
}

.xs-dropdown-select.xs-open .xs-dropdown-arrow {
    transform: rotate(180deg);
}

.xs-dropdown-select > .xs-dropdown-menu {
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    max-height: 320px;
    overflow-y: auto;
}

.xs-dropdown-select .xs-dropdown-item {
    min-height: 48px;
    font-size: 16px;
}

.xs-dropdown-select .xs-dropdown-item.xs-selected {
    font-weight: 900;
}

.xs-dropdown-left .xs-dropdown-menu {
    right: auto;
    left: 0;
}

.xs-editorial-card {
    position: relative;
    min-height: 490px;
    border-radius: var(--radius);
    overflow: hidden;
}

.xs-editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-editorial-card > span {
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 18px;
    border-radius: 18px;
    background: #fff;
}

.xs-editorial-card small {
    display: block;
    font-size: 11px;
    font-weight: 900;
}

.xs-editorial-card strong {
    display: block;
    margin: 7px 0;
    font-size: 20px;
    line-height: 1.15;
    font-weight: 900;
}

.xs-editorial-card em {
    color: #666;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 760px) {
    .xs-editorial-card {
        min-height: 440px;
    }
}

.xs-empty {
    min-height: 260px;
    padding: 48px 24px;
    border: 1px dashed #cecdc7;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #faf9f6;
    text-align: center;
}

.xs-empty-icon {
    width: 58px;
    height: 58px;
    margin-bottom: 18px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--yellow);
}

.xs-empty-title {
    margin: 0;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 900;
}

.xs-empty-text {
    max-width: 520px;
    margin: 9px 0 0;
    color: #73736d;
    font-size: 15px;
    line-height: 1.55;
    font-weight: 600;
}

.xs-empty-actions {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

@media (max-width: 760px) {
    .xs-empty {
        min-height: 220px;
        padding: 36px 18px;
    }

    .xs-empty-title {
        font-size: 21px;
    }
}

.xs-eyebrow {
    display: block;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 900;
}

@media (max-width: 760px) {
    .xs-eyebrow {
        font-size: 11px;
    }
}

.xs-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 32px 0;
}

.xs-filter-button {
    border: 1px solid var(--black);
    border-radius: 999px;
    padding: 10px 16px;
    background: #fff;
    font-size: 15px;
    font-weight: 700;
}

.xs-filter-button.xs-active,
.xs-filter-button:hover {
    background: var(--black);
    color: #fff;
}

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

.xs-form-full {
    grid-column: 1 / -1;
}

.xs-form-fields {
    display: grid;
    gap: 15px;
    margin: 30px 0 18px;
}

.xs-form-field {

}

.xs-form-label {
    font-size: 13px;
    font-weight: 800;
}

.xs-form-control {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #c9c9c5;
    border-radius: 10px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
}

.xs-form-field .xs-form-control {
    margin-top: 6px;
}

.xs-form-textarea {
    min-height: 140px;
    resize: vertical;
    line-height: 1.5;
}

@media (max-width: 760px) {
    .xs-form-grid {
        grid-template-columns: 1fr;
    }

    .xs-form-full {
        grid-column: auto;
    }
}

.xs-icon {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
}

.xs-icon-sm {
    width: 16px;
    height: 16px;
}

.xs-icon-md {
    width: 24px;
    height: 24px;
}

.xs-icon-lg {
    width: 28px;
    height: 28px;
}

.xs-icon-button {
    position: relative;
    border: 0;
    border-radius: 50%;
    padding: 10px;
    display: inline-grid;
    place-items: center;
    background: transparent;
}

.xs-icon-button:hover {
    background: var(--soft);
}

.xs-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid;
    font-size: 16px;
    font-weight: 800;
}

.xs-text-link-light {
    color: #fff;
}

.xs-load-more {
    max-width: 330px;
    margin: 60px auto 0;
    text-align: center;
}

.xs-load-more > span {
    color: #666;
    font-size: 13px;
    font-weight: 700;
}

.xs-load-more > div {
    height: 3px;
    margin: 12px 0 22px;
    background: #ddd;
}

.xs-load-more i {
    display: block;
    height: 100%;
    background: var(--black);
}

.xs-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(0, 0, 0, .48);
}

.xs-modal.xs-open {
    display: flex;
}

.xs-modal-dialog {
    width: 100%;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-radius: 24px;
    padding: 30px;
    background: #fff;
}

.xs-modal-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.xs-modal-head h2,
.xs-modal-head h3 {
    margin: 0;
    font-weight: 900;
}

.xs-modal-close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}

.xs-modal-actions {
    display: flex;
    justify-content: flex-end;
}

@media (max-width: 760px) {
    .xs-modal-dialog {
        padding: 24px 20px;
    }

    .xs-modal-actions {
        flex-direction: column-reverse;
    }

    .xs-modal-actions .xs-button {
        width: 100%;
    }
}

.xs-product-card {
    min-width: 0;
}

.xs-product-card-media {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(17, 17, 17, .08);
    border-radius: 24px;
    display: block;
    background: #eee;
}

.xs-product-card-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform .4s;
}

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

.xs-product-card-badge {
    position: absolute;
    z-index: 2;
    top: 14px;
    left: 14px;
    border-radius: 999px;
    padding: 7px 10px;
    background: #fff;
    font-size: 11px;
    font-weight: 900;
}

.xs-product-card-wish {
    position: absolute;
    z-index: 2;
    top: 12px;
    right: 12px;
    background: #fff;
}

.xs-product-card-body {
    padding: 15px 4px;
}

.xs-product-card-category {
    display: block;
    line-height: 1.2;
    font-size: 12px;
    font-weight: 900;
}

.xs-product-card-title {
    margin: 5px 0 10px;
    font-size: 17px;
    line-height: 1.35;
    font-weight: 800;
}

.xs-product-card-title a:hover {
    text-decoration: underline;
}

.xs-product-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 16px;
}

.xs-product-card-price {
    font-weight: 900;
}

.xs-product-card-add {
    width: 36px;
    height: 36px;
    border: 1px solid var(--black);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
}

.xs-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 34px 18px;
}

.xs-related-slider .xs-product-card,
.xs-home-collection-slider .xs-product-card {
    height: 100%;
}

@media (max-width: 1100px) {
    .xs-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .xs-product-card-category {
        font-size: 11px;
    }

    .xs-product-card-title {
        font-size: 16px;
        line-height: 1.32;
    }

    .xs-product-card-bottom {
        font-size: 15px;
    }

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

.xs-progress {
    width: 100%;
}

.xs-progress-track {
    position: relative;
    height: 10px;
    border-radius: 999px;
    overflow: hidden;
    background: #e9e8e3;
}

.xs-progress-bar {
    width: 0;
    height: 100%;
    border-radius: inherit;
    background: var(--black);
    transition: width .35s ease;
}

.xs-progress-meta {
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    color: #72726c;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
}

.xs-progress-yellow .xs-progress-bar {
    background: var(--yellow);
}

.xs-progress-green .xs-progress-bar {
    background: var(--green);
}

.xs-quantity {
    min-width: 120px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
}

.xs-quantity button {
    width: 38px;
    border: 0;
    display: grid;
    place-items: center;
    background: #fff;
}

.xs-quantity input {
    width: 42px;
    border: 0;
    background: #fff;
    font-weight: 800;
    text-align: center;
}

@media (max-width: 760px) {
    .xs-quantity {
        height: 48px;
        justify-content: space-between;
    }
}

.xs-radio {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}

.xs-radio input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.xs-radio-mark {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border: 1.5px solid #bdbdb7;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    transition: border-color .18s, background .18s;
}

.xs-radio-mark::after {
    content: "";
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--black);
    opacity: 0;
    transform: scale(.55);
    transition: opacity .18s, transform .18s;
}

.xs-radio-text {
    padding-top: 1px;
    font-size: 15px;
    line-height: 1.45;
    font-weight: 700;
}

.xs-radio:hover .xs-radio-mark {
    border-color: var(--black);
}

.xs-radio input:checked + .xs-radio-mark {
    border-color: var(--black);
}

.xs-radio input:checked + .xs-radio-mark::after {
    opacity: 1;
    transform: scale(1);
}

.xs-radio input:focus-visible + .xs-radio-mark {
    outline: 3px solid rgba(157, 225, 255, .75);
    outline-offset: 2px;
}

.xs-radio input:disabled + .xs-radio-mark,
.xs-radio input:disabled ~ .xs-radio-text {
    cursor: not-allowed;
    opacity: .5;
}

@keyframes xs-skeleton-shimmer {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(100%);
    }
}

.xs-skeleton {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    background: #ecebe7;
}

.xs-skeleton::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
    transform: translateX(-100%);
    animation: xs-skeleton-shimmer 1.3s infinite;
}

.xs-skeleton-text {
    width: 100%;
    height: 14px;
}

.xs-skeleton-title {
    width: 62%;
    height: 22px;
}

.xs-skeleton-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.xs-skeleton-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
}

.xs-skeleton-stack {
    display: grid;
    gap: 10px;
}

@media (prefers-reduced-motion: reduce) {
    .xs-skeleton::after {
        animation: none;
    }
}

.xs-steps {
    display: flex;
    align-items: flex-start;
}

.xs-step {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
}

.xs-step:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 17px;
    left: 42px;
    right: 14px;
    height: 2px;
    background: var(--line);
}

.xs-step-marker {
    position: relative;
    z-index: 1;
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    border: 1.5px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--paper);
    color: #7c7c76;
    font-size: 13px;
    line-height: 1;
    font-weight: 900;
}

.xs-step-content {
    min-width: 0;
    padding-top: 1px;
}

.xs-step-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
    font-weight: 900;
}

.xs-step-text {
    margin: 3px 0 0;
    color: #777771;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
}

.xs-step.xs-active .xs-step-marker {
    border-color: var(--black);
    background: var(--yellow);
    color: var(--black);
}

.xs-step.xs-complete .xs-step-marker {
    border-color: var(--black);
    background: var(--black);
    color: #fff;
}

.xs-step.xs-complete:not(:last-child)::after {
    background: var(--black);
}

.xs-steps-vertical {
    flex-direction: column;
    gap: 18px;
}

.xs-steps-vertical .xs-step {
    width: 100%;
}

.xs-steps-vertical .xs-step:not(:last-child)::after {
    top: 42px;
    right: auto;
    bottom: -12px;
    left: 17px;
    width: 2px;
    height: auto;
}

@media (max-width: 760px) {
    .xs-steps:not(.xs-steps-vertical) {
        overflow-x: auto;
        padding-bottom: 6px;
    }

    .xs-steps:not(.xs-steps-vertical) .xs-step {
        min-width: 170px;
    }
}

.xs-switch {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    user-select: none;
}

.xs-switch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.xs-switch-track {
    position: relative;
    width: 48px;
    height: 28px;
    flex: 0 0 48px;
    border: 1px solid #c7c7c1;
    border-radius: 999px;
    background: #e9e9e5;
    transition: border-color .2s, background .2s;
}

.xs-switch-track::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 2px 6px rgba(17, 17, 17, .15);
    transition: transform .2s;
}

.xs-switch-text {
    font-size: 15px;
    line-height: 1.4;
    font-weight: 800;
}

.xs-switch input:checked + .xs-switch-track {
    border-color: var(--black);
    background: var(--black);
}

.xs-switch input:checked + .xs-switch-track::after {
    transform: translateX(20px);
}

.xs-switch input:focus-visible + .xs-switch-track {
    outline: 3px solid rgba(157, 225, 255, .75);
    outline-offset: 2px;
}

.xs-switch input:disabled + .xs-switch-track,
.xs-switch input:disabled ~ .xs-switch-text {
    cursor: not-allowed;
    opacity: .5;
}

.xs-tabs {
    width: 100%;
}

.xs-tabs-nav {
    border-bottom: 1px solid var(--line);
    display: flex;
    align-items: flex-end;
    gap: 28px;
    overflow-x: auto;
    scrollbar-width: none;
}

.xs-tabs-nav::-webkit-scrollbar {
    display: none;
}

.xs-tabs-button {
    position: relative;
    border: 0;
    padding: 0 0 13px;
    flex: 0 0 auto;
    background: transparent;
    color: #777771;
    font-size: 16px;
    line-height: 1.3;
    font-weight: 800;
    white-space: nowrap;
}

.xs-tabs-button::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -1px;
    left: 0;
    height: 2px;
    background: var(--black);
    opacity: 0;
    transform: scaleX(.65);
    transition: opacity .2s, transform .2s;
}

.xs-tabs-button:hover {
    color: var(--black);
}

.xs-tabs-button.xs-active {
    color: var(--black);
}

.xs-tabs-button.xs-active::after {
    opacity: 1;
    transform: scaleX(1);
}

.xs-tabs-button:focus-visible {
    outline: 2px solid var(--black);
    outline-offset: 4px;
}

.xs-tabs-panel {
    padding-top: 24px;
}

.xs-tabs-panel[hidden] {
    display: none;
}

@media (max-width: 760px) {
    .xs-tabs-nav {
        gap: 22px;
    }

    .xs-tabs-button {
        padding-bottom: 11px;
        font-size: 15px;
    }

    .xs-tabs-panel {
        padding-top: 20px;
    }
}

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

.xs-toolbar-group,
.xs-toolbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.xs-toolbar-group {
    min-width: 0;
}

.xs-toolbar-actions {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.xs-toolbar-title {
    margin: 0;
    font-size: 18px;
    line-height: 1.3;
    font-weight: 900;
}

.xs-toolbar-text {
    color: #74746f;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .xs-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .xs-toolbar-actions {
        width: 100%;
        justify-content: flex-start;
    }
}

.xs-tooltip {
    position: relative;
}

.xs-tooltip::before,
.xs-tooltip::after {
    position: absolute;
    left: 50%;
    z-index: var(--z-popup);
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, 5px);
    transition: opacity .16s, transform .16s;
}

.xs-tooltip::before {
    content: "";
    bottom: calc(100% + 4px);
    border-width: 6px 6px 0;
    border-style: solid;
    border-color: var(--black) transparent transparent;
}

.xs-tooltip::after {
    content: attr(data-tooltip);
    bottom: calc(100% + 10px);
    max-width: 240px;
    padding: 8px 10px;
    border-radius: 9px;
    background: var(--black);
    color: #fff;
    font-size: 12px;
    line-height: 1.35;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 8px 24px rgba(17, 17, 17, .16);
}

.xs-tooltip:hover::before,
.xs-tooltip:hover::after,
.xs-tooltip:focus-visible::before,
.xs-tooltip:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.xs-tooltip-wrap::after {
    width: max-content;
    max-width: min(240px, 70vw);
    white-space: normal;
}

.xs-container {
    width: var(--shell);
    margin-inline: auto;
}

.xs-benefit-strip {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 30px 0;
}

.xs-benefit-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.xs-benefit-grid > div {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 0 28px;
    border-right: 1px solid var(--line);
}

.xs-benefit-grid > div:last-child {
    border-right: 0;
}

.xs-benefit-icon {
    width: 24px;
    flex: 0 0 24px;
    font-size: 22px;
    text-align: center;
}

.xs-benefit-grid strong {
    font-weight: 800;
}

.xs-benefit-grid span {
    display: block;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.xs-footer {
    padding: 78px 0 24px;
    background: var(--black);
    color: #fff;
}

.xs-footer-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr .7fr .7fr 1.3fr;
    gap: 48px;
}

.xs-footer-grid > div {
    min-width: 0;
}

.xs-footer-grid > div:nth-child(n + 2) {
    position: relative;
}

.xs-footer-grid > div:nth-child(n + 2)::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: -24px;
    width: 1px;
    background: rgba(255, 255, 255, .09);
    content: "";
}

.xs-footer-brand-column {
    min-width: 0;
}

.xs-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: #fff;
    font-size: 22px;
    font-weight: 1000;
}

.xs-footer-brand-mark {
    position: relative;
    width: 25px;
    height: 25px;
    border: 7px solid currentColor;
    border-radius: 50%;
}

.xs-footer-brand-mark::after {
    content: "";
    position: absolute;
    top: -7px;
    right: -9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
}

.xs-footer-brand-column p,
.xs-footer-newsletter p {
    max-width: 280px;
    color: #bdbdbd;
    font-size: 15px;
    font-weight: 500;
}

.xs-footer-brand-column > p {
    margin: 18px 0;
}

.xs-socials {
    display: flex;
    gap: 8px;
}

.xs-socials a {
    width: 36px;
    height: 36px;
    border: 1px solid #444;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 800;
}

.xs-socials a i {
    font-size: 17px;
}

.xs-footer-grid h3 {
    margin: 0 0 22px;
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
}

.xs-footer-grid > div > a:not(.xs-footer-brand) {
    position: relative;
    width: fit-content;
    margin: 10px 0;
    display: block;
    color: #cfcfcf;
    font-size: 15px;
    font-weight: 600;
    transition: color .2s ease;
}

.xs-footer-grid > div > a:not(.xs-footer-brand)::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 1px;
    background: var(--coral);
    transition: width .25s ease;
}

.xs-footer-grid > div > a:not(.xs-footer-brand):hover,
.xs-footer-grid > div > a:not(.xs-footer-brand):focus-visible {
    color: #fff;
}

.xs-footer-grid > div > a:not(.xs-footer-brand):hover::after,
.xs-footer-grid > div > a:not(.xs-footer-brand):focus-visible::after {
    width: 100%;
}

.xs-footer-newsletter {
    min-width: 0;
}

.xs-newsletter {
    width: 100%;
    max-width: 100%;
    margin: 18px 0 10px;
    padding: 5px;
    overflow: hidden;
    border-radius: 999px;
    display: flex;
    background: #fff;
    box-sizing: border-box;
}

.xs-newsletter input {
    width: 0;
    min-width: 0;
    flex: 1 1 auto;
    border: 0;
    outline: 0;
    padding: 0 13px;
    background: #fff;
    color: #171717;
    box-sizing: border-box;
}

.xs-newsletter input::placeholder {
    color: #777;
    opacity: 1;
}

.xs-newsletter button {
    flex: 0 0 auto;
    border: 0;
    border-radius: 999px;
    padding: 11px 18px;
    background: var(--yellow);
    font-weight: 900;
}

.xs-footer-newsletter small {
    color: #777;
}

.xs-footer-bottom {
    margin-top: 55px;
    border-top: 1px solid #333;
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    color: #8f8f8f;
    font-size: 13px;
    font-weight: 600;
}

@media (max-width: 1100px) {
    .xs-benefit-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .xs-benefit-grid > div:nth-child(2) {
        border-right: 0;
    }

    .xs-footer-grid {
        grid-template-columns: 1.2fr repeat(3, 1fr);
    }

    .xs-footer-newsletter {
        grid-column: 1 / -1;
    }

    .xs-footer-newsletter::before {
        display: none;
    }
}

@media (max-width: 760px) {
    .xs-benefit-grid {
        grid-template-columns: 1fr;
    }

    .xs-benefit-grid > div {
        border-right: 0;
        padding: 12px 5px;
    }

    .xs-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .xs-footer-grid > div:nth-child(n + 2) {
        padding-top: 35px;
        border-top: 1px solid rgba(255, 255, 255, .09);
    }

    .xs-footer-grid > div:nth-child(n + 2)::before {
        display: none;
    }

    .xs-footer-brand-column,
    .xs-footer-newsletter {
        grid-column: 1 / -1;
    }

    .xs-footer-brand {
        font-size: 19px;
    }

    .xs-footer-brand-mark {
        width: 21px;
        height: 21px;
        border-width: 6px;
    }

    .xs-footer-grid > div > a:not(.xs-footer-brand) {
        font-size: 14px;
    }

    .xs-footer-bottom {
        flex-direction: column;
        gap: 7px;
    }
}

.xs-notice {
    height: 34px;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    background: var(--black);
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.xs-notice a {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: underline;
}

.xs-notice-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #fff;
}

.xs-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(17, 17, 17, .08);
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(14px);
}

.xs-header-inner {
    height: 76px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 38px;
}

.xs-header-brand {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-size: 22px;
    font-weight: 1000;
}

.xs-main-nav {
    justify-self: center;
    align-self: stretch;
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 18px;
    font-weight: 800;
}

.xs-main-nav-item {
    position: static;
    height: 100%;
    display: flex;
    align-items: center;
}

.xs-main-nav-link {
    position: relative;
    height: 100%;
    padding: 0;
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1.2;
}

.xs-main-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 14px;
    height: 2px;
    background: var(--black);
    transition: right .25s;
}

.xs-main-nav-link:hover::after,
.xs-main-nav-item:hover > .xs-main-nav-link::after,
.xs-main-nav-item:focus-within > .xs-main-nav-link::after,
.xs-main-nav-link.xs-active::after,
.xs-main-nav-link[aria-current="page"]::after {
    right: 0;
}

.xs-main-nav-item--featured > .xs-main-nav-link > span {
    color: var(--coral);
}

.xs-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 4px;
}

.xs-count {
    position: absolute;
    top: 2px;
    right: 3px;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--coral);
    font-size: 11px;
    font-weight: 900;
}

.xs-mobile-menu-toggle,
.xs-mobile-drawer,
.xs-mobile-bottom-nav {
    display: none;
}

.xs-mobile-menu-icon--close {
    display: none;
}

.xs-mobile-menu-toggle.xs-open .xs-mobile-menu-icon--open {
    display: none;
}

.xs-mobile-menu-toggle.xs-open .xs-mobile-menu-icon--close {
    display: block;
}

.xs-search-panel-body {
    padding-top: 26px;
}

.xs-search-field {
    min-height: 56px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
}

.xs-search-field:focus-within {
    border-color: var(--black);
}

.xs-search-field .xs-header-icon {
    flex: 0 0 auto;
}

.xs-search-field input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 18px;
    font-weight: 700;
}

body.xs-search-open {
    overflow: hidden;
}

.xs-mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 70;
    padding: 0 0 22px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 22px 45px rgba(17, 17, 17, .12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity .18s ease, transform .18s ease, visibility .18s;
}

.xs-main-nav-item:hover > .xs-mega-menu,
.xs-main-nav-item:focus-within > .xs-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.xs-mega-menu-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(480px, .8fr);
    gap: 30px;
    padding-top: 30px;
}

.xs-mega-menu-links {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    padding: 10px 0 16px;
}

.xs-mega-menu-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
}

.xs-mega-menu-column h3 {
    margin: 0 0 9px;
    color: var(--ink);
    font-size: 14px;
    line-height: 1.2;
    font-weight: 900;
}

.xs-mega-menu-column a {
    position: relative;
    padding: 0;
    color: #5f5e5a;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 600;
}

.xs-mega-menu-column a:hover {
    color: var(--ink);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.xs-mega-menu-promos {
    align-self: start;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.xs-mega-menu-promos.xs-mega-menu-promos--slider {
    position: relative;
    display: block;
}

.xs-mega-menu-promos--slider .slick-list {
    margin: 0 -8px;
    overflow: hidden;
}

.xs-mega-menu-promos--slider .slick-track {
    display: flex;
}

.xs-mega-menu-promos--slider .slick-slide {
    height: auto;
    margin: 0 8px;
}

.xs-mega-menu-promo-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .94);
    color: var(--black);
    box-shadow: 0 4px 16px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.xs-mega-menu-promo-arrow--prev {
    left: -20px;
}

.xs-mega-menu-promo-arrow--next {
    right: -20px;
}

.xs-mega-menu-promo-arrow:hover {
    background: #fff;
}

.xs-mega-menu-promo {
    position: relative;
    width: 100%;
    min-height: 0;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 1 / 1;
    background: var(--soft);
    color: #fff;
}

.xs-mega-menu-promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.xs-mega-menu-promo::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, rgba(0, 0, 0, .02) 28%, rgba(0, 0, 0, .72) 100%);
}

.xs-mega-menu-promo:hover img {
    transform: scale(1.035);
}

.xs-mega-menu-promo-copy {
    position: absolute;
    z-index: 2;
    left: 18px;
    right: 18px;
    bottom: 17px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.xs-mega-menu-promo-copy small {
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.xs-mega-menu-promo-copy strong {
    margin-top: 4px;
    color: #fff;
    font-size: 20px;
    line-height: 1.08;
    font-weight: 900;
}

.xs-mega-menu-promo-copy em {
    margin-top: 5px;
    color: rgba(255, 255, 255, .85);
    font-size: 12px;
    line-height: 1.35;
    font-style: normal;
    font-weight: 600;
}

.xs-mega-menu-promo-copy b {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}

.xs-mobile-drawer-head {
    font-size: 14px;
    font-weight: 900;
}

.xs-mobile-nav-group {
    border-bottom: 1px solid var(--line);
}

.xs-mobile-nav-row {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

.xs-mobile-drawer .xs-mobile-nav-row > a {
    padding: 13px 0;
    font-size: 27px;
    font-weight: 900;
}

.xs-mobile-nav-toggle {
    width: 45px;
    height: 45px;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: transparent;
}

.xs-mobile-nav-toggle::before {
    content: "+";
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
}

.xs-mobile-nav-toggle[aria-expanded="true"]::before {
    content: "−";
}

.xs-mobile-nav-toggle:hover {
    background: var(--soft);
}

.xs-mobile-nav-submenu {
    display: none;
    padding: 0 0 15px 15px;
}

.xs-mobile-nav-submenu.xs-open {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px 18px;
}

.xs-mobile-drawer .xs-mobile-nav-submenu a {
    padding: 6px 0;
    color: #666;
    font-size: 16px;
    line-height: 1.35;
    font-weight: 700;
}

.xs-mobile-nav-utility {
    padding: 22px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
}

.xs-mobile-drawer .xs-mobile-nav-utility a {
    padding: 0;
    font-size: 15px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

.xs-mobile-menu-promo {
    position: relative;
    min-height: 170px;
    margin-top: 10px;
    overflow: hidden;
    border-radius: 18px;
    display: block;
    color: #fff;
}

.xs-mobile-menu-promo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-mobile-menu-promo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, .68));
}

.xs-mobile-menu-promo span {
    position: absolute;
    z-index: 1;
    left: 18px;
    right: 18px;
    bottom: 15px;
    display: flex;
    flex-direction: column;
}

.xs-mobile-menu-promo small {
    font-size: 10px;
    font-weight: 900;
}

.xs-mobile-menu-promo strong {
    font-size: 23px;
    line-height: 1.1;
    font-weight: 900;
}

.xs-mobile-menu-promo em {
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
}

@media (max-width: 1380px) and (min-width: 1221px) {
    .xs-mega-menu-inner {
        grid-template-columns: minmax(0, 1.15fr) minmax(420px, .85fr);
        gap: 24px;
    }

    .xs-mega-menu-links {
        gap: 18px;
    }

    .xs-mega-menu-promo-copy em {
        display: none;
    }
}

@media (min-width: 1221px) {
    .xs-main-nav-item > .xs-mega-menu::after {
        content: "";
        position: absolute;
        top: -16px;
        left: 0;
        right: 0;
        height: 16px;
    }
}

@media (max-width: 1220px) {
    .xs-main-nav,
    .xs-mega-menu {
        display: none;
    }

    .xs-mobile-menu-toggle {
        display: grid;
    }

    .xs-header-inner {
        grid-template-columns: auto auto 1fr;
    }

    .xs-mobile-drawer {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        z-index: 110;
        width: min(420px, calc(100vw - 48px));
        overflow-y: auto;
        overscroll-behavior: contain;
        padding: 25px;
        display: block;
        visibility: hidden;
        pointer-events: none;
        background: #fff;
        box-shadow: var(--shadow);
        transform: translateX(-100%);
        transition: transform .28s ease, visibility .28s ease;
        will-change: transform;
    }

    .xs-mobile-drawer.xs-open {
        visibility: visible;
        pointer-events: auto;
        transform: translateX(0);
    }

    .xs-mobile-drawer-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .xs-mobile-drawer nav {
        margin-top: 25px;
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 760px) {
    .xs-notice {
        justify-content: center;
        overflow: hidden;
        white-space: nowrap;
        font-size: 12px;
    }

    body {
        padding-bottom: calc(66px + env(safe-area-inset-bottom));
    }

    .xs-header-inner {
        height: 64px;
        grid-template-columns: 1fr auto;
        gap: 10px;
    }

    .xs-header-inner > .xs-mobile-menu-toggle {
        display: none;
    }

    .xs-header-brand {
        justify-self: start;
        font-size: 19px;
    }

    .xs-header-actions {
        justify-self: end;
    }

    .xs-header-actions > :not(.xs-search-toggle) {
        display: none;
    }

    .xs-mobile-bottom-nav {
        position: fixed;
        right: 0;
        bottom: 0;
        left: 0;
        z-index: 120;
        min-height: 66px;
        padding: 6px 8px max(6px, env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        align-items: center;
        border-top: 1px solid rgba(17, 17, 17, .1);
        background: rgba(255, 255, 255, .97);
        backdrop-filter: blur(14px);
    }

    .xs-mobile-bottom-nav-item {
        position: relative;
        min-width: 0;
        min-height: 54px;
        border: 0;
        display: grid;
        place-items: center;
        background: transparent;
        color: var(--black);
    }

    .xs-mobile-bottom-nav-item .xs-header-icon {
        width: 28px;
        height: 28px;
    }

    .xs-mobile-bottom-nav-item--menu .xs-header-icon {
        width: 30px;
        height: 30px;
    }

    .xs-mobile-bottom-nav .xs-count {
        top: 1px;
        right: auto;
        left: calc(50% + 7px);
        width: 20px;
        height: 20px;
        color: #fff;
        font-size: 11px;
    }

    .xs-mobile-drawer {
        bottom: calc(66px + env(safe-area-inset-bottom));
        width: calc(100vw - 24px);
        padding: 20px;
    }

    .xs-mobile-drawer .xs-mobile-nav-row > a {
        padding: 11px 0;
        font-size: 20px;
    }

    .xs-mobile-nav-submenu.xs-open {
        grid-template-columns: 1fr;
    }

    .xs-mobile-menu-promo {
        min-height: 145px;
    }
}

.xs-hero-title {
    font-size: clamp(64px, 7.2vw, 124px);
    line-height: .88;
    font-weight: 1000;
}

.xs-image-hero {
    position: relative;
    min-height: 650px;
    overflow: hidden;
}

.xs-image-hero > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 760px) {
    .xs-hero-title {
        font-size: 58px;
    }

    .xs-image-hero {
        min-height: 680px;
    }

    .xs-image-hero > img {
        object-position: 62%;
    }
}

.xs-section {
    padding: 112px 0;
}

.xs-section-compact {
    padding: 80px 0;
}

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

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

.xs-section-head h2 {
    margin: 10px 0 0;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: .98;
    font-weight: 900;
}

.xs-section-head p {
    max-width: 580px;
    margin: 14px 0 0;
    color: #5f5e5a;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

@media (max-width: 760px) {
    .xs-section {
        padding: 75px 0;
    }

    .xs-section-head {
        align-items: start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .xs-section-head h2 {
        font-size: 42px;
    }

    .xs-section-head p {
        font-size: 17px;
    }
}

.xs-not-found {
    min-height: clamp(620px, 76vh, 840px);
    padding: 96px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--yellow);
}

.xs-not-found-inner {
    width: min(760px, 100%);
    text-align: center;
}

.xs-not-found-inner h1 {
    margin: 0;
    font-size: clamp(48px, 7vw, 88px);
    line-height: .98;
    font-weight: 1000;
}

.xs-not-found-inner p {
    max-width: 560px;
    margin: 26px auto 0;
    color: rgba(17, 17, 17, .68);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 600;
}

.xs-not-found-actions {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.xs-not-found-button {
    min-height: 54px;
    padding: 0 28px;
    border: 1.5px solid var(--black);
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--black);
    color: #fff;
    font-size: 17px;
    line-height: 1.2;
    font-weight: 900;
    transition: transform .2s, background .2s;
}

.xs-not-found-button:hover {
    background: #303030;
    transform: translateY(-2px);
}

@media (max-width: 760px) {
    .xs-not-found {
        min-height: 600px;
        padding: 72px 18px;
    }

    .xs-not-found-inner {
        width: min(100%, 560px);
    }

    .xs-not-found-inner h1 {
        font-size: 48px;
    }

    .xs-not-found-inner p {
        margin-top: 20px;
        font-size: 16px;
    }

    .xs-not-found-actions {
        margin-top: 28px;
    }

    .xs-not-found-button {
        min-height: 52px;
        padding: 0 24px;
        font-size: 16px;
    }
}

.xs-about-page {

}

.xs-about-hero {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    align-items: center;
    background: var(--yellow);
}

.xs-about-hero > .xs-container {
    width: auto;
    padding: 8vw;
}

.xs-about-hero > img {
    width: 100%;
    height: 100%;
    min-height: 740px;
    object-fit: cover;
}

.xs-about-hero h1 {
    margin: 28px 0 32px;
}

.xs-about-hero p {
    max-width: 580px;
    font-size: 20px;
}

.xs-about-idea {
    display: grid;
    grid-template-columns: .25fr 1.1fr .8fr;
    gap: 50px;
    padding: 110px 10vw;
}

.xs-about-idea h2,
.xs-about-process h2,
.xs-about-cta h2 {
    margin: 10px 0 0;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: .98;
    font-weight: 900;
}

.xs-about-idea p {
    font-size: 19px;
    line-height: 1.75;
}

.xs-about-values {
    padding: 90px 0;
    background: var(--black);
    color: #fff;
}

.xs-about-values > .xs-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
}

.xs-about-values article {
    border-top: 1px solid #555;
    padding-top: 25px;
}

.xs-about-values h3 {
    margin: 20px 0 10px;
    font-size: 28px;
}

.xs-about-values p {
    color: #aaa;
}

.xs-about-process {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 8vw;
}

.xs-about-process img,
.xs-about-cta img {
    border-radius: var(--radius);
}

.xs-about-process-list {
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.xs-about-process-list li {
    display: flex;
    gap: 9px;
    padding: 9px 0;
}

.xs-about-impact {
    padding: 65px 0;
    background: var(--purple);
}

.xs-about-impact > .xs-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.xs-about-impact div div {
    border-right: 1px solid rgba(17, 17, 17, .2);
    padding: 0 30px;
}

.xs-about-impact strong {
    display: block;
    font-size: 48px;
    font-weight: 900;
}

.xs-about-impact span {
    font-size: 14px;
    font-weight: 700;
}

.xs-about-cta {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 8vw;
}

@media (max-width: 1100px) {
    .xs-about-idea {
        grid-template-columns: 1fr;
    }

    .xs-about-idea h2 {
        max-width: 800px;
    }
}

@media (max-width: 760px) {
    .xs-about-hero {
        grid-template-columns: 1fr;
    }

    .xs-about-hero > img {
        min-height: 480px;
    }

    .xs-about-idea {
        padding: 75px 14px;
    }

    .xs-about-idea h2,
    .xs-about-process h2,
    .xs-about-cta h2 {
        font-size: 42px;
    }

    .xs-about-process,
    .xs-about-cta {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .xs-about-values > .xs-container {
        grid-template-columns: 1fr;
    }

    .xs-about-impact > .xs-container {
        grid-template-columns: 1fr 1fr;
        gap: 25px;
    }

    .xs-about-impact div div {
        border-right: 0;
        padding: 0 10px;
    }
}

.xs-account-page {
    background: #fff;
}

.xs-account-layout {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 70px;
    padding: 65px 0 120px;
}

.xs-account-hero {
    padding: 75px 0;
    background: var(--blue);
}

.xs-account-hero h1 {
    margin: 10px 0;
    font-size: 72px;
}

.xs-account-nav {
    position: sticky;
    top: 130px;
    height: max-content;
    display: flex;
    flex-direction: column;
}

.xs-account-nav a {
    padding: 11px 0;
    color: #666;
    font-weight: 700;
}

.xs-account-nav a.xs-active {
    color: var(--black);
    font-weight: 900;
}

.xs-account-main h1 {
    font-weight: 900;
}

.xs-account-card {
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 30px;
}

.xs-account-welcome {
    display: grid;
    grid-template-columns: 1fr 260px;
    border: 0;
    padding: 0;
    overflow: hidden;
    background: var(--yellow);
}

.xs-account-welcome > div {
    padding: 40px;
}

.xs-account-welcome h2 {
    font-size: 42px;
    line-height: 1;
}

.xs-account-welcome img {
    height: 100%;
    object-fit: cover;
}

.xs-account-section {
    margin-top: 45px;
}

.xs-account-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xs-account-section-head h2 {
    font-size: 28px;
    font-weight: 900;
}

.xs-account-section-head a,
.xs-account-section-head button {
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    text-decoration: underline;
}

.xs-account-user-order-card {
    margin-top: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.xs-account-user-order-card > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
}

.xs-account-user-order-card > div:first-child {
    background: var(--soft);
}

.xs-account-user-order-card span {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.xs-account-user-order-card small {
    font-size: 10px;
    font-weight: 900;
}

.xs-account-user-order-images {
    display: flex;
}

.xs-account-user-order-images img {
    width: 58px;
    height: 58px;
    margin-right: 7px;
    border-radius: 10px;
    object-fit: cover;
}

.xs-account-page .xs-button-small {
    margin: 20px;
}

.xs-account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-top: 40px;
}

.xs-account-panel-hidden {
    display: none !important;
}

.xs-account-grid.xs-account-grid-single {
    grid-template-columns: 1fr;
}

.xs-account-password {
    max-width: 680px;
}

.xs-account-password h2 {
    margin: 0 0 8px;
    font-size: 28px;
    font-weight: 900;
}

.xs-account-password > p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

.xs-account-password-fields {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.xs-account-password-actions {
    margin-top: 22px;
}

.xs-account-password-actions .xs-button {
    min-width: 220px;
}

.xs-account-addresses-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.xs-account-addresses-head h2 {
    margin: 0;
    font-size: 28px;
    font-weight: 900;
}

.xs-account-address-list {
    margin-top: 18px;
}

.xs-account-address-item {
    padding: 24px 0;
    border-top: 1px solid var(--line);
}

.xs-account-address-item:first-child {
    padding-top: 20px;
}

.xs-account-address-item:last-child {
    padding-bottom: 0;
}

.xs-account-address-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

.xs-account-address-item-head h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.xs-account-address-default-badge {
    display: inline-flex;
    margin-top: 7px;
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--yellow);
    font-size: 10px;
    font-weight: 900;
}

.xs-account-address-edit {
    border: 0;
    padding: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    text-decoration: underline;
}

.xs-account-address-item p {
    margin: 0;
    line-height: 1.6;
}

.xs-account-address-contact {
    margin-top: 12px !important;
    color: #666;
    font-size: 14px;
}

.xs-account-address-empty {
    padding: 35px 0 10px;
    border-top: 1px solid var(--line);
    color: #666;
}

.xs-account-address-dialog {
    max-width: 760px;
}

#accountAddressModalTitle {
    font-size: 30px;
}

.xs-account-address-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.xs-account-address-field {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #c9c9c5;
    border-radius: 10px;
    padding: 14px 15px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
}

textarea.xs-account-address-field {
    min-height: 100px;
    max-width: 100%;
    resize: vertical;
}

.xs-account-address-field-full {
    grid-column: 1 / -1;
}

.xs-account-address-default {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
}

.xs-account-address-actions {
    gap: 12px;
    margin-top: 24px;
}

.xs-account-details p {
    margin-bottom: 0;
    line-height: 1.7;
}

.xs-account-details-display-name {
    color: #666;
}

.xs-account-details-dialog {
    max-width: 600px;
}

#accountDetailsModalTitle {
    font-size: 30px;
}

#accountAddressCloseButton,
#accountDetailsCloseButton {
    font-size: 18px;
}

.xs-account-details-fields {
    display: grid;
    gap: 16px;
}

.xs-account-details-field {
    width: 100%;
    margin-top: 6px;
    border: 1px solid #c9c9c5;
    border-radius: 10px;
    padding: 14px 15px;
    background: #fff;
    font-size: 16px;
    font-weight: 600;
}

.xs-account-details-actions {
    gap: 12px;
    margin-top: 24px;
}

@media (max-width: 760px) {
    .xs-account-layout {
        grid-template-columns: 1fr;
    }

    .xs-account-nav {
        position: static;
        display: flex;
        flex-direction: row;
        gap: 18px;
        overflow: auto;
        border-bottom: 1px solid var(--line);
    }

    .xs-account-nav a {
        white-space: nowrap;
    }

    .xs-account-welcome {
        grid-template-columns: 1fr;
    }

    .xs-account-welcome img {
        width: 100%;
        height: 260px;
    }

    .xs-account-user-order-card > div:first-child {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .xs-account-grid {
        grid-template-columns: 1fr;
    }

    .xs-account-addresses-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .xs-account-address-fields {
        grid-template-columns: 1fr;
    }

    .xs-account-address-field-full,
    .xs-account-address-default {
        grid-column: auto;
    }
}

.xs-blog-detail-page {

}

.xs-blog-detail-article {

}

.xs-blog-detail-header {
    padding: 75px 12vw;
}

.xs-blog-detail-header h1 {
    max-width: 1100px;
    margin: 20px 0;
    font-size: clamp(54px, 7vw, 100px);
    line-height: .95;
}

.xs-blog-detail-header > p {
    max-width: 760px;
    font-size: 22px;
}

.xs-blog-detail-byline {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 30px;
}

.xs-blog-detail-avatar {
    display: grid;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--yellow);
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.xs-blog-detail-byline > span:last-child {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.xs-blog-detail-byline em {
    color: #666;
    font-style: normal;
}

.xs-blog-detail-hero {
    width: var(--shell);
    max-height: 800px;
    margin: auto;
    border-radius: var(--radius);
    object-fit: cover;
}

.xs-blog-detail-content {
    max-width: 760px;
    margin: 75px auto;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.78;
}

.xs-blog-detail-intro {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.55;
}

.xs-blog-detail-content h2 {
    margin-top: 60px;
    font-size: 42px;
    line-height: 1.05;
}

.xs-blog-detail-content h3 {
    font-size: 28px;
}

.xs-blog-detail-content blockquote {
    margin: 55px 0;
    padding-left: 30px;
    border-left: 7px solid var(--yellow);
    font-family: Georgia, serif;
    font-size: 36px;
    line-height: 1.4;
}

.xs-blog-detail-content figure {
    margin: 55px -130px;
}

.xs-blog-detail-content figure img {
    border-radius: 24px;
}

.xs-blog-detail-content figcaption {
    margin-top: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 600;
}

.xs-blog-detail-share {
    display: flex;
    justify-content: space-between;
    max-width: 760px;
    margin: 0 auto 90px;
    padding-top: 25px;
    border-top: 1px solid var(--line);
}

.xs-blog-detail-share button {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
}

.xs-blog-detail-related-list {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 18px;
}

@media (max-width: 760px) {
    .xs-blog-detail-header {
        padding: 55px 14px;
    }

    .xs-blog-detail-header h1 {
        font-size: 50px;
    }

    .xs-blog-detail-hero {
        width: calc(100% - 28px);
    }

    .xs-blog-detail-content {
        padding: 0 18px;
        font-size: 17px;
        line-height: 1.72;
    }

    .xs-blog-detail-intro {
        font-size: 21px;
    }

    .xs-blog-detail-content blockquote {
        font-size: 27px;
    }

    .xs-blog-detail-content figure {
        margin: 40px 0;
    }

    .xs-blog-detail-related-list {
        grid-template-columns: 1fr;
    }
}

.xs-blog-page {

}

.xs-blog-content {
    padding: 70px 0 110px;
}

.xs-blog-hero {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    background: var(--yellow);
}

.xs-blog-hero > div {
    padding: 8vw;
}

.xs-blog-hero > img {
    width: 100%;
    height: 100%;
    min-height: 680px;
    object-fit: cover;
}

.xs-blog-hero h1 {
    margin: 28px 0 32px;
}

.xs-blog-hero p {
    max-width: 500px;
    font-size: 18px;
}

.xs-blog-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px 22px;
}

.xs-blog-card > a img {
    width: 100%;
    aspect-ratio: 1.45 / 1;
    border-radius: 24px;
    object-fit: cover;
}

.xs-blog-card > div {
    padding: 18px 5px;
}

.xs-blog-card h2 {
    margin: 10px 0;
    font-size: 30px;
    line-height: 1.05;
    font-weight: 800;
}

.xs-blog-card p {
    color: #666;
}

@media (max-width: 760px) {
    .xs-blog-hero {
        grid-template-columns: 1fr;
    }

    .xs-blog-hero > img {
        min-height: 480px;
    }

    .xs-blog-list {
        grid-template-columns: 1fr;
    }
}

.xs-cart-page {

}

.xs-cart-content {
    padding-bottom: 100px;
}

.xs-cart-body {
    display: grid;
    grid-template-columns: 1.4fr .6fr;
    align-items: start;
    gap: 70px;
}

.xs-cart-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 45px 0;
}

.xs-cart-header h1 {
    margin: 12px 0;
    font-size: 68px;
    line-height: .95;
}

.xs-cart-shipping-progress {
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 16px;
    background: var(--soft);
}

.xs-cart-shipping-progress > div {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 700;
}

.xs-cart-shipping-progress > i {
    display: block;
    height: 7px;
    margin-top: 12px;
    overflow: hidden;
    border-radius: 99px;
    background: #ddd;
}

.xs-cart-shipping-progress b {
    display: block;
    height: 100%;
    background: var(--green);
}

.xs-cart-item {
    display: grid;
    grid-template-columns: 140px 1fr auto auto;
    align-items: center;
    gap: 22px;
    padding: 24px 0;
    border-bottom: 1px solid var(--line);
}

.xs-cart-item > img {
    width: 140px;
    border: 1px solid var(--line);
    border-radius: 18px;
}

.xs-cart-item h3 {
    margin: 5px 0;
    font-size: 20px;
    font-weight: 800;
}

.xs-cart-item p {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.xs-cart-remove {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 15px;
    font-weight: 800;
    text-decoration: underline;
}

.xs-cart-promo {
    margin-top: 25px;
}

.xs-cart-promo label {
    font-weight: 800;
}

.xs-cart-promo > div {
    display: flex;
    max-width: 430px;
    margin-top: 9px;
}

.xs-cart-promo input {
    flex: 1;
    padding: 13px 17px;
    border: 1px solid var(--line);
    border-radius: 999px 0 0 999px;
}

.xs-cart-promo button {
    padding: 0 20px;
    border: 1px solid var(--black);
    border-radius: 0 999px 999px 0;
    background: var(--black);
    color: #fff;
    font-weight: 800;
}

.xs-cart-summary {
    position: sticky;
    top: 125px;
    padding: 30px;
    border-radius: 24px;
    background: var(--soft);
}

.xs-cart-summary h2 {
    margin-top: 0;
    font-size: 28px;
    font-weight: 900;
}

.xs-cart-summary dl {
    margin: 0;
}

.xs-cart-summary dl > div {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
}

.xs-cart-summary .xs-cart-total {
    margin-top: 8px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
    font-size: 20px;
    font-weight: 900;
}

.xs-cart-summary > p {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 13px;
    font-weight: 600;
}

.xs-cart-payment-logos {
    display: flex;
    gap: 6px;
}

.xs-cart-payment-logos span {
    padding: 5px 7px;
    border: 1px solid #ccc;
    border-radius: 5px;
    background: #fff;
    font-size: 10px;
    font-weight: 800;
}

@media (max-width: 760px) {
    .xs-cart-body {
        grid-template-columns: 1fr;
    }

    .xs-cart-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .xs-cart-header h1 {
        font-size: 50px;
    }

    .xs-cart-item {
        grid-template-columns: 90px 1fr auto;
    }

    .xs-cart-item > img {
        width: 90px;
    }

    .xs-cart-item .xs-quantity {
        grid-column: 2;
        max-width: 130px;
    }

    .xs-cart-summary {
        position: static;
    }
}

.xs-category-page {

}

.xs-category-hero {
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
}

.xs-category-intro {
    text-align: center;
}

.xs-category-intro > div {
    max-width: 860px;
    margin: 0 auto;
}

.xs-category-intro h1 {
    margin: 0;
    font-size: 48px;
    line-height: 1;
    font-weight: 900;
}

.xs-category-intro > div > p {
    margin: 16px 0 0;
    color: #5f5e5a;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.xs-category-breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 0 0 18px;
    color: #8a8985;
    font-size: 13px;
    font-weight: 700;
}

.xs-category-breadcrumbs i {
    color: #bbb;
    font-style: normal;
}

.xs-category-breadcrumbs a:hover {
    color: var(--black);
}

.xs-category-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.xs-category-toolbar > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.xs-category-toolbar span {
    color: #6d6d69;
    font-size: 14px;
    font-weight: 700;
}

.xs-category-filter-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 12px 20px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
}

.xs-category-filter-group {
    padding: 26px 0;
    border-bottom: 1px solid var(--line);
}

.xs-category-filter-group h3 {
    margin: 0 0 14px;
    font-size: 17px;
    font-weight: 900;
}

.xs-category-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.xs-category-filter-option {
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 14px;
    font-weight: 800;
}

.xs-category-filter-option.xs-active {
    border-color: var(--black);
    background: var(--black);
    color: #fff;
}

.xs-category-filter-panel-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 26px;
}

.xs-category-filter-clear,
.xs-category-filter-apply {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 900;
}

.xs-category-filter-clear {
    border: 1px solid var(--black);
    background: #fff;
    color: var(--black);
}

.xs-category-filter-apply {
    border: 1px solid var(--black);
    background: var(--black);
    color: #fff;
}

body.xs-category-filter-open {
    overflow: hidden;
}

.xs-category-comparison-callout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    align-items: center;
    gap: 8vw;
}

.xs-category-comparison-callout img {
    border-radius: var(--radius);
}

.xs-category-metric-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 35px;
}

.xs-category-metric-grid span {
    padding-top: 15px;
    border-top: 1px solid var(--line);
}

.xs-category-metric-grid strong {
    display: block;
    font-size: 28px;
}

.xs-category-metric-grid em {
    color: #666;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 760px) {
    .xs-category-intro h1 {
        font-size: 42px;
    }

    .xs-category-intro > div > p {
        font-size: 17px;
    }

    .xs-category-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .xs-category-toolbar > div:first-child span {
        display: none;
    }

    .xs-category-toolbar > div:last-child {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .xs-category-toolbar > div:last-child > .xs-icon-button {
        display: none;
    }

    .xs-category-filter-toggle {
        font-size: 15px;
    }

    .xs-category-comparison-callout {
        grid-template-columns: 1fr;
        gap: 45px;
    }
}

.xs-checkout-page {

}

.xs-checkout {

}

.xs-checkout-layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 100vh;
}

.xs-checkout-main {
    padding: 45px max(45px, 6vw);
}

.xs-checkout-summary {
    padding: 120px 6vw;
    border-left: 1px solid var(--line);
    background: var(--soft);
}

.xs-checkout-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 38px;
    font-size: 13px;
    font-weight: 800;
}

.xs-checkout-steps .xs-active {
    font-weight: 900;
}

.xs-checkout-step-divider {
    width: 35px;
    height: 1px;
    background: #ccc;
}

.xs-checkout-section {
    margin-bottom: 36px;
}

.xs-checkout-section h2 {
    margin: 0 0 16px;
    font-size: 22px;
}

.xs-checkout-section-header {
    display: flex;
    justify-content: space-between;
}

.xs-checkout-section-header h2 {
    font-weight: 900;
}

.xs-checkout-section-header a,
.xs-checkout-actions > a {
    font-size: 15px;
    font-weight: 800;
}

.xs-checkout-section-header a {
    text-decoration: underline;
}

.xs-checkout-newsletter {
    display: flex;
    gap: 8px;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 600;
}

.xs-checkout-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.xs-checkout-field-span-2 {
    grid-column: span 2;
}

.xs-checkout-shipping-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 8px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 12px;
}

.xs-checkout-shipping-option.xs-selected {
    border: 2px solid var(--black);
}

.xs-checkout-shipping-option span {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.xs-checkout-shipping-option strong {
    font-weight: 800;
}

.xs-checkout-shipping-option em {
    color: #666;
    font-size: 13px;
    font-style: normal;
    font-weight: 600;
}

.xs-checkout-payment-note {
    color: #666;
    font-size: 14px;
    font-weight: 500;
}

.xs-checkout-payment {
    display: grid;
    gap: 10px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 14px;
}

.xs-checkout-payment-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xs-checkout-payment-header > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.xs-checkout-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xs-checkout-summary-inner {
    position: sticky;
    top: 40px;
}

.xs-checkout-item {
    display: grid;
    grid-template-columns: 70px 1fr auto;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.xs-checkout-item > div {
    position: relative;
}

.xs-checkout-item img {
    width: 70px;
    border-radius: 12px;
}

.xs-checkout-item > div span {
    position: absolute;
    top: -7px;
    right: -5px;
    display: grid;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #777;
    color: #fff;
    font-size: 11px;
    font-weight: 900;
    place-items: center;
}

.xs-checkout-item p {
    display: flex;
    flex-direction: column;
    margin: 0;
    font-size: 14px;
    font-weight: 700;
}

.xs-checkout-item em {
    color: #666;
    font-size: 12px;
    font-style: normal;
    font-weight: 600;
}

.xs-checkout-discount {
    display: flex;
    margin: 30px 0 15px;
}

.xs-checkout-discount input {
    flex: 1;
    padding: 13px 17px;
    border: 1px solid var(--line);
    border-radius: 999px 0 0 999px;
}

.xs-checkout-discount button {
    padding: 0 20px;
    border: 1px solid var(--black);
    border-radius: 0 999px 999px 0;
    background: var(--black);
    color: #fff;
    font-weight: 800;
}

.xs-checkout-summary dl {
    margin: 0;
}

.xs-checkout-summary dl > div {
    display: flex;
    justify-content: space-between;
    padding: 11px 0;
}

.xs-checkout-summary .xs-checkout-total {
    margin-top: 8px;
    padding-top: 19px;
    border-top: 1px solid var(--line);
    font-size: 20px;
    font-weight: 900;
}

@media (max-width: 1100px) {
    .xs-checkout-layout {
        grid-template-columns: 1fr;
    }

    .xs-checkout-summary {
        padding-top: 55px;
        border-top: 1px solid var(--line);
        border-left: 0;
    }
}

@media (max-width: 760px) {
    .xs-checkout-main,
    .xs-checkout-summary {
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .xs-checkout-main {
        padding: 30px 18px;
    }

    .xs-checkout-summary {
        padding: 45px 18px;
    }

    .xs-checkout-steps {
        max-width: 100%;
        flex-wrap: wrap;
    }

    .xs-checkout-form-grid {
        grid-template-columns: 1fr;
    }

    .xs-checkout-field-span-2 {
        grid-column: span 1;
    }

    .xs-checkout-actions {
        flex-direction: column-reverse;
        align-items: stretch;
        gap: 20px;
    }
}

.xs-collection-page {

}

.xs-collection-hero {
    width: 100%;
    aspect-ratio: 3 / 1;
    overflow: hidden;
}

.xs-collection-hero img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-collection-section-head {
    margin-bottom: 45px;
}

.xs-collection-note {
    display: grid;
    grid-template-columns: .45fr 1.55fr;
    align-items: start;
    gap: 70px;
    padding: 68px 0;
    border-bottom: 1px solid var(--line);
}

.xs-collection-note h1 {
    margin: 0;
    font-size: clamp(36px, 3vw, 52px);
    line-height: 1;
    font-weight: 900;
}

.xs-collection-note > p {
    max-width: 980px;
    margin: 0;
    font-size: 32px;
    line-height: 1.35;
    font-weight: 700;
}

.xs-collection-editorial {
    display: grid;
    grid-template-columns: 1fr .8fr 1fr;
    background: var(--black);
    color: #fff;
}

.xs-collection-editorial > div {
    min-height: 620px;
}

.xs-collection-editorial img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-collection-editorial-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.xs-collection-editorial h2 {
    margin: 15px 0;
    font-size: 64px;
    line-height: .95;
}

.xs-collection-editorial p {
    color: #bbb;
}

@media (max-width: 1100px) {
    .xs-collection-editorial {
        grid-template-columns: 1fr 1fr;
    }

    .xs-collection-editorial-copy {
        grid-column: span 2;
        min-height: auto;
    }
}

@media (max-width: 760px) {
    .xs-collection-section-head {
        margin-bottom: 30px;
    }

    .xs-collection-note {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .xs-collection-note h1 {
        font-size: 42px;
    }

    .xs-collection-note > p {
        font-size: 25px;
    }

    .xs-collection-editorial {
        grid-template-columns: 1fr;
    }

    .xs-collection-editorial > div {
        min-height: auto;
    }

    .xs-collection-editorial img {
        height: 470px;
    }

    .xs-collection-editorial-copy {
        grid-column: auto;
    }
}

.xs-compare-page {

}

.xs-compare-layout {
    min-height: 75vh;
}

.xs-compare-table {
    border: 1px solid var(--line);
    border-radius: 22px;
    overflow: auto;
}

.xs-compare-row {
    display: grid;
    grid-template-columns: 200px repeat(3, 1fr);
    min-width: 900px;
    border-top: 1px solid var(--line);
}

.xs-compare-row:first-child {
    border: 0;
}

.xs-compare-row > strong,
.xs-compare-row > span {
    padding: 22px;
    border-right: 1px solid var(--line);
}

.xs-compare-row > span {
    display: flex;
    align-items: center;
    gap: 7px;
}

.xs-compare-row-products > div {
    padding: 18px;
    border-right: 1px solid var(--line);
}

.xs-compare-row-products img {
    border-radius: 18px;
}

.xs-compare-row-products h3 {
    font-size: 17px;
}

.xs-compare-row-products b,
.xs-compare-row-products a {
    display: flex;
    margin-top: 12px;
}

@media (max-width: 760px) {
    .xs-compare-row {
        grid-template-columns: 130px repeat(3, 230px);
    }
}

.xs-contact-page {

}

.xs-contact-layout {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10vw;
    padding: 60px 0 120px;
}

.xs-contact-layout h2 {
    margin: 10px 0 0;
    font-size: clamp(42px, 3.5vw, 72px);
    line-height: .98;
    font-weight: 900;
}

.xs-contact-hero {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    background: var(--purple);
}

.xs-contact-hero > div {
    padding: 8vw;
}

.xs-contact-hero > img {
    width: 100%;
    height: 100%;
    min-height: 650px;
    object-fit: cover;
}

.xs-contact-hero h1 {
    margin: 28px 0 32px;
}

.xs-contact-hero p {
    max-width: 580px;
    font-size: 20px;
}

.xs-contact-support-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.xs-contact-support-cards > a {
    display: grid;
    gap: 10px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: 20px;
    transition: .2s;
}

.xs-contact-support-cards > a:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.xs-contact-support-cards > a > svg:first-child {
    width: 28px;
}

.xs-contact-support-cards > a > svg:last-child {
    justify-self: end;
}

.xs-contact-support-cards strong {
    font-weight: 800;
}

.xs-contact-support-cards span {
    color: #666;
    font-size: 14px;
    font-weight: 600;
}

.xs-contact-meta {
    margin-top: 40px;
}

.xs-contact-meta > div {
    display: flex;
    gap: 13px;
    padding: 14px 0;
}

.xs-contact-meta span {
    display: flex;
    flex-direction: column;
}

.xs-contact-meta em {
    color: #666;
    font-style: normal;
}

.xs-contact-form {
    padding: 35px;
    border-radius: 24px;
    background: var(--soft);
}

.xs-contact-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.xs-contact-form-full {
    grid-column: span 2;
}

.xs-contact-form textarea.xs-form-control {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    resize: vertical;
}

.xs-contact-form .xs-button {
    margin-top: 16px;
}

@media (max-width: 1100px) {
    .xs-contact-support-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 760px) {
    .xs-contact-layout {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .xs-contact-layout h2 {
        font-size: 42px;
    }

    .xs-contact-hero {
        grid-template-columns: 1fr;
    }

    .xs-contact-hero > img {
        min-height: 480px;
    }

    .xs-contact-support-cards {
        grid-template-columns: 1fr;
    }
}

.xs-faq-page {

}

.xs-faq-content {
    padding: 50px 0;
}

.xs-faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 80px;
    margin-top: 45px;
}

.xs-faq-hero {
    padding: 100px 0;
    background: var(--yellow);
}

.xs-faq-hero h1 {
    margin: 28px 0 32px;
}

.xs-faq-search {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 600px;
    padding: 15px 20px;
    border-radius: 999px;
    background: #fff;
}

.xs-faq-search input {
    flex: 1;
    border: 0;
    outline: 0;
    font-size: 16px;
}

.xs-faq-layout > aside {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    height: max-content;
}

.xs-faq-layout > aside a {
    padding: 10px 0;
    color: #666;
}

.xs-faq-layout > aside .xs-active {
    color: var(--black);
    font-weight: 900;
}

.xs-faq-group {
    padding-bottom: 45px;
}

.xs-faq-group h2 {
    font-size: 38px;
}

.xs-faq-cta {
    padding: 65px 0;
    background: var(--black);
    color: #fff;
}

.xs-faq-cta > .xs-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.xs-faq-cta h2 {
    margin: 10px 0;
    font-size: clamp(42px, 4.4vw, 72px);
    line-height: .98;
    font-weight: 900;
}

.xs-faq-cta p {
    color: #aaa;
}

@media (max-width: 760px) {
    .xs-faq-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .xs-faq-layout > aside {
        position: static;
    }

    .xs-faq-cta > .xs-container {
        align-items: flex-start;
        flex-direction: column;
        gap: 20px;
    }

    .xs-faq-cta h2 {
        font-size: 42px;
    }
}

.xs-home-page {

}

.xs-home-hero-slider {
    position: relative;
    overflow: hidden;
}

.xs-home-hero-slider:not(.slick-initialized) .xs-home-hero:not(:first-child) {
    display: none;
}

.xs-home-hero-slider .slick-list {
    overflow: hidden;
}

.xs-home-hero-slider .slick-track {
    display: flex;
}

.xs-home-hero-slider .slick-slide {
    height: auto;
}

.xs-home-hero-arrow {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 48px;
    height: 48px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    color: var(--black);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.xs-home-hero-arrow-prev {
    left: 24px;
}

.xs-home-hero-arrow-next {
    right: 24px;
}

.xs-home-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 22px;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    transform: translateX(-50%);
}

.xs-home-hero-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .65);
    font-size: 0;
}

.xs-home-hero-dots .slick-active button {
    width: 24px;
    border-radius: 999px;
    background: #fff;
}

.xs-home-hero {
    position: relative;
    overflow: hidden;
}

.xs-home-hero-image {
    display: block;
    width: 100%;
    height: 740px;
    object-fit: cover;
}

.xs-home-hero-content {
    position: absolute;
    left: 50%;
    bottom: 70px;
    z-index: 1;
    width: var(--shell);
    padding-top: 0;
    transform: translateX(-50%);
}

.xs-home-hero h1 {
    margin: 0 0 20px;
    font-size: clamp(48px, 5.4vw, 92px);
    line-height: .95;
    font-weight: 1000;
    white-space: nowrap;
}

.xs-home-hero h1 em {
    font-family: var(--font-sans);
    font-weight: 700;
    font-style: italic;
}

.xs-home-hero p {
    max-width: none;
    margin: 0 0 24px;
    font-size: 21px;
    font-weight: 600;
    line-height: 1.4;
    white-space: nowrap;
}

.xs-button-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.xs-home-collections {
    background: var(--soft);
}

.xs-home-section-head {
    margin-bottom: 45px;
    text-align: center;
}

.xs-home-section-head h2 {
    font-size: clamp(42px, 4.0vw, 72px);
    line-height: .98;
    margin: 0;
    font-weight: 900;
}

.xs-home-section-head p {
    max-width: 760px;
    margin: 14px auto 0;
    color: #5f5e5a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}

.xs-home-browse {
    overflow: hidden;
}

.xs-home-browse-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 34px;
    text-align: center;
}

.xs-home-browse-head h2 {
    margin: 0 0 28px;
    font-size: clamp(36px, 2.4vw, 58px);
    line-height: .98;
    font-weight: 900;
}

.xs-home-browse-tabs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: min(720px, 100%);
    padding: 4px;
    border-radius: 999px;
    background: var(--soft);
}

.xs-home-browse-tab {
    min-height: 58px;
    padding: 0 28px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--black);
    font-size: 17px;
    font-weight: 800;
}

.xs-home-browse-tab.xs-active {
    background: var(--black);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .14);
}

.xs-home-browse-panel {
    display: none;
}

.xs-home-browse-panel.xs-active {
    display: block;
}

.xs-home-browse-slider {
    position: relative;
}

.xs-home-browse-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.xs-home-browse-slider .slick-list {
    margin: 0 -9px;
    overflow: hidden;
}

.xs-home-browse-slider .slick-track {
    display: flex;
}

.xs-home-browse-slider .slick-slide {
    height: auto;
    margin: 0 9px;
}

.xs-home-browse-card {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--soft);
}

.xs-home-browse-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.xs-home-browse-card:hover img {
    transform: scale(1.035);
}

.xs-home-browse-card-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 58px 22px 22px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .72) 100%);
    color: #fff;
}

.xs-home-browse-card-overlay strong {
    display: block;
    font-size: 22px;
    line-height: 1.15;
    font-weight: 900;
}

.xs-home-browse-card-overlay small {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 800;
}

.xs-home-browse-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--black);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.xs-home-browse-arrow-prev {
    left: -14px;
}

.xs-home-browse-arrow-next {
    right: -14px;
}

.xs-home-browse-arrow.slick-disabled {
    opacity: .35;
    cursor: default;
}

.xs-home-band {
    overflow: hidden;
    background: var(--blue);
    padding: 23px 0;
}

.xs-home-marquee {
    width: 100%;
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    white-space: nowrap;
}

.xs-home-marquee-track {
    display: flex;
    width: max-content;
    animation: xs-home-marquee-scroll 24s linear infinite;
    will-change: transform;
}

.xs-home-marquee-group {
    display: flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 34px;
    padding-right: 34px;
}

.xs-home-marquee-group span,
.xs-home-marquee-group i {
    flex: 0 0 auto;
}

.xs-home-marquee-group i {
    font-style: normal;
    opacity: .55;
}

@keyframes xs-home-marquee-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.xs-home-collections-intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .9fr);
    align-items: center;
    gap: 72px;
    margin-bottom: 42px;
}

.xs-home-collections-content {
    max-width: 620px;
}

.xs-home-collections-content h2 {
    margin: 0;
    font-size: clamp(42px, 4.0vw, 72px);
    line-height: .98;
    font-weight: 900;
}

.xs-home-collections-content p {
    max-width: 560px;
    margin: 18px 0 26px;
    color: #5f5e5a;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.65;
}

.xs-home-collections-cover {
    display: block;
    overflow: hidden;
    border-radius: var(--radius);
    background: #eee;
}

.xs-home-collections-cover img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / .82;
    object-fit: cover;
}

.xs-home-collection-slider {
    position: relative;
}

.xs-home-collection-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.xs-home-collection-slider .slick-list {
    margin: 0 -9px;
    overflow: hidden;
}

.xs-home-collection-slider .slick-track {
    display: flex;
}

.xs-home-collection-slider .slick-slide {
    height: auto;
    margin: 0 9px;
}

.xs-home-collection-arrow {
    position: absolute;
    top: 40%;
    z-index: 4;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--black);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.xs-home-collection-arrow-prev {
    left: -13px;
}

.xs-home-collection-arrow-next {
    right: -13px;
}

.xs-home-collection-arrow.slick-disabled {
    opacity: .35;
    cursor: default;
}

.xs-home-page .xs-product-card-media {
    border: 1px solid var(--line);
}

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

.xs-home-ugc {
    overflow: hidden;
    padding: 88px 0;
    background: var(--purple);
}

.xs-home-ugc-head {
    margin-bottom: 34px;
    text-align: center;
}

.xs-home-ugc-head h2 {
    margin: 0;
    font-size: clamp(42px, 4vw, 66px);
    line-height: .98;
    font-weight: 900;
}

.xs-home-ugc-head p {
    max-width: 760px;
    margin: 12px auto 0;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.6;
}

.xs-home-ugc-slider {
    position: relative;
}

.xs-home-ugc-slider:not(.slick-initialized) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.xs-home-ugc-slider .slick-list {
    margin: 0 -9px;
    overflow: hidden;
}

.xs-home-ugc-slider .slick-track {
    display: flex;
}

.xs-home-ugc-slider .slick-slide {
    height: auto;
    margin: 0 9px;
}

.xs-home-ugc-card {
    position: relative;
    display: block;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 22px;
    background: #fff;
}

.xs-home-ugc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}

.xs-home-ugc-card:hover img {
    transform: scale(1.035);
}

.xs-home-ugc-card-overlay {
    position: absolute;
    inset: auto 0 0;
    padding: 70px 18px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, .78) 100%);
    color: #fff;
}

.xs-home-ugc-card-user {
    display: block;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 800;
}

.xs-home-ugc-card-product {
    display: block;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 900;
}

.xs-home-ugc-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 9px;
    font-size: 13px;
    font-weight: 800;
}

.xs-home-ugc-card-link .xs-icon {
    width: 14px;
    height: 14px;
}

.xs-home-ugc-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    color: var(--black);
    box-shadow: 0 5px 18px rgba(0, 0, 0, .16);
    transform: translateY(-50%);
}

.xs-home-ugc-arrow-prev {
    left: -14px;
}

.xs-home-ugc-arrow-next {
    right: -14px;
}

@media (max-width: 1100px) {
    .xs-home-collection-slider:not(.slick-initialized) {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 760px) {
    .xs-home-collections-intro {
        grid-template-columns: 1fr;
        gap: 28px;
        margin-bottom: 32px;
    }

    .xs-home-collections-content {
        max-width: none;
    }

    .xs-home-collections-content h2 {
        font-size: 42px;
        white-space: normal;
    }

    .xs-home-collections-content p {
        margin: 14px 0 22px;
        font-size: 17px;
    }

    .xs-home-collections-cover img {
        aspect-ratio: 1 / .82;
    }

    .xs-home-hero-arrow {
        display: none !important;
    }

    .xs-home-hero-dots {
        bottom: 14px;
    }

    .xs-home-hero-image {
        height: 700px;
        object-position: 63% center;
    }

    .xs-home-hero-content {
        bottom: 42px;
        padding-top: 0;
    }

    .xs-home-hero h1 {
        max-width: none;
        font-size: min(52px, 7.5vw);
    }

    .xs-home-hero p {
        max-width: none;
        color: #24211d;
        font-size: min(17px, 3.5vw);
    }

    .xs-home-section-head {
        margin-bottom: 30px;
    }

    .xs-home-section-head h2 {
        font-size: 42px;
    }

    .xs-home-section-head p {
        font-size: 17px;
    }

    .xs-home-browse-head {
        margin-bottom: 26px;
    }

    .xs-home-browse-head h2 {
        margin-bottom: 22px;
        font-size: 36px;
    }

    .xs-home-browse-tabs {
        width: 100%;
    }

    .xs-home-browse-tab {
        min-height: 52px;
        padding: 0 14px;
        font-size: 14px;
    }

    .xs-home-browse-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .xs-home-browse-card-overlay {
        padding: 42px 15px 15px;
    }

    .xs-home-browse-card-overlay strong {
        font-size: 17px;
    }

    .xs-home-browse-arrow {
        display: none !important;
    }

    .xs-home-collection-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .xs-home-collection-arrow {
        display: none !important;
    }

    .xs-home-blog-grid {
        grid-template-columns: 1fr;
    }

    .xs-home-ugc {
        padding: 70px 0;
    }

    .xs-home-ugc-head {
        margin-bottom: 26px;
    }

    .xs-home-ugc-head h2 {
        font-size: 42px;
    }

    .xs-home-ugc-slider:not(.slick-initialized) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .xs-home-ugc-card-overlay {
        padding: 52px 14px 14px;
    }

    .xs-home-ugc-card-product {
        font-size: 15px;
    }

    .xs-home-ugc-arrow {
        display: none !important;
    }

    .xs-home-hero:after {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(90deg, rgba(255, 229, 118, .96) 0%, rgba(255, 224, 186, .83) 56%, rgba(255, 255, 255, .12) 100%);
        pointer-events: none;
    }

    .xs-home-hero .xs-home-hero-content {
        z-index: 1;
    }
}

.xs-login-form-grid {
    display: grid;
    gap: 15px;
    margin: 30px 0 18px;
}

.xs-login-form-grid label {
    font-size: 13px;
    font-weight: 800;
}

.xs-login-form-grid input {
    margin-top: 6px;
    font-size: 16px;
    font-weight: 600;
}

.xs-login-links {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 18px;
    font-size: 15px;
    font-weight: 800;
}

.xs-login-links a {
    text-decoration: underline;
    font-weight: 800;
}

@media (max-width: 760px) {
    .xs-login-links {
        flex-direction: column;
        align-items: flex-start;
    }
}

.xs-order-success-page {

}

.xs-order-success-content {
    padding: 88px 0 112px;
}

.xs-order-success-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 430px;
    gap: 54px;
    align-items: start;
}

.xs-order-success-main {
    display: grid;
    gap: 22px;
}

.xs-order-success-hero {
    padding: 96px 0 82px;
    background: var(--yellow);
    text-align: center;
}

.xs-order-success-hero .xs-container {
    max-width: 920px;
}

.xs-order-success-mark {
    width: 74px;
    height: 74px;
    margin: 0 auto 22px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--black);
    color: #fff;
}

.xs-order-success-mark .xs-icon {
    width: 32px;
    height: 32px;
}

.xs-order-success-hero h1 {
    margin: 20px 0 22px;
    font-size: clamp(64px, 7.2vw, 116px);
    line-height: .88;
    font-weight: 1000;
}

.xs-order-success-hero > .xs-container > p {
    max-width: 660px;
    margin: 0 auto;
    font-size: 18px;
}

.xs-order-success-number {
    margin: 28px auto 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.xs-order-success-number span {
    font-size: 12px;
    font-weight: 900;
}

.xs-order-success-number strong {
    font-size: 18px;
}

.xs-order-success-actions {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.xs-order-success-block,
.xs-order-success-help,
.xs-order-success-summary {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
}

.xs-order-success-block {
    padding: 30px;
}

.xs-order-success-block-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
}

.xs-order-success-block h2,
.xs-order-success-help h2,
.xs-order-success-summary h2 {
    margin: 8px 0 0;
    font-size: 30px;
    line-height: 1.12;
}

.xs-order-success-block > p {
    margin: 12px 0 0;
    color: #70706b;
}

.xs-order-success-info-grid {
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.xs-order-success-info-grid span {
    display: block;
    margin-bottom: 5px;
    color: #7b7b75;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.xs-order-success-info-grid strong {
    font-size: 16px;
}

.xs-order-success-info-grid p {
    margin: 5px 0 0;
    color: #6e6e69;
    line-height: 1.55;
}

.xs-order-success-payment {
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.xs-order-success-payment > div {
    display: flex;
    align-items: center;
    gap: 14px;
}

.xs-order-success-payment p {
    margin: 0;
    color: #6e6e69;
}

.xs-order-success-card-icon {
    min-width: 56px;
    height: 38px;
    border: 1px solid var(--line);
    border-radius: 10px;
    display: grid;
    place-items: center;
    font-size: 12px;
    font-weight: 1000;
}

.xs-order-success-help {
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background: var(--soft);
}

.xs-order-success-help p {
    max-width: 560px;
    margin: 10px 0 0;
    color: #6e6e69;
}

.xs-order-success-summary {
    position: sticky;
    top: 110px;
    padding: 28px;
}

.xs-order-success-summary-head {
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.xs-order-success-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--line);
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 14px;
    align-items: center;
}

.xs-order-success-item-media {
    position: relative;
}

.xs-order-success-item-media img {
    width: 72px;
    height: 72px;
    border-radius: 16px;
    object-fit: cover;
    background: var(--soft);
}

.xs-order-success-item-media span {
    position: absolute;
    top: -7px;
    right: -7px;
    min-width: 24px;
    height: 24px;
    padding: 0 6px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--black);
    color: #fff;
    font-size: 11px;
    font-weight: 900;
}

.xs-order-success-item strong {
    display: block;
    font-size: 14px;
    line-height: 1.35;
}

.xs-order-success-item p {
    margin: 4px 0 0;
    color: #777771;
    font-size: 12px;
    line-height: 1.4;
}

.xs-order-success-item > b {
    font-size: 14px;
}

.xs-order-success-totals {
    margin: 22px 0 24px;
}

.xs-order-success-totals > div {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.xs-order-success-totals dt,
.xs-order-success-totals dd {
    margin: 0;
}

.xs-order-success-totals dt {
    color: #70706b;
}

.xs-order-success-total {
    padding-top: 16px;
    border-top: 1px solid var(--line);
    align-items: flex-end;
}

.xs-order-success-total dt,
.xs-order-success-total dd {
    color: var(--black);
    font-size: 22px;
    font-weight: 900;
}

.xs-order-success-total small {
    margin-left: 5px;
    color: #7b7b75;
    font-size: 10px;
    font-weight: 800;
}

.xs-order-success-summary .xs-text-link {
    margin-top: 4px;
}

@media (max-width: 1100px) {
    .xs-order-success-layout {
        grid-template-columns: 1fr;
    }

    .xs-order-success-summary {
        position: static;
    }
}

@media (max-width: 760px) {
    .xs-order-success-hero {
        padding: 72px 0 62px;
    }

    .xs-order-success-mark {
        width: 64px;
        height: 64px;
    }

    .xs-order-success-hero h1 {
        font-size: 58px;
    }

    .xs-order-success-hero > .xs-container > p {
        font-size: 16px;
    }

    .xs-order-success-number {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }

    .xs-order-success-actions {
        flex-direction: column;
    }

    .xs-order-success-actions .xs-button {
        width: 100%;
    }

    .xs-order-success-content {
        padding: 62px 0 75px;
    }

    .xs-order-success-block,
    .xs-order-success-help,
    .xs-order-success-summary {
        padding: 20px;
    }

    .xs-order-success-block-head,
    .xs-order-success-payment,
    .xs-order-success-help {
        align-items: flex-start;
        flex-direction: column;
    }

    .xs-order-success-info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .xs-order-success-item {
        grid-template-columns: 64px minmax(0, 1fr) auto;
        gap: 12px;
    }

    .xs-order-success-item-media img {
        width: 64px;
        height: 64px;
    }
}

.xs-order-track-page {

}

.xs-order-track-details {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 60px;
    padding-top: 40px;
}

.xs-order-track-hero {
    padding: 110px 0;
    background: var(--blue);
}

.xs-order-track-hero h1 {
    margin: 28px 0 32px;
}

.xs-order-track-hero p {
    max-width: 580px;
    font-size: 20px;
}

.xs-order-track-search {
    display: flex;
    max-width: 900px;
    margin-top: 35px;
    padding: 7px;
    overflow: hidden;
    border-radius: 999px;
    background: #fff;
}

.xs-order-track-search input {
    flex: 1;
    min-width: 0;
    padding: 0 18px;
    border: 0;
    border-right: 1px solid var(--line);
    outline: 0;
}

.xs-order-track-search .xs-button {
    flex-shrink: 0;
}

.xs-order-track-result-header {
    display: flex;
    align-items: start;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.xs-order-track-result h2 {
    margin: 8px 0;
    font-size: 48px;
}

.xs-order-track-timeline > div {
    position: relative;
    display: flex;
    gap: 16px;
    padding: 0 0 42px;
}

.xs-order-track-timeline > div::after {
    position: absolute;
    top: 40px;
    bottom: 0;
    left: 20px;
    width: 2px;
    background: #ddd;
    content: "";
}

.xs-order-track-timeline > div:last-child::after {
    display: none;
}

.xs-order-track-timeline i {
    z-index: 1;
    display: grid;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #eee;
    place-items: center;
}

.xs-order-track-timeline .xs-order-track-complete i,
.xs-order-track-timeline .xs-active i {
    background: var(--black);
    color: #fff;
}

.xs-order-track-timeline span {
    display: flex;
    flex-direction: column;
}

.xs-order-track-timeline em {
    color: #666;
    font-size: 14px;
    font-style: normal;
    font-weight: 600;
}

.xs-order-track-shipment {
    padding: 28px;
    border-radius: 24px;
    background: var(--soft);
}

.xs-order-track-shipment > div {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 15px 0;
}

.xs-order-track-shipment img {
    width: 70px;
    border-radius: 12px;
}

.xs-order-track-shipment span {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 600;
}

.xs-order-track-shipment em {
    color: #666;
    font-style: normal;
}

@media (max-width: 760px) {
    .xs-order-track-details {
        grid-template-columns: 1fr;
    }

    .xs-order-track-search {
        flex-direction: column;
        gap: 8px;
        padding: 10px;
        border-radius: 18px;
    }

    .xs-order-track-search input {
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 10px;
    }

    .xs-order-track-result-header {
        flex-direction: column;
        gap: 15px;
    }
}

#otpCode {
    margin-top: 6px;
    font-size: 20px;
    font-weight: 700;
    text-align: center;
}

.xs-privacy-page {

}

.xs-privacy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 100px;
    padding: 80px 0 120px;
}

.xs-privacy-hero {
    padding: 60px 0;
    background: var(--soft);
}

.xs-privacy-hero h1 {
    margin: 15px 0;
    font-size: 72px;
}

.xs-privacy-layout aside {
    position: sticky;
    top: 130px;
    display: flex;
    flex-direction: column;
    height: max-content;
}

.xs-privacy-layout aside > strong {
    margin-bottom: 15px;
    font-size: 13px;
    font-weight: 900;
}

.xs-privacy-layout aside a {
    position: relative;
    padding: 7px 0;
    color: #666;
    font-size: 14px;
    font-weight: 700;
    transition: color .2s;
}

.xs-privacy-layout aside a[href^="#"].xs-active {
    color: var(--black);
    font-weight: 900;
}

.xs-privacy-layout aside a[href^="#"].xs-active::before {
    position: absolute;
    top: 50%;
    left: -16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--black);
    content: "";
    transform: translateY(-50%);
}

.xs-privacy-layout article {
    max-width: 800px;
}

.xs-privacy-layout article .xs-privacy-intro {
    padding: 28px;
    border-radius: 20px;
    background: var(--yellow);
    font-size: 21px;
    line-height: 1.7;
}

.xs-privacy-layout article section {
    padding: 30px 0;
    border-bottom: 1px solid var(--line);
}

.xs-privacy-layout h2 {
    font-size: 30px;
}

.xs-privacy-layout p {
    color: #575753;
    line-height: 1.8;
}

.xs-privacy-help {
    margin-top: 25px;
    color: var(--black);
    font-weight: 800;
}

@media (max-width: 760px) {
    .xs-privacy-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .xs-privacy-hero h1 {
        font-size: 50px;
    }

    .xs-privacy-layout aside {
        position: static;
    }
}

.xs-portfolio-detail-page {

}

.xs-portfolio-detail-pill {
    display: inline-flex;
    border-radius: 999px;
    padding: 8px 13px;
    background: #fff;
    font-size: 12px;
    font-weight: 900;
}

.xs-portfolio-detail-pill-dark {
    background: var(--black);
    color: #fff;
}

.xs-portfolio-detail-hero {
    position: relative;
    height: 80vh;
    min-height: 650px;
}

.xs-portfolio-detail-hero > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-portfolio-detail-hero > .xs-container {
    position: absolute;
    left: 50%;
    bottom: 65px;
    transform: translateX(-50%);
    color: #fff;
}

.xs-portfolio-detail-hero h1 {
    margin: 20px 0;
    font-size: 110px;
    line-height: .9;
}

.xs-portfolio-detail-hero p {
    font-size: 20px;
}

.xs-portfolio-detail-intro {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 10vw;
    padding: 80px 0;
}

.xs-portfolio-detail-intro h2 {
    font-size: 60px;
    line-height: .95;
}

.xs-portfolio-detail-intro > p {
    font-size: 22px;
    line-height: 1.65;
}

.xs-portfolio-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.xs-portfolio-detail-grid img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.xs-portfolio-detail-grid img:last-child {
    grid-column: span 2;
    height: 900px;
}

@media (max-width: 760px) {
    .xs-portfolio-detail-hero h1 {
        font-size: 68px;
    }

    .xs-portfolio-detail-intro {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .xs-portfolio-detail-grid {
        grid-template-columns: 1fr;
    }

    .xs-portfolio-detail-grid img,
    .xs-portfolio-detail-grid img:last-child {
        grid-column: auto;
        height: 520px;
    }
}

.xs-portfolio-page {

}

.xs-portfolio-hero {
    padding: 105px 0;
    background: var(--purple);
}

.xs-portfolio-hero h1 {
    margin: 28px 0 25px;
}

.xs-portfolio-hero p {
    max-width: 580px;
    font-size: 20px;
}

.xs-portfolio-gallery {
    padding-top: 65px;
}

.xs-portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.xs-portfolio-card {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: var(--radius);
}

.xs-portfolio-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-portfolio-card > span {
    position: absolute;
    left: 24px;
    bottom: 24px;
    min-width: 280px;
    border-radius: 18px;
    padding: 20px;
    background: #fff;
}

.xs-portfolio-card small,
.xs-portfolio-card strong,
.xs-portfolio-card em {
    display: block;
}

.xs-portfolio-card small {
    font-size: 11px;
    font-weight: 900;
}

.xs-portfolio-card strong {
    font-size: 26px;
}

.xs-portfolio-card em {
    color: #666;
    font-style: normal;
}

@media (max-width: 1100px) {
    .xs-portfolio-card {
        min-height: 500px;
    }
}

@media (max-width: 760px) {
    .xs-portfolio-hero {
        padding: 75px 0;
    }

    .xs-portfolio-grid {
        grid-template-columns: 1fr;
    }

    .xs-portfolio-card {
        min-height: 520px;
    }
}

.xs-product-page-view {

}

.xs-product-page {
    padding-bottom: 110px;
}

.xs-product-layout {
    display: grid;
    grid-template-columns: 1.22fr .78fr;
    gap: 40px;
    align-items: start;
}

.xs-product-gallery {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px;
    position: sticky;
    top: 125px;
}

.xs-product-gallery-thumbs {
    min-width: 0;
    user-select: none;
    -webkit-user-select: none;
}

.xs-product-gallery-thumbs .slick-list {
    overflow: hidden;
}

.xs-product-gallery-thumbs .slick-slide {
    height: 90px;
    margin-bottom: 10px;
    cursor: pointer;
}

.xs-product-gallery-thumb {
    width: 100%;
    height: 90px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .10);
    border-radius: 15px;
    overflow: hidden;
    background: #eee;
    cursor: pointer;
    transition: border-color .2s;
}

.xs-product-gallery-thumb:hover,
.xs-product-gallery-thumb.xs-selected {
    border-color: var(--black);
}

.xs-product-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    -webkit-user-drag: none;
}

.xs-product-gallery-main {
    position: relative;
    min-width: 0;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 24px;
    overflow: hidden;
    background: var(--soft);
}

.xs-product-gallery-slider {
    width: 100%;
}

.xs-product-gallery-slide img {
    width: 100%;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.xs-product-gallery-main .slick-list,
.xs-product-gallery-main .slick-track {
    height: 100%;
}

.xs-product-gallery-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(17, 17, 17, .12);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255, 255, 255, .92);
    color: var(--black);
    transform: translateY(-50%);
    transition: background .2s, transform .2s;
}

.xs-product-gallery-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.04);
}

.xs-product-gallery-arrow-prev {
    left: 18px;
}

.xs-product-gallery-arrow-next {
    right: 18px;
}

.xs-product-gallery-arrow .xs-icon {
    width: 19px;
    height: 19px;
}

.xs-product-zoom-button {
    position: absolute;
    bottom: 17px;
    left: 50%;
    transform: translateX(-50%);
    border: 0;
    background: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 7px;
}

.xs-product-info {
    padding-top: 10px;
}

.xs-product-info h1 {
    margin: 12px 0 15px;
    font-size: 42px;
    line-height: 1.05;
    font-weight: 900;
}

.xs-product-meta-row {
    margin: 18px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.xs-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.xs-product-rating a {
    text-decoration: underline;
}

.xs-product-price {
    flex: 0 0 auto;
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.xs-product-lead {
    color: #595955;
    font-size: 17px;
    line-height: 1.65;
}

.xs-product-option-block {
    border-top: 1px solid var(--line);
    padding: 24px 0;
}

.xs-product-option-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 800;
}

.xs-product-option-title button,
.xs-product-option-title span {
    border: 0;
    background: transparent;
    font-size: 16px;
    text-decoration: underline;
    font-weight: 700;
}

.xs-product-config-select-wrap {
    position: relative;
}

.xs-product-config-select {
    width: 100%;
    height: 54px;
    padding: 0 48px 0 16px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    color: var(--black);
    font: inherit;
    font-size: 16px;
    font-weight: 700;
    appearance: none;
    cursor: pointer;
    outline: none;
}

.xs-product-config-select-wrap::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 20px;
    width: 9px;
    height: 9px;
    border-right: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    transform: translateY(-70%) rotate(45deg);
    pointer-events: none;
}

.xs-product-config-group-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px 10px;
    align-items: start;
}

.xs-product-config-card-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px 10px;
    align-items: start;
}

.xs-product-config-card {
    width: 100%;
    min-width: 0;
    padding: 0;
    display: block;
    border: 0;
    background: transparent;
    text-align: center;
}

.xs-product-config-card-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    transition: border-color .2s, box-shadow .2s;
}

.xs-product-config-card.xs-selected .xs-product-config-card-image {
    border-color: var(--black);
}

.xs-product-config-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.xs-product-config-card.xs-no-image .xs-product-config-card-image img {
    display: none;
}

.xs-product-config-card-content {
    min-width: 0;
    padding-top: 7px;
    display: block;
    text-align: center;
}

.xs-product-config-card-name {
    display: block;
    width: 100%;
    overflow: hidden;
    color: var(--black);
    font-size: 14px;
    line-height: 18px;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xs-product-config-card-price {
    display: block;
    min-height: 18px;
    margin-top: 1px;
    color: #777;
    font-size: 13px;
    line-height: 18px;
    font-style: normal;
    font-weight: 500;
}

.xs-product-config-preview {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--soft);
}

.xs-product-config-preview img {
    position: absolute;
    display: block;
    pointer-events: none;
}

.xs-product-config-preview img.xs-product-config-layer-contain {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xs-product-config-preview img.xs-product-config-layer-cover {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-product-config-preview img.xs-product-config-layer-bottom-right {
    top: auto;
    left: auto;
    right: 4%;
    bottom: 4%;
    width: 28%;
    height: 28%;
    object-fit: contain;
}

.xs-product-config-preview img.xs-product-config-layer-bottom-left {
    top: auto;
    right: auto;
    left: 4%;
    bottom: 4%;
    width: 28%;
    height: 28%;
    object-fit: contain;
}

.xs-product-config-preview img.xs-product-config-layer-top-right {
    top: 4%;
    right: 4%;
    bottom: auto;
    left: auto;
    width: 28%;
    height: 28%;
    object-fit: contain;
}

.xs-product-config-preview img.xs-product-config-layer-top-left {
    top: 4%;
    right: auto;
    bottom: auto;
    left: 4%;
    width: 28%;
    height: 28%;
    object-fit: contain;
}

.xs-product-config-preview img.xs-product-config-layer-center {
    top: 50%;
    left: 50%;
    width: 34%;
    height: 34%;
    object-fit: contain;
    transform: translate(-50%, -50%);
}

.xs-product-purchase-row {
    display: flex;
    gap: 10px;
    margin-top: 6px;
}

.xs-product-purchase-row .xs-quantity .xs-icon {
    width: 15px;
}

.xs-product-purchase-row .xs-quantity input {
    font-weight: 850;
}

.xs-product-quick-benefits {
    display: flex;
    gap: 22px;
    font-size: 13px;
    margin: 18px 0 5px;
    font-weight: 700;
}

.xs-product-quick-benefits span {
    display: flex;
    gap: 6px;
    align-items: center;
}

.xs-product-story-section {
    padding: 110px 0;
    background: var(--soft);
}

.xs-product-story-stack {
    display: grid;
    gap: 34px;
}

.xs-product-story-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: center;
}

.xs-product-story-media {
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 30px;
    background: #ece9ff;
}

.xs-product-story-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.xs-product-story-copy {
    padding: 12px 6px;
}

.xs-product-story-copy h2 {
    margin: 10px 0 16px;
    font-size: clamp(34px, 4.2vw, 62px);
    line-height: 1;
    font-weight: 900;
}

.xs-product-story-copy p {
    max-width: 540px;
    margin: 0;
    color: #5c5b57;
    font-size: 18px;
    line-height: 1.65;
    font-weight: 500;
}

.xs-product-included-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.xs-product-included-grid > div {
    background: var(--soft);
    border-radius: var(--radius);
    padding-bottom: 23px;
}

.xs-product-included-grid img {
    border-radius: var(--radius);
    aspect-ratio: 1/1;
    object-fit: cover;
}

.xs-product-included-grid strong,
.xs-product-included-grid span {
    display: block;
    margin: 12px 20px 0;
}

.xs-product-included-grid span {
    font-size: 14px;
    color: #666;
    margin-top: 2px;
    font-weight: 700;
}

.xs-product-reviews-block {
    background: var(--yellow);
    padding: 100px 0;
}

.xs-product-reviews-block > .xs-container {
    display: grid;
    grid-template-columns: .6fr 1.4fr;
    gap: 8vw;
}

.xs-product-review-score > strong {
    font-size: 100px;
    line-height: 1;
    display: block;
    margin-top: 20px;
}

.xs-product-review-list article {
    padding: 28px 0;
    border-top: 1px solid rgba(17, 17, 17, .3);
}

.xs-product-review-list header {
    display: flex;
    justify-content: space-between;
}

.xs-product-review-list header span {
    font-size: 13px;
    font-weight: 600;
}

.xs-product-review-list h3 {
    font-size: 22px;
    margin: 9px 0;
}

.xs-product-review-list p {
    max-width: 680px;
}

.xs-product-review-stars {
    font-size: 17px;
    line-height: 1;
}

.xs-product-review-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.xs-product-review-page-button {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    border: 1px solid rgba(17, 17, 17, .28);
    border-radius: 999px;
    background: transparent;
    font-size: 14px;
    font-weight: 800;
}

.xs-product-review-page-button:hover,
.xs-product-review-page-button.xs-selected {
    background: var(--black);
    color: #fff;
    border-color: var(--black);
}

.xs-product-review-page-button:disabled {
    opacity: .35;
    cursor: default;
}

.xs-product-review-page-button:disabled:hover {
    background: transparent;
    color: inherit;
    border-color: rgba(17, 17, 17, .28);
}

.xs-product-review-modal {
    z-index: 1000;
    background: rgba(17, 17, 17, .48);
}

.xs-product-review-dialog {
    max-width: 560px;
    box-shadow: 0 24px 70px rgba(17, 17, 17, .22);
}

#xsProductReviewDialogTitle {
    font-size: 28px;
}

.xs-product-review-field {
    margin-bottom: 18px;
}

.xs-product-review-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 800;
}

.xs-product-review-field input,
.xs-product-review-field textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 13px 14px;
    font: inherit;
    outline: none;
}

.xs-product-review-field textarea {
    min-height: 130px;
    resize: vertical;
}

.xs-product-review-field input:focus,
.xs-product-review-field textarea:focus {
    border-color: var(--black);
}

.xs-product-review-rating {
    display: flex;
    gap: 6px;
}

.xs-product-review-rating button {
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #b3b3ad;
}

.xs-product-review-rating button.xs-selected {
    color: var(--black);
}

.xs-product-review-error {
    display: none;
    margin: 0 0 16px;
    font-size: 14px;
    font-weight: 700;
    color: #b42318;
}

.xs-product-review-error.xs-visible {
    display: block;
}

.xs-product-review-dialog-actions {
    gap: 10px;
    margin-top: 6px;
}

.xs-product-review-dialog-actions .xs-button {
    min-height: 48px;
    font-size: 16px;
}

@media (max-width: 1100px) {
    .xs-product-layout {
        grid-template-columns: 1fr;
    }

    .xs-product-gallery {
        position: static;
    }

    .xs-product-info {
        max-width: 720px;
    }
}

@media (max-width: 760px) {
    .xs-product-story-row {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .xs-product-story-media {
        aspect-ratio: 1 / 1;
    }

    .xs-product-story-copy {
        padding: 0;
    }

    .xs-product-story-copy h2 {
        font-size: 40px;
    }

    .xs-product-story-copy p {
        font-size: 17px;
    }

    .xs-product-gallery {
        display: block;
    }

    .xs-product-gallery-thumbs {
        margin-top: 10px;
    }

    .xs-product-gallery-thumbs .slick-list {
        margin: 0 -5px;
    }

    .xs-product-gallery-thumbs .slick-slide {
        height: 70px;
        margin: 0 5px;
    }

    .xs-product-gallery-thumb {
        height: 70px;
    }

    .xs-product-gallery-arrow {
        width: 40px;
        height: 40px;
    }

    .xs-product-gallery-arrow-prev {
        left: 12px;
    }

    .xs-product-gallery-arrow-next {
        right: 12px;
    }

    .xs-product-info h1 {
        font-size: 38px;
        line-height: 1.08;
        white-space: normal;
    }

    .xs-product-config-group-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .xs-product-config-card-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .xs-product-purchase-row {
        flex-direction: column;
    }

    .xs-product-quick-benefits {
        flex-direction: column;
        gap: 6px;
    }

    .xs-product-reviews-block > .xs-container {
        grid-template-columns: 1fr;
    }

    .xs-product-review-list header {
        gap: 12px;
        flex-direction: column;
    }
}

.xs-search-field
{
    display: flex;
    align-items: center;
}

.xs-search-submit,
.xs-search-clear
{
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
}

.xs-search-submit
{
    width: 36px;
    height: 36px;
    font-size: 18px;
}

.xs-search-clear
{
    width: 36px;
    height: 36px;
    margin-right: 8px;
    font-size: 15px;
}

.xs-search-field input
{
    min-width: 0;
    flex: 1;
}

.xs-search-field input[type="search"]::-webkit-search-cancel-button
{
    -webkit-appearance: none;
    appearance: none;
}

.xs-search-field input[type="search"]::-ms-clear
{
    display: none;
}

.xs-search-status
{
    padding: 30px 4px;
    color: #777;
    font-size: 15px;
    line-height: 1.6;
    text-align: center;
}

.xs-search-results
{
    padding-top: 28px;
}

.xs-drawer .xs-search-results-head
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 14px;
}

.xs-search-results-title
{
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.xs-drawer .xs-search-results-head strong
{
    font-size: 18px;
    font-weight: 900;
}

.xs-search-results-title span
{
    color: #777;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.xs-search-result-list
{
    display: flex;
    flex-direction: column;
}

.xs-search-result-item
{
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    border-bottom: 1px solid var(--line);
    padding: 10px 0;
    color: var(--black);
    text-decoration: none;
}

.xs-search-result-media
{
    display: block;
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 14px;
    background: var(--soft);
}

.xs-search-result-media img
{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.xs-search-result-copy
{
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 4px;
}

.xs-search-result-name
{
    overflow: hidden;
    font-size: 15px;
    font-weight: 900;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xs-search-result-category
{
    overflow: hidden;
    color: #777;
    font-size: 12px;
    font-style: normal;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.xs-search-result-price
{
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 13px;
    font-weight: 800;
}

.xs-search-result-price-regular
{
    color: #999;
    font-weight: 600;
}

.xs-search-result-arrow
{
    color: #777;
    font-size: 12px;
}

.xs-search-pagination
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding-top: 22px;
}

.xs-search-page-button
{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 14px;
    background: transparent;
    color: var(--black);
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
}

.xs-search-page-button:disabled
{
    opacity: .4;
    cursor: default;
}

.xs-search-page-info
{
    color: #777;
    font-size: 13px;
    font-weight: 700;
    white-space: nowrap;
}

.xs-search-view-all
{
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    gap: 6px;
    color: var(--black);
    font-size: 13px;
    font-weight: 900;
    text-decoration: none;
    white-space: nowrap;
}

.xs-search-view-all:hover
{
    opacity: .7;
}

@media (max-width: 760px)
{
    .xs-drawer .xs-search-results-head
    {
        display: flex;
        width: 100%;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .xs-search-results-title
    {
        min-width: 0;
        flex: 1 1 auto;
    }

    .xs-search-view-all
    {
        flex: 0 0 auto;
        margin-left: auto;
    }

    .xs-search-result-item
    {
        grid-template-columns: 64px minmax(0, 1fr) auto;
    }

    .xs-search-result-media
    {
        width: 64px;
        height: 64px;
    }
}

.xs-search-page {

}

.xs-search-page-hero {
    padding: 100px 0 72px;
    background: var(--soft);
}

.xs-search-page-hero h1 {
    margin: 18px 0 30px;
}

.xs-search-page-form {
    max-width: 820px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.xs-search-page-field {
    min-height: 58px;
    border: 1.5px solid var(--black);
    border-radius: 999px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fff;
}

.xs-search-page-field .xs-icon {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.xs-search-page-field input {
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    font-size: 17px;
}

.xs-search-page .xs-search-results {
    padding-bottom: 112px;
}

.xs-search-page .xs-search-results-head {
    margin: 52px 0 34px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
}

.xs-search-page .xs-search-results-head h2 {
    margin: 10px 0 0;
    font-size: clamp(38px, 4vw, 64px);
    line-height: .98;
}

.xs-search-page .xs-search-results-head p {
    margin: 0 0 6px;
    color: #6d6d68;
}

.xs-search-results-actions {
    margin-top: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 14px;
    color: #777771;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .xs-search-page-hero {
        padding: 72px 0 54px;
    }

    .xs-search-page-hero h1 {
        margin-bottom: 24px;
    }

    .xs-search-page-form {
        grid-template-columns: 1fr;
    }

    .xs-search-page-form .xs-button {
        width: 100%;
    }

    .xs-search-page .xs-search-results {
        padding-bottom: 75px;
    }

    .xs-search-page .xs-search-results-head {
        margin: 38px 0 28px;
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
    }

    .xs-search-page .xs-search-results-head h2 {
        font-size: 40px;
    }
}

.xs-shop-page {

}

.xs-shop-shell {
    padding-bottom: 110px;
}

.xs-shop-hero {
    padding: 105px 0;
    background: var(--yellow);
}

.xs-shop-hero h1 {
    margin: 28px 0 25px;
}

.xs-shop-hero p {
    max-width: 580px;
    font-size: 20px;
}

.xs-shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.xs-shop-toolbar > div {
    display: flex;
    align-items: center;
    gap: 16px;
}

.xs-shop-toolbar span {
    color: #6d6d69;
    font-size: 14px;
    font-weight: 700;
}

.xs-shop-toolbar select {
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
}

.xs-shop-filter-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 10px 15px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 16px;
    font-weight: 800;
}

.xs-shop-filter-apply {
    font-size: 16px;
    font-weight: 800;
}

.xs-shop-filter-panel {
    display: none;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 40px;
    margin-bottom: 28px;
    padding: 28px;
    border-radius: 20px;
    background: var(--soft);
}

.xs-shop-filter-panel.xs-open {
    display: grid;
}

.xs-shop-filter-panel strong {
    display: block;
    margin-bottom: 12px;
}

.xs-shop-filter-panel label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin: 8px 0;
    font-size: 14px;
    font-weight: 600;
}

.xs-shop-filter-panel label span {
    color: #777;
}

.xs-shop-swatches {
    display: flex;
    gap: 8px;
}

.xs-shop-swatches i {
    width: 26px;
    height: 26px;
    border: 1px solid #bbb;
    border-radius: 50%;
    background: var(--sw);
}

.xs-shop-promo-banner {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    min-height: 620px;
    background: var(--coral);
}

.xs-shop-promo-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-shop-promo-banner > div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 8vw;
}

.xs-shop-promo-banner h2 {
    margin: 15px 0;
    font-size: 72px;
    line-height: .95;
}

.xs-shop-promo-banner p {
    max-width: 500px;
    font-size: 18px;
}

@media (max-width: 760px) {
    .xs-shop-hero {
        padding: 75px 0;
    }

    .xs-shop-toolbar {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .xs-shop-toolbar > div:first-child span {
        display: none;
    }

    .xs-shop-toolbar > div:last-child {
        width: 100%;
        max-width: 100%;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

    .xs-shop-toolbar select {
        max-width: 150px;
    }

    .xs-shop-toolbar > div:last-child > .xs-icon-button {
        display: none;
    }

    .xs-shop-filter-toggle,
    .xs-shop-filter-apply,
    .xs-shop-toolbar select {
        font-size: 15px;
    }

    .xs-shop-filter-panel.xs-open {
        grid-template-columns: 1fr;
    }

    .xs-shop-promo-banner {
        grid-template-columns: 1fr;
    }

    .xs-shop-promo-banner > div {
        padding: 70px 24px;
    }

    .xs-shop-promo-banner h2 {
        font-size: 52px;
    }
}

.xs-wishlist-page {

}

.xs-wishlist-content {
    min-height: 70vh;
    padding-bottom: 100px;
}

.xs-wishlist-header {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 45px 0;
}

.xs-wishlist-header h1 {
    margin: 12px 0;
    font-size: 68px;
    line-height: .95;
}

.xs-wishlist-page .xs-product-card-body {
    padding: 15px 16px 16px;
}

.xs-wishlist-remove {
    color: #111;
}

.xs-wishlist-remove:hover {
    color: #d92d20;
}

.xs-wishlist-remove:disabled {
    cursor: wait;
    opacity: .55;
}

@media (max-width: 760px) {
    .xs-wishlist-content {
        padding: 75px 0;
    }

    .xs-wishlist-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 24px;
    }

    .xs-wishlist-header h1 {
        font-size: 50px;
    }
}

.xs-animated {
    animation-duration: .65s;
    animation-fill-mode: both;
    animation-timing-function: cubic-bezier(.22, 1, .36, 1);
}

.xs-animated-fast {
    animation-duration: .35s;
}

.xs-animated-slow {
    animation-duration: 1s;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.xs-fadeInRight {
    animation-name: fadeInRight;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.xs-fadeInLeft {
    animation-name: fadeInLeft;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.xs-fadeInUp {
    animation-name: fadeInUp;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.xs-fadeInDown {
    animation-name: fadeInDown;
}

@keyframes fadeOutLeft {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
}

.xs-fadeOutLeft {
    animation-name: fadeOutLeft;
}

@keyframes fadeOutRight {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(100%, 0, 0);
    }
}

.xs-fadeOutRight {
    animation-name: fadeOutRight;
}

@keyframes fadeOutDown {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }
}

.xs-fadeOutDown {
    animation-name: fadeOutDown;
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        transform: translate3d(0, -100%, 0);
    }
}

.xs-fadeOutUp {
    animation-name: fadeOutUp;
}

@keyframes slideInLeft {
    from {
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.xs-slideInLeft {
    animation-name: slideInLeft;
}

@keyframes slideInRight {
    from {
        transform: translate3d(100%, 0, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.xs-slideInRight {
    animation-name: slideInRight;
}

@keyframes slideInUp {
    from {
        transform: translate3d(0, 100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.xs-slideInUp {
    animation-name: slideInUp;
}

@keyframes slideInDown {
    from {
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    to {
        transform: translate3d(0, 0, 0);
    }
}

.xs-slideInDown {
    animation-name: slideInDown;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.xs-zoomIn {
    animation-name: zoomIn;
}

@keyframes zoomOut {
    from {
        opacity: 1;
    }

    50% {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    to {
        opacity: 0;
    }
}

.xs-zoomOut {
    animation-name: zoomOut;
}

.xs-mt-0 {
    margin-top: 0;
}

.xs-mt-5 {
    margin-top: 5px;
}

.xs-mt-10 {
    margin-top: 10px;
}

.xs-mt-15 {
    margin-top: 15px;
}

.xs-mt-20 {
    margin-top: 20px;
}

.xs-mt-25 {
    margin-top: 25px;
}

.xs-mt-30 {
    margin-top: 30px;
}

.xs-mt-35 {
    margin-top: 35px;
}

.xs-mt-40 {
    margin-top: 40px;
}

.xs-mt-45 {
    margin-top: 45px;
}

.xs-mt-50 {
    margin-top: 50px;
}

.xs-mt-55 {
    margin-top: 55px;
}

.xs-mt-60 {
    margin-top: 60px;
}

.xs-mt-65 {
    margin-top: 65px;
}

.xs-mt-70 {
    margin-top: 70px;
}

.xs-mt-75 {
    margin-top: 75px;
}

.xs-mt-80 {
    margin-top: 80px;
}

.xs-mt-85 {
    margin-top: 85px;
}

.xs-mt-90 {
    margin-top: 90px;
}

.xs-mt-95 {
    margin-top: 95px;
}

.xs-mt-100 {
    margin-top: 100px;
}

.xs-mr-0 {
    margin-right: 0;
}

.xs-mr-5 {
    margin-right: 5px;
}

.xs-mr-10 {
    margin-right: 10px;
}

.xs-mr-15 {
    margin-right: 15px;
}

.xs-mr-20 {
    margin-right: 20px;
}

.xs-mr-25 {
    margin-right: 25px;
}

.xs-mr-30 {
    margin-right: 30px;
}

.xs-mr-35 {
    margin-right: 35px;
}

.xs-mr-40 {
    margin-right: 40px;
}

.xs-mr-45 {
    margin-right: 45px;
}

.xs-mr-50 {
    margin-right: 50px;
}

.xs-mr-55 {
    margin-right: 55px;
}

.xs-mr-60 {
    margin-right: 60px;
}

.xs-mr-65 {
    margin-right: 65px;
}

.xs-mr-70 {
    margin-right: 70px;
}

.xs-mr-75 {
    margin-right: 75px;
}

.xs-mr-80 {
    margin-right: 80px;
}

.xs-mr-85 {
    margin-right: 85px;
}

.xs-mr-90 {
    margin-right: 90px;
}

.xs-mr-95 {
    margin-right: 95px;
}

.xs-mr-100 {
    margin-right: 100px;
}

.xs-mb-0 {
    margin-bottom: 0;
}

.xs-mb-5 {
    margin-bottom: 5px;
}

.xs-mb-10 {
    margin-bottom: 10px;
}

.xs-mb-15 {
    margin-bottom: 15px;
}

.xs-mb-20 {
    margin-bottom: 20px;
}

.xs-mb-25 {
    margin-bottom: 25px;
}

.xs-mb-30 {
    margin-bottom: 30px;
}

.xs-mb-35 {
    margin-bottom: 35px;
}

.xs-mb-40 {
    margin-bottom: 40px;
}

.xs-mb-45 {
    margin-bottom: 45px;
}

.xs-mb-50 {
    margin-bottom: 50px;
}

.xs-mb-55 {
    margin-bottom: 55px;
}

.xs-mb-60 {
    margin-bottom: 60px;
}

.xs-mb-65 {
    margin-bottom: 65px;
}

.xs-mb-70 {
    margin-bottom: 70px;
}

.xs-mb-75 {
    margin-bottom: 75px;
}

.xs-mb-80 {
    margin-bottom: 80px;
}

.xs-mb-85 {
    margin-bottom: 85px;
}

.xs-mb-90 {
    margin-bottom: 90px;
}

.xs-mb-95 {
    margin-bottom: 95px;
}

.xs-mb-100 {
    margin-bottom: 100px;
}

.xs-ml-0 {
    margin-left: 0;
}

.xs-ml-5 {
    margin-left: 5px;
}

.xs-ml-10 {
    margin-left: 10px;
}

.xs-ml-15 {
    margin-left: 15px;
}

.xs-ml-20 {
    margin-left: 20px;
}

.xs-ml-25 {
    margin-left: 25px;
}

.xs-ml-30 {
    margin-left: 30px;
}

.xs-ml-35 {
    margin-left: 35px;
}

.xs-ml-40 {
    margin-left: 40px;
}

.xs-ml-45 {
    margin-left: 45px;
}

.xs-ml-50 {
    margin-left: 50px;
}

.xs-ml-55 {
    margin-left: 55px;
}

.xs-ml-60 {
    margin-left: 60px;
}

.xs-ml-65 {
    margin-left: 65px;
}

.xs-ml-70 {
    margin-left: 70px;
}

.xs-ml-75 {
    margin-left: 75px;
}

.xs-ml-80 {
    margin-left: 80px;
}

.xs-ml-85 {
    margin-left: 85px;
}

.xs-ml-90 {
    margin-left: 90px;
}

.xs-ml-95 {
    margin-left: 95px;
}

.xs-ml-100 {
    margin-left: 100px;
}

.xs-pt-0 {
    padding-top: 0;
}

.xs-pt-5 {
    padding-top: 5px;
}

.xs-pt-10 {
    padding-top: 10px;
}

.xs-pt-15 {
    padding-top: 15px;
}

.xs-pt-20 {
    padding-top: 20px;
}

.xs-pt-25 {
    padding-top: 25px;
}

.xs-pt-30 {
    padding-top: 30px;
}

.xs-pt-35 {
    padding-top: 35px;
}

.xs-pt-40 {
    padding-top: 40px;
}

.xs-pt-45 {
    padding-top: 45px;
}

.xs-pt-50 {
    padding-top: 50px;
}

.xs-pt-55 {
    padding-top: 55px;
}

.xs-pt-60 {
    padding-top: 60px;
}

.xs-pt-65 {
    padding-top: 65px;
}

.xs-pt-70 {
    padding-top: 70px;
}

.xs-pt-75 {
    padding-top: 75px;
}

.xs-pt-80 {
    padding-top: 80px;
}

.xs-pt-85 {
    padding-top: 85px;
}

.xs-pt-90 {
    padding-top: 90px;
}

.xs-pt-95 {
    padding-top: 95px;
}

.xs-pt-100 {
    padding-top: 100px;
}

.xs-pr-0 {
    padding-right: 0;
}

.xs-pr-5 {
    padding-right: 5px;
}

.xs-pr-10 {
    padding-right: 10px;
}

.xs-pr-15 {
    padding-right: 15px;
}

.xs-pr-20 {
    padding-right: 20px;
}

.xs-pr-25 {
    padding-right: 25px;
}

.xs-pr-30 {
    padding-right: 30px;
}

.xs-pr-35 {
    padding-right: 35px;
}

.xs-pr-40 {
    padding-right: 40px;
}

.xs-pr-45 {
    padding-right: 45px;
}

.xs-pr-50 {
    padding-right: 50px;
}

.xs-pr-55 {
    padding-right: 55px;
}

.xs-pr-60 {
    padding-right: 60px;
}

.xs-pr-65 {
    padding-right: 65px;
}

.xs-pr-70 {
    padding-right: 70px;
}

.xs-pr-75 {
    padding-right: 75px;
}

.xs-pr-80 {
    padding-right: 80px;
}

.xs-pr-85 {
    padding-right: 85px;
}

.xs-pr-90 {
    padding-right: 90px;
}

.xs-pr-95 {
    padding-right: 95px;
}

.xs-pr-100 {
    padding-right: 100px;
}

.xs-pb-0 {
    padding-bottom: 0;
}

.xs-pb-5 {
    padding-bottom: 5px;
}

.xs-pb-10 {
    padding-bottom: 10px;
}

.xs-pb-15 {
    padding-bottom: 15px;
}

.xs-pb-20 {
    padding-bottom: 20px;
}

.xs-pb-25 {
    padding-bottom: 25px;
}

.xs-pb-30 {
    padding-bottom: 30px;
}

.xs-pb-35 {
    padding-bottom: 35px;
}

.xs-pb-40 {
    padding-bottom: 40px;
}

.xs-pb-45 {
    padding-bottom: 45px;
}

.xs-pb-50 {
    padding-bottom: 50px;
}

.xs-pb-55 {
    padding-bottom: 55px;
}

.xs-pb-60 {
    padding-bottom: 60px;
}

.xs-pb-65 {
    padding-bottom: 65px;
}

.xs-pb-70 {
    padding-bottom: 70px;
}

.xs-pb-75 {
    padding-bottom: 75px;
}

.xs-pb-80 {
    padding-bottom: 80px;
}

.xs-pb-85 {
    padding-bottom: 85px;
}

.xs-pb-90 {
    padding-bottom: 90px;
}

.xs-pb-95 {
    padding-bottom: 95px;
}

.xs-pb-100 {
    padding-bottom: 100px;
}

.xs-pl-0 {
    padding-left: 0;
}

.xs-pl-5 {
    padding-left: 5px;
}

.xs-pl-10 {
    padding-left: 10px;
}

.xs-pl-15 {
    padding-left: 15px;
}

.xs-pl-20 {
    padding-left: 20px;
}

.xs-pl-25 {
    padding-left: 25px;
}

.xs-pl-30 {
    padding-left: 30px;
}

.xs-pl-35 {
    padding-left: 35px;
}

.xs-pl-40 {
    padding-left: 40px;
}

.xs-pl-45 {
    padding-left: 45px;
}

.xs-pl-50 {
    padding-left: 50px;
}

.xs-pl-55 {
    padding-left: 55px;
}

.xs-pl-60 {
    padding-left: 60px;
}

.xs-pl-65 {
    padding-left: 65px;
}

.xs-pl-70 {
    padding-left: 70px;
}

.xs-pl-75 {
    padding-left: 75px;
}

.xs-pl-80 {
    padding-left: 80px;
}

.xs-pl-85 {
    padding-left: 85px;
}

.xs-pl-90 {
    padding-left: 90px;
}

.xs-pl-95 {
    padding-left: 95px;
}

.xs-pl-100 {
    padding-left: 100px;
}
