.ds-bw {
    --ds-bw-orange: #d9532b;
    --ds-bw-orange-dark: #bd3e1c;
    --ds-bw-green: #1d9c38;
    --ds-bw-ink: #151515;
    --ds-bw-muted: #6c6c6c;
    --ds-bw-border: #e8e3df;
    --ds-bw-surface: #f8f5f2;
    width: 100%;
    color: var(--ds-bw-ink);
    font: inherit;
}

.ds-bw *,
.ds-bw *::before,
.ds-bw *::after {
    box-sizing: border-box;
}

.ds-bw__wizard,
.ds-bw-cart {
    padding: clamp(1.25rem, 3vw, 3rem);
    border: 1px solid var(--ds-bw-border);
    border-radius: 1.75rem;
    background: #fff;
    box-shadow: 0 20px 55px rgba(26, 22, 18, 0.08);
}

.ds-bw__header {
    max-width: 760px;
    margin-bottom: 2rem;
}

.ds-bw__title-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ds-bw__title-row h2 {
    min-width: 0;
}

.ds-bw__back {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    min-height: 2.5rem;
    padding: 0.45rem 0.85rem;
    border: 2px solid var(--ds-bw-orange);
    border-radius: 999px;
    background: transparent;
    color: var(--ds-bw-orange);
    cursor: pointer;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
}

.ds-bw__back:hover,
.ds-bw__back:focus-visible {
    background: rgba(217, 83, 43, 0.08);
    outline: none;
}

.ds-bw__header h2,
.ds-bw-cart h2 {
    margin: 0 0 0.6rem;
    color: var(--ds-bw-ink);
    font-size: clamp(1.75rem, 3vw, 2.8rem);
    line-height: 1.1;
}

.ds-bw__header p,
.ds-bw__step-heading h3,
.ds-bw__step-heading span,
.ds-bw-cart h3,
.ds-bw-cart p {
    margin-top: 0;
}

.ds-bw__eyebrow,
.ds-bw__step-heading span {
    color: var(--ds-bw-orange);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ds-bw__progress {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.75rem;
    margin: 0 0 2.5rem;
    padding: 0;
    list-style: none;
}

.ds-bw__progress li {
    min-width: 0;
}

.ds-bw__progress button {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    width: 100%;
    min-height: 3.25rem;
    padding: 0.55rem 0.75rem;
    border: 1px solid var(--ds-bw-border);
    border-radius: 0.85rem;
    background: var(--ds-bw-surface);
    color: #888;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    text-align: left;
}

.ds-bw__progress-number {
    display: inline-flex;
    flex: 0 0 2rem;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--ds-bw-border);
    border-radius: 50%;
    background: #fff;
}

.ds-bw__progress button:disabled {
    cursor: default;
    opacity: 0.62;
}

.ds-bw__progress .is-active button,
.ds-bw__progress .is-complete button {
    color: var(--ds-bw-ink);
    opacity: 1;
}

.ds-bw__progress .is-active button {
    border-color: rgba(217, 83, 43, 0.4);
    background: rgba(217, 83, 43, 0.08);
}

.ds-bw__progress .is-active button .ds-bw__progress-number {
    border-color: var(--ds-bw-orange);
    background: var(--ds-bw-orange);
    color: #fff;
}

.ds-bw__progress .is-complete button .ds-bw__progress-number {
    border-color: var(--ds-bw-green);
    background: var(--ds-bw-green);
    color: #fff;
}

.ds-bw__progress-label {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
}

.ds-bw__progress-label--mobile {
    display: none;
}

.ds-bw__step[hidden],
.ds-bw [hidden] {
    display: none !important;
}

.ds-bw__step-heading {
    margin-bottom: 1.3rem;
}

.ds-bw__step-heading h3 {
    margin-bottom: 0;
    color: var(--ds-bw-ink);
    font-size: clamp(1.3rem, 2vw, 1.8rem);
}

.ds-bw__cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

.ds-bw-card {
    position: relative;
    display: flex;
    min-width: 0;
    min-height: 160px;
    padding: 0;
    overflow: hidden;
    border: 2px solid var(--ds-bw-border);
    border-radius: 1.2rem;
    background: #fff;
    color: var(--ds-bw-ink);
    cursor: pointer;
    font: inherit;
    text-align: left;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.ds-bw-card:hover,
.ds-bw-card:focus-visible {
    border-color: var(--ds-bw-orange);
    box-shadow: 0 12px 28px rgba(217, 83, 43, 0.14);
    outline: none;
    transform: translateY(-2px);
}

.ds-bw-card.is-selected {
    border-color: var(--ds-bw-green);
    box-shadow: 0 0 0 3px rgba(29, 156, 56, 0.14);
}

.ds-bw-card__visual {
    position: relative;
    flex: 0 0 42%;
    min-height: 156px;
    overflow: hidden;
    background: linear-gradient(135deg, #f2e7dc, #e8d5c3);
}

.ds-bw-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ds-bw-card__fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: rgba(217, 83, 43, 0.55);
    font-size: 3.5rem;
    font-weight: 700;
}

.ds-bw-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    padding: 1rem;
}

.ds-bw-card__content strong {
    font-size: 1.1rem;
    line-height: 1.25;
}

.ds-bw-card__content small {
    display: -webkit-box;
    overflow: hidden;
    color: var(--ds-bw-muted);
    font-size: 0.82rem;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.ds-bw-card__price {
    display: block;
    margin-top: 0.25rem;
    color: var(--ds-bw-ink);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.2;
}

.ds-bw-card__price .amount {
    color: inherit;
}

.ds-bw-card__check {
    position: absolute;
    top: 0.7rem;
    right: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1.7rem;
    height: 1.7rem;
    border-radius: 50%;
    background: var(--ds-bw-green);
    color: #fff;
    opacity: 0;
    transform: scale(0.75);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ds-bw-card.is-selected .ds-bw-card__check {
    opacity: 1;
    transform: scale(1);
}

.ds-bw__cards--compact,
.ds-bw__cards--length {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ds-bw__cards--compact .ds-bw-card,
.ds-bw__cards--length .ds-bw-card {
    min-height: 125px;
}

.ds-bw__cards--compact .ds-bw-card__visual,
.ds-bw__cards--length .ds-bw-card__visual {
    flex-basis: 38%;
    min-height: 121px;
}

.ds-bw-card--length {
    display: grid;
    grid-template-columns: 4rem minmax(0, 1fr);
    min-height: 105px !important;
}

.ds-bw-card--length .ds-bw-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 101px !important;
}

.ds-bw-card--length .ds-bw-card__content {
    padding: 0.8rem;
}

.ds-bw-card__ruler {
    position: relative;
    display: block;
    width: 2.65rem;
    height: 1.15rem;
    border: 2px solid var(--ds-bw-orange);
    border-radius: 0.2rem;
    background: rgba(255, 255, 255, 0.75);
    transform: rotate(-32deg);
}

.ds-bw-card__ruler::after {
    content: "";
    position: absolute;
    inset: 2px 3px auto;
    height: 0.48rem;
    background: repeating-linear-gradient(90deg, var(--ds-bw-orange) 0 1px, transparent 1px 6px);
}

.ds-bw-card--size .ds-bw-card__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ds-bw-card__measure {
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    color: var(--ds-bw-orange);
}

.ds-bw-card__measure svg {
    display: block;
    width: 100%;
    height: 100%;
    overflow: visible;
    fill: rgba(255, 255, 255, 0.72);
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ds-bw__custom-length {
    position: relative;
    max-width: 480px;
    margin-top: 1.25rem;
    padding: 1.25rem;
    border: 2px solid transparent;
    border-radius: 1rem;
    background: var(--ds-bw-surface);
    pointer-events: auto !important;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.ds-bw__custom-length.is-selected {
    border-color: var(--ds-bw-green);
    box-shadow: 0 0 0 3px rgba(29, 156, 56, 0.12);
}

.ds-bw__custom-length label,
.ds-bw__purchase label {
    display: block;
    margin-bottom: 0.45rem;
    color: var(--ds-bw-ink);
    font-weight: 700;
}

.ds-bw__input-suffix {
    position: relative !important;
    display: flex;
    flex-direction: row !important;
    align-items: stretch;
    overflow: hidden;
    border: 1px solid #cfc7c1;
    border-radius: 0.7rem;
    background: #fff;
    direction: ltr !important;
    pointer-events: auto !important;
}

.ds-bw__field-mount {
    display: block;
    flex: 1 1 auto;
    min-width: 0;
    min-height: 48px;
}

.ds-bw__input-suffix input {
    position: static !important;
    z-index: 2;
    inset: auto !important;
    order: 1 !important;
    flex: 1 1 auto !important;
    width: 100% !important;
    min-width: 0;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    pointer-events: auto !important;
    cursor: text !important;
    caret-color: var(--ds-bw-ink) !important;
    transform: none !important;
    clip: auto !important;
    user-select: text !important;
}

.ds-bw__input-suffix span {
    position: static !important;
    z-index: 1;
    display: flex;
    order: 2 !important;
    flex: 0 0 auto !important;
    align-items: center;
    padding: 0 1rem;
    background: #eee7e1;
    font-weight: 700;
    pointer-events: none;
}

.ds-bw__input-suffix:focus-within {
    border-color: var(--ds-bw-green);
    box-shadow: 0 0 0 3px rgba(29, 156, 56, 0.12);
}

.ds-bw__input-suffix input::placeholder {
    color: #777 !important;
    opacity: 1 !important;
}

.ds-bw__custom-length small {
    display: block;
    margin-top: 0.55rem;
    color: var(--ds-bw-muted);
}

.ds-bw__purchase {
    display: flex;
    align-items: flex-end;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.ds-bw__purchase label {
    margin: 0 0 0.45rem;
}

.ds-bw__purchase input,
.ds-bw__input-suffix input {
    display: block !important;
    visibility: visible !important;
    height: 48px !important;
    min-height: 48px;
    padding: 0.65rem 0.85rem;
    background: #fff !important;
    color: var(--ds-bw-ink) !important;
    opacity: 1 !important;
    font: inherit;
}

.ds-bw__purchase input {
    position: static !important;
    z-index: 1;
    width: 96px !important;
    margin: 0 !important;
    border: 1px solid #cfc7c1 !important;
    border-radius: 0.7rem !important;
    outline: 0 !important;
    pointer-events: auto !important;
    cursor: text !important;
    caret-color: var(--ds-bw-ink) !important;
    transform: none !important;
    clip: auto !important;
    text-align: center;
}

.ds-bw__quantity {
    position: relative;
    display: block !important;
    flex: 0 0 96px;
    width: 96px;
    min-width: 96px;
    pointer-events: auto !important;
}

.ds-bw__add,
.ds-bw-cart__checkout {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.75rem 1.4rem;
    border: 0;
    border-radius: 999px;
    background: var(--ds-bw-orange);
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
}

.ds-bw__add:hover,
.ds-bw-cart__checkout:hover {
    background: var(--ds-bw-orange-dark);
    color: #fff;
}

.ds-bw__add:disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.ds-bw__status {
    min-height: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.ds-bw__status:empty {
    display: none;
}

.ds-bw__status.is-error {
    color: #a32222;
}

.ds-bw__status.is-success {
    color: var(--ds-bw-green);
}

.ds-bw.is-loading .ds-bw__step {
    opacity: 0.55;
    pointer-events: none;
}

.ds-bw__cart {
    margin-top: 2rem;
}

.ds-bw-cart__items {
    margin-top: 1.5rem;
    border-top: 1px solid var(--ds-bw-border);
}

.ds-bw-cart__item {
    position: relative;
    display: grid;
    grid-template-columns: 90px minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 1rem 3rem 1rem 0;
    border-bottom: 1px solid var(--ds-bw-border);
}

.ds-bw-cart__image img {
    display: block;
    width: 90px;
    height: 90px;
    border-radius: 0.8rem;
    object-fit: cover;
}

.ds-bw-cart__content h3 {
    margin-bottom: 0.25rem;
    color: var(--ds-bw-ink);
    font-size: 1.05rem;
}

.ds-bw-cart__content > span,
.ds-bw-cart__meta {
    color: var(--ds-bw-muted);
    font-size: 0.88rem;
}

.ds-bw-cart__meta dl,
.ds-bw-cart__meta p {
    margin-bottom: 0.2rem;
}

.ds-bw-cart__price {
    color: var(--ds-bw-ink);
    font-size: 1.05rem !important;
    font-weight: 700;
    white-space: nowrap;
}

.ds-bw-cart__remove {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(217, 83, 43, 0.1);
    color: var(--ds-bw-orange);
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    transform: translateY(-50%);
}

.ds-bw-cart__summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
    gap: 2rem;
    align-items: end;
    margin-top: 1.5rem;
    transition: opacity 0.18s ease;
}

.ds-bw-cart__summary.is-updating {
    opacity: 0.45;
}

.ds-bw-cart__summary dl {
    grid-column: 2;
    margin: 0;
}

.ds-bw-cart__summary dl > div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--ds-bw-border);
}

.ds-bw-cart__summary dt,
.ds-bw-cart__summary dd {
    margin: 0;
    font-size: 1.05rem !important;
    line-height: 1.35 !important;
}

.ds-bw-cart__summary dd {
    text-align: right;
}

.ds-bw-cart__shipping-note {
    display: flex;
    grid-column: 2;
    align-items: flex-start;
    gap: 0.65rem;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(217, 83, 43, 0.2);
    border-radius: 0.8rem;
    background: rgba(217, 83, 43, 0.07);
    color: var(--ds-bw-ink);
    font-size: 0.9rem;
    line-height: 1.45;
}

.ds-bw-cart__shipping-note svg {
    flex: 0 0 1.2rem;
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 0.05rem;
    fill: none;
    stroke: var(--ds-bw-orange);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.ds-bw .ds-bw-cart__checkout {
    grid-column: 2;
    width: 100%;
    background: var(--ds-bw-green) !important;
    color: #fff !important;
    text-decoration: none !important;
}

.ds-bw .ds-bw-cart__checkout:hover,
.ds-bw .ds-bw-cart__checkout:focus {
    background: #167d2c !important;
    color: #fff !important;
    text-decoration: none !important;
}

.ds-bw-overlay {
    position: fixed;
    z-index: 10050;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.ds-bw-overlay[hidden] {
    display: none !important;
}

.ds-bw-overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(12, 12, 12, 0.55);
    backdrop-filter: blur(3px);
}

.ds-bw-overlay__dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 560px);
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 1.5rem;
    background: #fff;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.28);
    color: var(--ds-bw-ink);
    text-align: center;
}

.ds-bw-overlay__spinner {
    width: 3.25rem;
    height: 3.25rem;
    margin: 0 auto 1.1rem;
    border: 4px solid rgba(217, 83, 43, 0.18);
    border-top-color: var(--ds-bw-orange);
    border-radius: 50%;
    animation: ds-bw-spin 0.8s linear infinite;
}

.ds-bw-overlay__message {
    margin: 0;
    color: var(--ds-bw-ink);
    font-size: 1.05rem;
    font-weight: 600;
}

.ds-bw-overlay__product {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0.85rem;
    align-items: center;
    margin-top: 1rem;
    padding: 0.85rem;
    border: 1px solid var(--ds-bw-border);
    border-radius: 0.9rem;
    background: var(--ds-bw-surface);
    text-align: left;
}

.ds-bw-overlay__product.has-image {
    grid-template-columns: 64px minmax(0, 1fr) auto;
}

.ds-bw-overlay__product img {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 0.65rem;
    object-fit: cover;
}

.ds-bw-overlay__product > div {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 0.15rem;
}

.ds-bw-overlay__product strong {
    color: var(--ds-bw-ink);
    font-size: 0.9rem !important;
    line-height: 1.25;
}

.ds-bw-overlay__product small {
    color: var(--ds-bw-muted);
    font-size: 0.76rem !important;
    line-height: 1.3;
}

.ds-bw-overlay__product-price {
    color: var(--ds-bw-ink);
    font-size: 0.9rem !important;
    font-weight: 700;
    white-space: nowrap;
}

.ds-bw-overlay__decision h3 {
    margin: 0.7rem 0 0.45rem;
    color: var(--ds-bw-ink);
    font-size: clamp(1.45rem, 3vw, 2rem);
}

.ds-bw-overlay__hint {
    margin: 0 0 1.25rem;
    color: var(--ds-bw-muted);
    font-size: 0.82rem !important;
    line-height: 1.45;
}

.ds-bw-overlay__actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
}

.ds-bw-overlay__more,
.ds-bw-overlay__other,
.ds-bw-overlay__checkout,
.ds-bw-overlay__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1.2rem;
    border: 2px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 0.9rem !important;
    font-weight: 700;
    line-height: 1.2 !important;
    letter-spacing: normal !important;
    text-decoration: none !important;
    text-transform: none !important;
    white-space: nowrap;
}

.ds-bw-overlay__more,
.ds-bw-overlay__other {
    width: 100%;
}

.ds-bw .ds-bw-overlay__more {
    gap: 0.45rem;
    border-color: var(--ds-bw-orange) !important;
    background: transparent !important;
    color: var(--ds-bw-orange) !important;
}

.ds-bw .ds-bw-overlay__checkout {
    grid-column: 1 / -1;
    gap: 0.5rem;
    border-color: var(--ds-bw-green) !important;
    background: var(--ds-bw-green) !important;
    color: #fff !important;
}

.ds-bw .ds-bw-overlay__other {
    border-color: #b8b1ac !important;
    background: #fff !important;
    color: var(--ds-bw-ink) !important;
}

.ds-bw-overlay__checkout svg {
    flex: 0 0 1.1rem;
    width: 1.1rem;
    height: 1.1rem;
}

.ds-bw-overlay__plus {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1;
}

.ds-bw-overlay__close {
    margin-top: 1.2rem;
    background: var(--ds-bw-orange);
    color: #fff;
}

.ds-bw-overlay__more:hover,
.ds-bw-overlay__other:hover,
.ds-bw-overlay__checkout:hover,
.ds-bw-overlay__close:hover {
    filter: brightness(0.92);
}

.ds-bw .ds-bw-overlay__more:hover {
    background: rgba(217, 83, 43, 0.08) !important;
    color: var(--ds-bw-orange) !important;
}

.ds-bw .ds-bw-overlay__other:hover {
    background: var(--ds-bw-surface) !important;
    color: var(--ds-bw-ink) !important;
}

.ds-bw .ds-bw-overlay__checkout:hover {
    color: #fff !important;
}

body.ds-bw-overlay-open {
    overflow: hidden;
}

@keyframes ds-bw-spin {
    to {
        transform: rotate(360deg);
    }
}

@media (max-width: 991px) {
    .ds-bw__cards,
    .ds-bw__cards--compact,
    .ds-bw__cards--length {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .ds-bw__progress {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .ds-bw__wizard,
    .ds-bw-cart {
        padding: 1rem;
        border-radius: 1.1rem;
    }

    .ds-bw__header {
        margin-bottom: 1rem;
    }

    .ds-bw__header .ds-bw__eyebrow {
        margin: 0 0 0.25rem !important;
        font-size: 0.68rem !important;
        line-height: 1.2;
    }

    .ds-bw__header h2 {
        margin: 0 0 0.35rem !important;
        font-size: 1.55rem !important;
        line-height: 1.1 !important;
    }

    .ds-bw__back {
        min-height: 2rem;
        padding: 0.35rem 0.6rem;
        font-size: 0.68rem;
    }

    .ds-bw__header > p:not(.ds-bw__eyebrow) {
        margin: 0 !important;
        font-size: 0.84rem !important;
        line-height: 1.4;
    }

    .ds-bw__cards,
    .ds-bw__cards--compact,
    .ds-bw__cards--length {
        grid-template-columns: 1fr;
    }

    .ds-bw__cards--length {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .ds-bw__cards--compact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.6rem;
    }

    .ds-bw-card--length {
        grid-template-columns: 2.8rem minmax(0, 1fr);
        min-height: 86px !important;
    }

    .ds-bw-card--length .ds-bw-card__visual {
        min-height: 82px !important;
    }

    .ds-bw-card--length .ds-bw-card__content {
        padding: 0.55rem 0.45rem;
    }

    .ds-bw-card--length .ds-bw-card__content strong {
        font-size: 0.78rem;
    }

    .ds-bw-card--length .ds-bw-card__price {
        font-size: 0.78rem;
    }

    .ds-bw-card__ruler {
        width: 2rem;
        height: 0.9rem;
    }

    .ds-bw__progress {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.3rem;
        width: 100% !important;
        max-width: none !important;
        margin: 0 0 0.55rem !important;
        padding: 0 !important;
    }

    .ds-bw__progress li,
    .ds-bw__progress button {
        min-width: 0 !important;
    }

    .ds-bw__progress button {
        gap: 0.25rem;
        min-height: 2.3rem;
        padding: 0.25rem 0.3rem;
        overflow: hidden;
        font-size: 0.6rem !important;
        line-height: 1.1;
        white-space: nowrap;
    }

    .ds-bw__progress-number {
        flex-basis: 1.25rem;
        width: 1.25rem;
        height: 1.25rem;
        border-width: 1px;
        font-size: 0.6rem;
    }

    .ds-bw__progress-label--desktop {
        display: none;
    }

    .ds-bw__progress-label--mobile {
        display: inline;
    }

    .ds-bw__step {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ds-bw__step-heading {
        margin: 0 0 0.55rem !important;
    }

    .ds-bw__step-heading h3 {
        margin: 0 !important;
        font-size: 1.15rem !important;
        line-height: 1.2 !important;
    }

    .ds-bw-card,
    .ds-bw__cards--compact .ds-bw-card,
    .ds-bw__cards--length .ds-bw-card {
        min-height: 110px;
    }

    .ds-bw-card__visual,
    .ds-bw__cards--compact .ds-bw-card__visual {
        flex-basis: 36%;
        min-height: 106px;
    }

    .ds-bw__cards--compact .ds-bw-card {
        min-height: 86px !important;
    }

    .ds-bw__cards--compact .ds-bw-card__visual {
        flex-basis: 34%;
        min-height: 82px !important;
    }

    .ds-bw__cards--compact .ds-bw-card__content {
        padding: 0.5rem 0.4rem;
    }

    .ds-bw__cards--compact .ds-bw-card__content strong {
        font-size: 0.74rem;
    }

    .ds-bw__cards--compact .ds-bw-card__measure {
        width: 2.1rem;
        height: 2.1rem;
    }

    .ds-bw__purchase {
        flex-wrap: wrap;
    }

    .ds-bw__add {
        width: 100%;
    }

    .ds-bw-cart__item {
        grid-template-columns: 70px minmax(0, 1fr);
        padding-right: 2.4rem;
    }

    .ds-bw-cart__image img {
        width: 70px;
        height: 70px;
    }

    .ds-bw-cart__price {
        grid-column: 2;
    }

    .ds-bw-cart__summary {
        display: block;
    }

    .ds-bw-cart__shipping-note {
        margin-top: 0.8rem;
    }

    .ds-bw-cart__checkout {
        width: 100%;
        margin-top: 1rem;
    }

    .ds-bw-overlay__actions {
        grid-template-columns: 1fr;
    }

    .ds-bw-overlay__product {
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.65rem;
        padding: 0.7rem;
    }

    .ds-bw-overlay__product.has-image {
        grid-template-columns: 52px minmax(0, 1fr);
    }

    .ds-bw-overlay__product img {
        width: 52px;
        height: 52px;
    }

    .ds-bw-overlay__product-price {
        grid-column: 2;
    }

    .ds-bw-overlay__more,
    .ds-bw-overlay__other,
    .ds-bw-overlay__checkout {
        grid-column: 1;
        width: 100%;
    }
}
