.csp-product,
.csp-product *,
.csp-desktop-recommendations,
.csp-desktop-recommendations * {
    box-sizing: border-box;
}

.csp-product {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, .85fr);
    gap: 48px;
    color: #000;
    font-family: inherit;
    --csp-collapsed-sheet: 150px;
    --csp-gallery-height: 92vh;
    --csp-gallery-header-offset: 0px;
    --csp-gallery-sticky-top: 50px;
    --csp-mobile-top-pull: 0px;
    --csp-rail-visible-count: 6;
    --csp-rail-gap: 8px;
}

.csp-left {
    min-width: 0;
}

.csp-gallery {
    position: sticky;
    top: var(--csp-gallery-sticky-top);
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 10px;
    align-items: stretch;
}

.csp-main-frame {
    width: 100%;
    height: calc(var(--csp-gallery-height) - var(--csp-gallery-header-offset));
    max-height: calc(var(--csp-gallery-height) - var(--csp-gallery-header-offset));
    min-height: 360px;
    overflow: hidden;
    background: #f3f3f3;
    cursor: zoom-in;
    grid-column: 2;
    grid-row: 1;
}

.csp-main-frame img,
.csp-mobile-slide img,
.csp-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csp-main-image {
    transition: transform .18s ease;
}

.csp-main-image.is-zooming {
    transform: scale(1.55);
}

.csp-thumb-wrap {
    position: relative;
    margin-top: 0;
    grid-column: 1;
    grid-row: 1;
    min-height: 0;
}

.csp-thumbs {
    display: grid;
    grid-auto-rows: 118px;
    grid-auto-flow: row;
    gap: 8px;
    max-height: calc(var(--csp-gallery-height) - var(--csp-gallery-header-offset));
    overflow-y: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.csp-thumbs::-webkit-scrollbar {
    display: none;
}

.csp-thumb {
    height: 118px;
    padding: 0;
    border: 1px solid transparent;
    background: #f3f3f3;
    cursor: pointer;
    opacity: .58;
}

.csp-thumb.is-active {
    border-color: #000;
    opacity: 1;
}

.csp-thumb-next {
    position: absolute;
    top: 50%;
    right: 10px;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #000;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.csp-lightbox {
    position: fixed;
    inset: 0;
    z-index: 2147483600;
    display: none;
    background: #000;
    height: 100vh;
    height: calc(var(--csp-vh, 1vh) * 100);
}

body.csp-lightbox-lock {
    overflow: hidden !important;
}

.csp-lightbox.is-open {
    display: block;
}

.csp-lightbox-top {
    position: fixed;
    top: 28px;
    right: 28px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
}

.csp-lightbox-count {
    font-size: 14px;
    font-weight: 600;
}

.csp-lightbox-close,
.csp-lightbox-zoom {
    width: 56px;
    height: 56px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
}

.csp-lightbox-zoom {
    font-size: 24px;
}

.csp-lightbox-thumbs {
    position: fixed;
    left: 30px;
    top: 20vh;
    bottom: 40px;
    z-index: 3;
    display: grid;
    align-content: start;
    gap: 10px;
    width: 56px;
    overflow-y: auto;
    scrollbar-width: none;
}

.csp-lightbox-thumbs::-webkit-scrollbar {
    display: none;
}

.csp-lightbox-thumbs button {
    width: 56px;
    height: 72px;
    padding: 0;
    border: 0;
    border-bottom: 3px solid transparent;
    background: #eee;
    opacity: .72;
    cursor: pointer;
}

.csp-lightbox-thumbs button.is-active {
    border-bottom-color: #000;
    opacity: 1;
}

.csp-lightbox-thumbs img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csp-lightbox-track {
    display: flex;
    width: 100%;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.csp-lightbox-track::-webkit-scrollbar {
    display: none;
}

.csp-lightbox-slide {
    flex: 0 0 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    padding: 28px 96px;
    background: #000;
}

.csp-lightbox-slide img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center;
    transition: transform .18s ease;
    cursor: zoom-in;
}

.csp-lightbox.is-zoomed .csp-lightbox-slide img {
    cursor: grab;
}

.csp-lightbox-arrow {
    position: fixed;
    top: 50%;
    z-index: 4;
    width: 42px;
    height: 88px;
    transform: translateY(-50%);
    border: 0;
    background: #111;
    color: #fff;
    font-size: 34px;
    line-height: 1;
    cursor: pointer;
}

.csp-lightbox-prev {
    left: 0;
}

.csp-lightbox-next {
    right: 0;
}

.csp-mobile-gallery,
.csp-mobile-dots {
    display: none;
}

.csp-right {
    position: relative;
    min-width: 0;
}

.csp-sticky-buy {
    display: block;
}

.csp-mobile-handle,
.csp-mobile-add-button {
    display: none;
}

.csp-wishlist-toggle.csp-mobile-wishlist {
    display: none;
}

.csp-brand,
.csp-breadcrumb {
    display: block;
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.2;
}

.csp-mobile-eyebrow {
    display: none;
}

.csp-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

.csp-breadcrumb a {
    color: inherit;
    text-decoration: none;
}

.csp-breadcrumb a:hover {
    text-decoration: underline;
    text-underline-offset: 2px;
}

.csp-breadcrumb-separator {
    opacity: .55;
}

.csp-title {
    margin: 0;
    font-size: 19px;
    font-weight: 400;
    line-height: 1.25;
}

.csp-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.csp-price {
    flex: 0 0 auto;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
    white-space: nowrap;
}

.csp-subtitle {
    margin: 4px 0 0;
    font-size: 14px;
    line-height: 1.45;
}

.csp-sku {
    float: right;
    margin-top: -22px;
    font-size: 12px;
}

.csp-cart-form {
    clear: both;
}

.csp-hidden-select {
    display: none !important;
}

.csp-colors {
    display: flex;
    gap: 12px;
    margin: 10px 0 24px;
    flex-wrap: wrap;
}

.csp-color-meta {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin: 18px 0 8px;
    font-size: 13px;
    line-height: 1.25;
}

.csp-color-current,
.csp-product-id {
    min-width: 0;
}

.csp-product-id {
    flex: 0 0 auto;
    text-align: right;
}

.csp-swatch {
    width: 36px;
    height: 36px;
    padding: 0;
    border: 1px solid #999;
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
}

.csp-swatch span {
    display: block;
    width: 100%;
    height: 100%;
    border: 3px solid #fff;
    border-radius: 999px;
}

.csp-swatch.is-selected {
    border-color: #000;
}

.csp-colors.csp-needs-selection,
.csp-size.csp-needs-selection .csp-size-trigger {
    border-color: #8a1f1f;
    box-shadow: 0 0 0 1px #8a1f1f;
}

.csp-colors.csp-needs-selection {
    outline: 1px solid #8a1f1f;
    outline-offset: 4px;
}

.csp-model-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin: 0 0 8px;
    font-size: 13px;
}

.csp-model-row a,
.csp-find-size,
.csp-payment a {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.csp-find-size {
    display: inline-flex;
    gap: 6px;
    align-items: center;
    margin: 0 0 12px;
    font-size: 13px;
}

.csp-fit-dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: #000;
}

.csp-size {
    position: relative;
    margin-bottom: 24px;
}

.csp-size-trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-align: left;
    cursor: pointer;
}

.csp-chevron {
    width: 11px;
    height: 11px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-3px);
}

.csp-size-menu {
    display: none;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
    padding: 10px 0 0;
}

.csp-size.is-open .csp-size-menu {
    display: grid;
}

.csp-size-menu button {
    min-height: 34px;
    padding: 6px 6px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.15;
    font-size: 12px;
}

.csp-size-menu button.is-selected {
    background: #000;
    color: #fff;
}

.csp-delivery-row {
    display: flex;
    gap: 8px;
    margin-bottom: 8px;
}

.csp-custom-buttons {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
}

.csp-custom-buttons::-webkit-scrollbar {
    display: none;
}

.csp-custom-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.csp-custom-button.is-active {
    background: #000;
    color: #fff;
}

.csp-delivery {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: default;
}

.csp-delivery.is-active {
    background: #000;
    color: #fff;
}

.csp-shipping-methods {
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;
    margin: 0 0 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

.csp-shipping-methods::-webkit-scrollbar {
    display: none;
}

.csp-shipping-method {
    flex: 0 0 auto;
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
}

.csp-shipping-method.is-active {
    background: #000;
    color: #fff;
}

.csp-actions {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 2px;
}

.csp-add-button,
.csp-wishlist {
    min-height: 42px;
    border: 1px solid #000;
    background: #000;
    color: #fff;
    cursor: pointer;
}

.csp-add-button {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0;
    width: 100%;
    padding: 0 14px;
}

.csp-add-button:disabled {
    opacity: .45;
    cursor: not-allowed;
}

.csp-wishlist {
    background: #000;
}

.csp-wishlist-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid #000;
    background: #fff;
    color: #000;
    cursor: pointer;
    transition: background .16s ease, color .16s ease, opacity .16s ease;
}

.csp-wishlist-toggle:disabled {
    opacity: .55;
    cursor: wait;
}

.csp-wishlist-toggle svg {
    width: 17px;
    height: 17px;
    display: block;
    overflow: visible;
}

.csp-wishlist-toggle svg:not(.e-font-icon-svg) path {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.25;
    vector-effect: non-scaling-stroke;
}

.csp-wishlist-toggle i,
.csp-wishlist-toggle .e-font-icon-svg {
    font-size: 17px;
    width: 17px;
    height: 17px;
}

.csp-wishlist-toggle.is-active {
    background: #000;
    color: #fff;
}

.csp-wishlist-toggle.is-active svg:not(.e-font-icon-svg) path {
    fill: currentColor;
}

.csp-wishlist-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.csp-wishlist-icon-active,
.csp-wishlist-toggle.is-active .csp-wishlist-icon-inactive {
    display: none;
}

.csp-wishlist-toggle.is-active .csp-wishlist-icon-active {
    display: inline-flex;
}

.csp-action-wishlist {
    width: 100%;
    min-height: 42px;
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.csp-action-wishlist.is-active {
    background: #000 !important;
    color: #fff !important;
    border-color: #000 !important;
}

.csp-form-message {
    min-height: 18px;
    margin-top: 8px;
    color: #9b1c1c;
    font-size: 12px;
}

.csp-payment {
    margin: 8px 0 38px;
    font-size: 13px;
    line-height: 1.35;
}

.csp-story {
    margin: 0 0 34px;
    font-size: 14px;
    line-height: 1.62;
}

.csp-story h2 {
    margin: 0 0 14px;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.2;
}

.csp-sustainability {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 0 0 40px;
    font-size: 14px;
}

.csp-sustainability span {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .04em;
    border: 1px solid currentColor;
    padding: 4px 5px;
}

.csp-detail-links {
    display: grid;
    gap: 18px;
    justify-items: start;
}

.csp-detail-link {
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 3px;
    cursor: pointer;
}

.csp-detail-drawer {
    position: fixed;
    inset: 0;
    z-index: 2147483000;
    display: none;
    justify-content: flex-end;
    background: rgba(0, 0, 0, .18);
}

.csp-detail-drawer.is-open {
    display: flex;
}

.csp-detail-panel {
    width: min(468px, 100vw);
    height: 100vh;
    min-height: 100vh;
    background: #fff;
    color: #000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.csp-detail-head {
    position: sticky;
    top: 0;
    flex: 0 0 auto;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 24px 30px 18px;
    border-bottom: 1px solid #eee;
    background: #fff;
}

.csp-detail-tabs {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.csp-detail-tabs button,
.csp-detail-done {
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.csp-detail-tabs button.is-active {
    padding: 4px 6px;
    background: #eee;
    text-decoration: none;
}

.csp-detail-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
    padding: 30px;
    font-size: 14px;
    line-height: 1.65;
}

.csp-detail-actions {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 8px;
    padding: 14px 26px;
    border-top: 1px solid #ddd;
    background: #fff;
}

.csp-detail-actions button,
.csp-detail-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid #000;
    color: #000;
    text-decoration: none;
}

.csp-detail-actions button {
    background: #fff;
}

.csp-detail-actions a {
    background: #000;
    color: #fff;
}

.csp-detail-content {
    display: none;
}

.csp-detail-content.is-active {
    display: block;
}

.csp-detail-content h4 {
    margin: 26px 0 10px;
    font-size: 14px;
}

.csp-empty {
    padding: 24px;
    border: 1px solid #ddd;
}

.csp-product-rail-section {
    margin: 34px 0 0;
}

.csp-product-rail-section h3 {
    margin: 0 0 14px;
    font-size: 14px;
    font-weight: 400;
}

.csp-product-rail {
    --csp-rail-visible-count: 6;
    --csp-rail-gap: 8px;
    display: flex;
    gap: var(--csp-rail-gap);
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
}

.csp-product-rail-shell {
    position: relative;
}

.csp-rail-arrow {
    position: absolute;
    top: 38%;
    z-index: 3;
    display: none;
    width: 48px;
    height: 48px;
    transform: translateY(-50%);
    border: 1px solid #000;
    background: #fff;
    color: #000;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
}

.csp-rail-arrow.is-visible {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.csp-rail-prev {
    left: 0;
}

.csp-rail-next {
    right: 0;
}

.csp-product-rail::-webkit-scrollbar {
    display: none;
}

.csp-rail-card {
    flex: 0 0 auto;
    min-width: 0;
    scroll-snap-align: start;
}

.csp-rail-image-wrap {
    position: relative;
}

.csp-rail-image {
    display: block;
    aspect-ratio: 3 / 4;
    width: 100%;
    height: auto;
    overflow: hidden;
    background: #f3f3f3;
}

.csp-rail-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.csp-rail-wishlist {
    position: static;
    flex: 0 0 auto;
    width: 24px;
    height: 24px;
    background: transparent !important;
    border-color: transparent !important;
    color: #000 !important;
}

.csp-rail-wishlist.is-active {
    background: transparent !important;
    border-color: transparent !important;
    color: #000 !important;
}

.csp-rail-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
    font-size: 13px;
    line-height: 1.35;
}

.csp-rail-row a {
    min-width: 0;
    color: inherit;
    text-decoration: none;
}

.csp-rail-price {
    margin-top: 5px;
    font-size: 13px;
}

.csp-mobile-recommendations {
    display: none;
}

.csp-desktop-recommendations {
    --csp-rail-visible-count: 6;
    --csp-rail-gap: 8px;
    width: 100vw;
    margin: 62px 0 90px calc(50% - 50vw);
}

.csp-desktop-recommendations .csp-product-rail-section {
    margin: 0 0 70px;
}

.csp-desktop-recommendations .csp-product-rail-section h3 {
    padding: 0 48px;
    margin-bottom: 18px;
}

.csp-desktop-recommendations .csp-product-rail {
    gap: var(--csp-rail-gap);
    padding: 0 48px;
}

.csp-desktop-recommendations .csp-rail-row,
.csp-desktop-recommendations .csp-rail-price {
    padding: 0 4px;
}

@media (max-width: 767px) {
    body.csp-mobile-scroll-lock {
        overflow: hidden;
        overscroll-behavior: none;
    }

.csp-product {
        display: block;
        min-height: 100vh;
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        overscroll-behavior: contain;
        background: #fff;
    }

    body.single-product .csp-product {
        margin-top: calc(-1 * var(--csp-mobile-top-pull, 0px));
    }

    .csp-gallery {
        position: relative;
        top: auto;
        display: block;
        width: 100vw;
        max-width: 100vw;
        margin: 0;
    }

    .csp-main-frame,
    .csp-thumb-wrap {
        display: none;
    }

    .csp-mobile-gallery {
        display: flex;
        width: 100vw;
        max-width: 100vw;
        height: calc(100vh - var(--csp-collapsed-sheet, 150px));
        height: calc(100dvh - var(--csp-collapsed-sheet, 150px));
        min-height: 0;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        background: #f3f3f3;
        touch-action: pan-x;
    }

    .csp-mobile-gallery::-webkit-scrollbar {
        display: none;
    }

    .csp-mobile-slide {
        flex: 0 0 100%;
        height: 100%;
        aspect-ratio: auto;
        scroll-snap-align: start;
    }

    .csp-mobile-slide img {
        object-fit: cover;
        object-position: center top;
    }

    .csp-mobile-dots {
        display: flex;
        justify-content: center;
        gap: 6px;
        margin: 0;
        position: absolute;
        left: 0;
        right: 0;
        bottom: 16px;
        z-index: 35;
        pointer-events: none;
    }

    .csp-mobile-dots span {
        width: 6px;
        height: 2px;
        background: #bbb;
    }

    .csp-mobile-dots span.is-active {
        width: 16px;
        background: #000;
    }

    .csp-right {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 40;
        display: flex;
        flex-direction: column;
        height: var(--csp-collapsed-sheet);
        max-height: var(--csp-collapsed-sheet);
        min-height: 0;
        width: 100vw;
        margin-top: 0;
        border-top: 1px solid #e5e5e5;
        background: #fff;
        overflow: hidden;
        box-shadow: 0 -10px 26px rgba(0, 0, 0, .08);
        transition: height .28s cubic-bezier(.22, 1, .36, 1), max-height .28s cubic-bezier(.22, 1, .36, 1), border-radius .28s cubic-bezier(.22, 1, .36, 1);
        touch-action: pan-y;
    }

    .csp-right.is-expanded {
        height: min(56vh, 520px);
        max-height: min(56vh, 520px);
    }

    .csp-mobile-handle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 64px;
        height: 18px;
        margin: 5px auto 5px;
        border-radius: 999px;
        background: rgba(0, 0, 0, .06);
        cursor: pointer;
        animation: cspHandleFloat 1.8s ease-in-out infinite;
    }

    .csp-mobile-handle::before {
        content: "";
        width: 42px;
        height: 4px;
        border-radius: 999px;
        background: #b8b8b8;
        transition: width .22s ease, background .22s ease, transform .22s ease;
    }

    .csp-mobile-handle:active::before,
    .csp-mobile-handle.is-pulsing::before,
    .csp-right.is-expanded .csp-mobile-handle::before {
        width: 34px;
        background: #8f8f8f;
    }

    .csp-right.is-expanded .csp-mobile-handle {
        animation: none;
    }

    @keyframes cspHandleFloat {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-2px);
        }
    }

    .csp-sticky-buy {
        display: grid;
        grid-template-columns: 1fr 28px 82px;
        align-items: center;
        gap: 8px;
        padding: 10px 14px 8px;
    }

    .csp-sticky-buy .csp-subtitle {
        display: none;
    }

    .csp-sticky-buy .csp-breadcrumb {
        display: flex;
        align-items: center;
        gap: 4px;
        width: 100%;
        margin: 0 0 4px;
        overflow: hidden;
        white-space: nowrap;
        font-size: 12px;
        line-height: 1.2;
    }

    .csp-sticky-buy .csp-breadcrumb a,
    .csp-sticky-buy .csp-breadcrumb span {
        flex: 0 0 auto;
    }

    .csp-mobile-eyebrow {
        display: none;
        margin: 0 0 4px;
        font-size: 12px;
        line-height: 1.2;
    }

    .csp-title {
        margin: 0 0 4px;
        font-size: 14px;
    }

    .csp-title-row {
        display: block;
    }

    .csp-price {
        margin: 0;
        font-size: 13px;
    }

    .csp-wishlist-toggle.csp-mobile-wishlist {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 34px;
        height: 34px;
        border: 0;
        background: transparent;
        font-size: 18px;
    }

    .csp-mobile-wishlist.is-active {
        background: transparent;
        color: #000;
    }

    .csp-mobile-add-button {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 82px;
        min-height: 42px;
        border: 1px solid #000;
        background: #000;
        color: #fff;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.05;
        text-align: center;
    }

    .csp-mobile-wishlist svg,
    .csp-wishlist svg {
        width: 18px;
        height: 18px;
    }

    .csp-info-scroll {
        flex: 1 1 auto;
        overflow-y: auto;
        padding: 0 18px 22px;
        touch-action: pan-y;
        overscroll-behavior: contain;
    }

    .csp-actions {
        display: none;
    }

    .csp-add-button {
        min-height: 42px;
        padding: 0 10px;
        font-size: 13px;
        line-height: 1.05;
    }

    .csp-add-button span {
        display: none;
    }

    .csp-color-block {
        display: flex;
        flex-direction: column;
        gap: 6px;
        margin-top: 8px;
    }

    .csp-color-meta {
        order: 2;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        margin-top: 0;
        line-height: 1.25;
    }

    .csp-color-current {
        min-width: 0;
    }

    .csp-product-id {
        flex: 0 0 auto;
    }

    .csp-subtitle,
    .csp-sku,
    .csp-model-row,
    .csp-find-size,
    .csp-size,
    .csp-delivery-row,
    .csp-payment,
    .csp-story,
    .csp-sustainability,
    .csp-detail-links {
        margin-left: 0;
        margin-right: 0;
    }

    .csp-colors {
        order: 1;
        margin-top: 0;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .csp-colors::-webkit-scrollbar {
        display: none;
    }

    .csp-swatch {
        flex: 0 0 28px;
        width: 28px;
        height: 28px;
    }

    .csp-detail-drawer {
        align-items: flex-end;
        justify-content: center;
    }

    .csp-detail-panel {
        width: 100vw;
        height: 78vh;
        min-height: 0;
        max-height: 88vh;
        border-radius: 0;
    }

    .csp-detail-head {
        padding: 18px 20px 14px;
    }

    .csp-detail-tabs {
        gap: 14px;
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .csp-detail-tabs::-webkit-scrollbar {
        display: none;
    }

    .csp-detail-body {
        padding: 24px 20px 36px;
    }

    .csp-mobile-recommendations {
        display: block;
    }

    .csp-desktop-recommendations {
        display: none;
    }

    .csp-lightbox {
        background: #000;
        height: 100vh;
        height: calc(var(--csp-vh, 1vh) * 100);
    }

    .csp-lightbox-top {
        top: 0;
        left: 0;
        right: 0;
        height: 76px;
        justify-content: space-between;
        padding: 0 24px;
        background: #000;
        color: #fff;
    }

    .csp-lightbox-count {
        color: #fff;
    }

    .csp-lightbox-close,
    .csp-lightbox-zoom {
        width: 38px;
        height: 38px;
        border: 0;
        background: transparent;
        color: #fff;
        font-size: 34px;
    }

    .csp-lightbox-zoom {
        margin-left: auto;
        font-size: 20px;
    }

    .csp-lightbox-thumbs {
        display: none;
    }

    .csp-lightbox-track {
        height: 100vh;
        height: calc(var(--csp-vh, 1vh) * 100);
        padding-top: 76px;
        background: #000;
    }

    .csp-lightbox-slide {
        height: calc(100vh - 76px);
        height: calc((var(--csp-vh, 1vh) * 100) - 76px);
        padding: 0;
        background: #000;
        overflow: hidden;
        touch-action: pan-x pinch-zoom;
    }

    .csp-lightbox-slide img {
        width: auto;
        height: auto;
        max-width: 100%;
        max-height: calc(100vh - 76px);
        max-height: calc((var(--csp-vh, 1vh) * 100) - 76px);
        object-fit: contain;
        object-position: center center;
        background: transparent;
        touch-action: none;
    }

    .csp-lightbox-arrow {
        top: 52%;
        width: 32px;
        height: 32px;
        border: 0;
        background: rgba(0, 0, 0, .25);
        color: #fff;
        font-size: 24px;
    }

    .csp-lightbox-prev {
        left: 16px;
    }

    .csp-lightbox-next {
        right: 16px;
    }
}
