:root {
    --xs-bg: #f4f5f9;
    --xs-text: #1a1f2b;
    --xs-muted: #667085;
    --xs-border: #e4e7ec;
    --xs-surface: #ffffff;
    --xs-primary: #1f4bb6;
    --xs-primary-dark: #16388a;
    --xs-sale: #d92d20;
    --xs-featured: #165dff;
    --xs-variable: #475467;
}

* {
    box-sizing: border-box;
}

body.xs-body {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    color: var(--xs-text);
    background: var(--xs-bg);
}

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

.xs-container {
    width: min(1240px, calc(100% - 3rem));
    margin: 0 auto;
}

.xs-topbar {
    background: #101828;
    color: #f2f4f7;
    font-size: 0.85rem;
}

.xs-topbar-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.5rem 0;
}

.xs-header {
    background: var(--xs-surface);
    border-bottom: 1px solid var(--xs-border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.xs-header-main {
    display: grid;
    grid-template-columns: 280px minmax(300px, 1fr) auto;
    gap: 1.3rem;
    align-items: center;
    padding: 1rem 0;
}

.xs-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}

.xs-logo-mark {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--xs-primary);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.xs-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
}

.xs-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.xs-search input {
    width: 100%;
    border: 1px solid var(--xs-border);
    border-radius: 10px;
    padding: 0.75rem 0.85rem;
    font-size: 0.95rem;
}

.xs-search button {
    border: 0;
    border-radius: 10px;
    padding: 0.75rem 1.1rem;
    font-weight: 600;
    color: #fff;
    background: var(--xs-primary);
    cursor: pointer;
}

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

.xs-header-tools {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.xs-tool-button {
    border: 1px solid var(--xs-border);
    background: #fff;
    color: #344054;
    border-radius: 9px;
    font-size: 0.83rem;
    font-weight: 600;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
}

.xs-tool-button:hover {
    border-color: var(--xs-primary);
    color: var(--xs-primary);
}

.xs-tool-button[href] {
    text-decoration: none;
}

.xs-inline-form {
    margin: 0;
    display: inline-flex;
}

.xs-account-pill {
    border: 1px solid #d0d5dd;
    background: #f8f9fc;
    color: #344054;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    padding: 0.24rem 0.56rem;
}

.xs-main-nav {
    border-top: 1px solid var(--xs-border);
    border-bottom: 1px solid var(--xs-border);
}

.xs-main-nav-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    padding: 0.8rem 0;
}

.xs-main-nav-link {
    color: #344054;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.xs-main-nav-link:hover {
    color: var(--xs-primary);
}

.xs-tag-strip {
    background: #f8f9fc;
    border-bottom: 1px solid var(--xs-border);
}

.xs-tag-strip-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-items: center;
    padding: 0.55rem 0;
}

.xs-tag-strip-label {
    color: var(--xs-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.xs-tag-chip {
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 999px;
    font-size: 0.78rem;
    color: #344054;
    text-decoration: none;
    padding: 0.24rem 0.56rem;
}

.xs-tag-chip:hover {
    border-color: var(--xs-primary);
    color: var(--xs-primary);
}

.xs-main {
    min-height: calc(100vh - 220px);
    padding-bottom: 3rem;
}

.xs-hero {
    background: linear-gradient(90deg, #0b1f4a 0%, #1f4bb6 100%);
    color: #fff;
    padding: 2.3rem 0;
}

.xs-hero h1 {
    margin: 0;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
}

.xs-hero p {
    margin: 0.55rem 0 0;
    color: #e4ecff;
}

.xs-hero-compact {
    padding: 1.6rem 0;
}

.xs-back-link {
    display: inline-block;
    margin-bottom: 0.8rem;
    color: #d6e4ff;
    text-decoration: none;
}

.xs-taxonomy-description {
    margin-top: 0.85rem;
    color: #f0f6ff;
    max-width: 780px;
}

.xs-listing-section {
    margin-top: 1.35rem;
}

.xs-listing-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.xs-listing-layout.is-loading {
    opacity: 0.55;
    pointer-events: none;
}

.xs-listing-sidebar {
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 12px;
    padding: 0.9rem;
    position: sticky;
    top: 132px;
}

.xs-filter-form {
    display: grid;
    gap: 0.7rem;
}

.xs-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.6rem;
}

.xs-filter-head h3 {
    margin: 0;
    font-size: 1rem;
}

.xs-filter-reset {
    color: var(--xs-primary);
    font-size: 0.82rem;
    text-decoration: none;
}

.xs-filter-label {
    font-size: 0.82rem;
    color: var(--xs-muted);
    font-weight: 600;
}

.xs-filter-form select {
    width: 100%;
    border: 1px solid var(--xs-border);
    border-radius: 8px;
    padding: 0.45rem 0.6rem;
    background: #fff;
}

.xs-filter-attribute-group {
    border: 1px solid var(--xs-border);
    border-radius: 10px;
    padding: 0.55rem 0.65rem 0.45rem;
    margin: 0;
}

.xs-filter-attribute-group legend {
    padding: 0 0.3rem;
    color: #344054;
    font-size: 0.83rem;
    font-weight: 600;
}

.xs-filter-attribute-group label {
    display: flex;
    align-items: center;
    gap: 0.42rem;
    color: #344054;
    font-size: 0.84rem;
    margin: 0.3rem 0;
}

.xs-listing-main {
    min-width: 0;
}

.xs-auth-card {
    max-width: 520px;
    margin: 0 auto;
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 12px;
    padding: 1rem;
    display: grid;
    gap: 0.8rem;
}

.xs-auth-form {
    display: grid;
    gap: 0.5rem;
}

.xs-auth-label {
    display: block;
    font-size: 0.82rem;
    color: var(--xs-muted);
    font-weight: 600;
}

.xs-form-input {
    width: 100%;
    border: 1px solid var(--xs-border);
    border-radius: 8px;
    padding: 0.55rem 0.65rem;
    font-size: 0.92rem;
}

.xs-auth-field-errors {
    color: #b42318;
    font-size: 0.82rem;
}

.xs-auth-help-text {
    color: var(--xs-muted);
    font-size: 0.8rem;
}

.xs-auth-switch {
    color: #475467;
    font-size: 0.9rem;
}

.xs-auth-switch a {
    color: var(--xs-primary);
    text-decoration: none;
    font-weight: 600;
}

.xs-auth-separator {
    color: #98a2b3;
    margin: 0 0.2rem;
}

.xs-listing-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    margin-bottom: 1rem;
}

.xs-listing-count {
    color: var(--xs-muted);
    font-weight: 500;
}

.xs-sort-form {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.xs-sort-form label {
    color: var(--xs-muted);
    font-size: 0.9rem;
}

.xs-sort-form select {
    border: 1px solid var(--xs-border);
    border-radius: 8px;
    padding: 0.45rem 0.65rem;
    background: #fff;
}

.xs-product-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.xs-product-card {
    background: var(--xs-surface);
    border: 1px solid var(--xs-border);
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.xs-product-media {
    background: #f8f9fc;
    aspect-ratio: 4 / 3;
    display: block;
    text-decoration: none;
}

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

.xs-product-media-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #98a2b3;
    font-size: 0.9rem;
}

.xs-product-content {
    padding: 0.95rem;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.xs-product-badges {
    display: flex;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.xs-product-badge {
    font-size: 0.72rem;
    font-weight: 700;
    border-radius: 20px;
    padding: 0.22rem 0.52rem;
    color: #fff;
}

.xs-product-badge-featured {
    background: var(--xs-featured);
}

.xs-product-badge-sale {
    background: var(--xs-sale);
}

.xs-product-badge-variable {
    background: var(--xs-variable);
}

.xs-product-title {
    margin: 0;
    font-size: 1rem;
    line-height: 1.35;
}

.xs-product-title a {
    color: inherit;
    text-decoration: none;
}

.xs-product-description {
    margin: 0;
    color: var(--xs-muted);
    font-size: 0.9rem;
    min-height: 2.6em;
}

.xs-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
}

.xs-product-price {
    font-weight: 700;
    color: var(--xs-primary-dark);
}

.xs-btn {
    display: inline-block;
    text-decoration: none;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.45rem 0.68rem;
}

.xs-btn-outline {
    border: 1px solid var(--xs-border);
    color: #344054;
}

.xs-btn-outline:hover {
    border-color: var(--xs-primary);
    color: var(--xs-primary);
}

.xs-btn-primary {
    border: 1px solid var(--xs-primary);
    background: var(--xs-primary);
    color: #fff;
}

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

.xs-btn-ghost {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
}

.xs-btn-ghost:hover {
    border-color: #98a2b3;
}

.xs-product-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.xs-product-scaffold-tools {
    margin-top: 0.55rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.xs-scaffold-toggle {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.34rem 0.56rem;
    cursor: pointer;
}

.xs-scaffold-toggle.is-active {
    border-color: #98a2b3;
    background: #f2f4f7;
    color: #1f2937;
}

.xs-pagination {
    margin-top: 1.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
}

.xs-pagination-link {
    border: 1px solid var(--xs-border);
    border-radius: 8px;
    padding: 0.42rem 0.7rem;
    text-decoration: none;
    color: #344054;
    background: #fff;
}

.xs-pagination-link.is-disabled {
    color: #98a2b3;
    pointer-events: none;
}

.xs-pagination-current {
    color: var(--xs-muted);
    font-size: 0.9rem;
}

.xs-empty {
    border: 1px dashed #cdd5df;
    border-radius: 12px;
    padding: 1rem;
    background: #fff;
    color: #475467;
}

.xs-product-page {
    padding-top: 1.2rem;
}

.xs-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
    margin-bottom: 1rem;
    color: var(--xs-muted);
    font-size: 0.9rem;
}

.xs-breadcrumbs a {
    color: var(--xs-primary);
    text-decoration: none;
}

.xs-product-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 14px;
    padding: 1.2rem;
}

.xs-gallery-main {
    background: #f8f9fc;
    border-radius: 12px;
    border: 1px solid var(--xs-border);
    overflow: hidden;
    aspect-ratio: 5 / 4;
}

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

.xs-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #98a2b3;
}

.xs-gallery-thumbs {
    margin-top: 0.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.xs-gallery-thumb {
    border: 1px solid var(--xs-border);
    border-radius: 8px;
    padding: 0;
    background: #fff;
    width: 70px;
    height: 70px;
    cursor: pointer;
    overflow: hidden;
}

.xs-gallery-thumb.is-active {
    border-color: var(--xs-primary);
    box-shadow: 0 0 0 1px var(--xs-primary);
}

.xs-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.xs-product-summary h1 {
    margin: 0;
    font-size: clamp(1.3rem, 1.8vw, 1.8rem);
}

.xs-product-summary .xs-back-link {
    color: var(--xs-primary);
    margin-bottom: 0.4rem;
}

.xs-product-meta {
    margin-top: 0.5rem;
    color: var(--xs-muted);
    font-size: 0.9rem;
}

.xs-product-price-box {
    margin-top: 1rem;
    background: #f8faff;
    border: 1px solid #d9e4ff;
    border-radius: 12px;
    padding: 0.8rem;
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
}

.xs-price-label {
    color: var(--xs-muted);
    font-size: 0.8rem;
}

.xs-price-value {
    font-size: 1.3rem;
    color: var(--xs-primary-dark);
}

.xs-taxonomy-row {
    margin-top: 0.75rem;
    color: #344054;
}

.xs-taxonomy-row strong {
    display: inline-block;
    min-width: 90px;
}

.xs-taxonomy-row a {
    color: var(--xs-primary);
    text-decoration: none;
}

.xs-product-tabs {
    margin-top: 1.2rem;
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 14px;
    overflow: hidden;
}

.xs-tab-buttons {
    display: flex;
    gap: 0.4rem;
    padding: 0.8rem 0.9rem;
    border-bottom: 1px solid var(--xs-border);
    background: #f8f9fc;
}

.xs-tab-btn {
    border: 0;
    background: #e6ebf5;
    color: #344054;
    border-radius: 999px;
    font-weight: 600;
    padding: 0.45rem 0.85rem;
    cursor: pointer;
}

.xs-tab-btn.is-active {
    background: var(--xs-primary);
    color: #fff;
}

.xs-tab-panel {
    display: none;
    padding: 1rem;
}

.xs-tab-panel.is-active {
    display: block;
}

.xs-product-description {
    line-height: 1.65;
    color: #344054;
}

.attributes table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid var(--xs-border);
}

.attributes th,
.attributes td {
    border: 1px solid var(--xs-border);
    padding: 0.6rem 0.75rem;
    text-align: left;
}

.attributes th {
    background: #f8f9fc;
    width: 220px;
}

.xs-related-products {
    margin-top: 1.5rem;
}

.xs-related-products h2 {
    margin: 0 0 0.85rem;
}

.xs-quick-view-modal[hidden] {
    display: none;
}

.xs-quick-view-modal {
    position: fixed;
    inset: 0;
    z-index: 90;
}

.xs-quick-view-overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
}

.xs-quick-view-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(800px, calc(100% - 2rem));
    background: #fff;
    border-radius: 14px;
    border: 1px solid var(--xs-border);
    box-shadow: 0 30px 70px rgba(16, 24, 40, 0.22);
    padding: 1rem;
}

.xs-quick-view-close {
    position: absolute;
    top: 0.55rem;
    right: 0.7rem;
    border: 0;
    background: transparent;
    font-size: 1.45rem;
    color: #667085;
    cursor: pointer;
}

.xs-quick-view-grid {
    display: grid;
    gap: 1rem;
    grid-template-columns: 1fr 1.1fr;
}

.xs-quick-view-image-wrap {
    position: relative;
    border: 1px solid var(--xs-border);
    border-radius: 10px;
    overflow: hidden;
    background: #f8f9fc;
    aspect-ratio: 4 / 3;
}

.xs-quick-view-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
}

.xs-quick-view-image-wrap img.is-visible {
    display: block;
}

.xs-quick-view-placeholder {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #98a2b3;
}

.xs-quick-view-placeholder[hidden] {
    display: none;
}

.xs-quick-view-content {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.xs-quick-view-sku {
    color: var(--xs-muted);
    font-size: 0.86rem;
}

.xs-quick-view-content h3 {
    margin: 0;
    font-size: 1.3rem;
}

.xs-quick-view-price {
    color: var(--xs-primary-dark);
    font-size: 1.1rem;
    font-weight: 700;
}

.xs-quick-view-content p {
    margin: 0;
    color: #344054;
    line-height: 1.5;
}

.xs-quick-view-extra {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.xs-quick-view-section h4 {
    margin: 0 0 0.3rem;
    font-size: 0.92rem;
}

.xs-quick-view-section ul {
    margin: 0;
    padding-left: 1rem;
    color: #475467;
    font-size: 0.84rem;
    line-height: 1.4;
}

.xs-quick-view-empty-note {
    color: #98a2b3;
    font-size: 0.82rem;
}

.xs-collection-modal[hidden] {
    display: none;
}

.xs-collection-modal {
    position: fixed;
    inset: 0;
    z-index: 92;
}

.xs-collection-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(620px, calc(100% - 2rem));
    max-height: 82vh;
    overflow: auto;
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 14px;
    box-shadow: 0 30px 70px rgba(16, 24, 40, 0.22);
    padding: 0.9rem;
}

.xs-collection-tabs {
    display: inline-flex;
    gap: 0.45rem;
    margin-bottom: 0.7rem;
}

.xs-collection-tab {
    border: 1px solid #d0d5dd;
    background: #fff;
    color: #344054;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0.35rem 0.74rem;
    cursor: pointer;
}

.xs-collection-tab.is-active {
    border-color: var(--xs-primary);
    background: #eaf0ff;
    color: var(--xs-primary-dark);
}

.xs-collection-panel {
    display: none;
}

.xs-collection-panel.is-active {
    display: block;
}

.xs-compare-page-link {
    margin-bottom: 0.6rem;
}

.xs-collection-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 0.45rem;
}

.xs-collection-item {
    border: 1px solid var(--xs-border);
    border-radius: 10px;
    padding: 0.6rem 0.7rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.6rem;
}

.xs-collection-item a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.xs-collection-item button {
    border: 1px solid #d0d5dd;
    background: #fff;
    border-radius: 7px;
    font-size: 0.78rem;
    padding: 0.26rem 0.48rem;
    cursor: pointer;
}

.xs-collection-panel .xs-empty {
    margin-top: 0.4rem;
}

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

.xs-compare-table-wrap {
    background: #fff;
    border: 1px solid var(--xs-border);
    border-radius: 12px;
    overflow-x: auto;
}

.xs-compare-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 780px;
}

.xs-compare-table th,
.xs-compare-table td {
    border: 1px solid var(--xs-border);
    padding: 0.7rem;
    text-align: left;
    vertical-align: top;
}

.xs-compare-table thead th {
    background: #f8f9fc;
}

.xs-compare-product-head {
    display: grid;
    gap: 0.55rem;
}

.xs-compare-product-head img {
    width: 100%;
    max-width: 210px;
    border-radius: 8px;
    border: 1px solid var(--xs-border);
    object-fit: cover;
    aspect-ratio: 4 / 3;
}

.xs-compare-product-head a {
    color: #1f2937;
    text-decoration: none;
    font-weight: 600;
}

.xs-compare-variant-list {
    margin: 0;
    padding-left: 1rem;
    color: #475467;
    font-size: 0.84rem;
    line-height: 1.4;
}

.xs-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(16, 24, 40, 0.95);
    color: #fff;
    z-index: 70;
    padding: 0.7rem 1rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
    transform: translateY(100%);
    transition: transform 0.2s ease;
}

.xs-sticky-cta.is-visible {
    transform: translateY(0);
}

.xs-sticky-cta-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.xs-sticky-cta-info strong {
    max-width: min(48vw, 560px);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.xs-sticky-cta-actions {
    display: inline-flex;
    gap: 0.5rem;
}

.xs-sticky-cta .xs-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.xs-sticky-cta .xs-btn-primary {
    background: #fff;
    color: #101828;
    border-color: #fff;
}

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

.xs-footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--xs-muted);
    font-size: 0.86rem;
    padding: 1rem 0;
}

@media (max-width: 900px) {
    .xs-header-main {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .xs-header-tools {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

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

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

    .xs-listing-sidebar {
        position: static;
    }

    .xs-product-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .xs-listing-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .xs-footer-inner {
        flex-direction: column;
    }

    .xs-product-actions {
        flex-wrap: wrap;
    }

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

    .xs-quick-view-extra {
        grid-template-columns: 1fr;
    }

    .xs-sticky-cta {
        flex-direction: column;
        align-items: stretch;
    }

    .xs-sticky-cta-info {
        justify-content: space-between;
    }

    .xs-sticky-cta-actions {
        justify-content: flex-end;
    }
}
