:root {
    --bd-ink: #191714;
    --bd-muted: #756b63;
    --bd-soft: #f5eee6;
    --bd-paper: #fffaf4;
    --bd-cream: #fbf2e8;
    --bd-blush: #e7b8a6;
    --bd-earth: #a85d4a;
    --bd-moss: #6d7f68;
    --bd-line: rgba(25, 23, 20, .13);
    --bd-shadow: 0 26px 80px rgba(55, 42, 34, .12);
    --bd-radius: 28px;
}

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
    background: var(--bd-paper);
}

body {
    margin: 0;
    min-height: 100%;
    color: var(--bd-ink);
    background:
        radial-gradient(circle at 12% -8%, rgba(231, 184, 166, .65), transparent 34rem),
        radial-gradient(circle at 88% 8%, rgba(109, 127, 104, .22), transparent 28rem),
        linear-gradient(180deg, #fffaf4 0%, #f7efe6 52%, #fffaf4 100%);
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
    color: inherit;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.row {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.columns {
    min-width: 0;
}

.bnr {
    padding: 8px 16px;
    background: var(--bd-ink);
    color: #fff9f0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .13em;
    text-align: center;
    text-transform: uppercase;
}

.bnr__row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 18px;
    align-items: center;
    justify-content: center;
}

.bnr__selector {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: center;
    justify-content: center;
}

.bnr__selector select,
.bnr__selector button {
    min-height: 30px;
    border: 1px solid rgba(255, 249, 240, .28);
    border-radius: 999px;
    background: rgba(255, 249, 240, .1);
    color: #fff9f0;
    padding: 4px 10px;
    font: inherit;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.bnr__selector select option {
    color: var(--bd-ink);
}

.bnr__selector button {
    cursor: pointer;
    background: rgba(255, 249, 240, .18);
}

.header {
    position: sticky;
    top: 0;
    z-index: 20;
    border-bottom: 1px solid var(--bd-line);
    background: rgba(255, 250, 244, .82);
    backdrop-filter: blur(22px);
}

.header__row {
    display: grid;
    grid-template-columns: auto minmax(280px, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 20px 0;
}

.header__logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 900;
    letter-spacing: -.08em;
    line-height: .9;
    text-decoration: none;
}

.header__logo::before {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background:
        radial-gradient(circle at 35% 35%, #fff7ea 0 18%, transparent 19%),
        linear-gradient(135deg, var(--bd-blush), var(--bd-earth));
    content: "";
}

.navbar {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.navbar a,
.navbar button,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid transparent;
    border-radius: 999px;
    background: var(--bd-ink);
    color: #fff9f0;
    padding: 12px 20px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.navbar a,
.navbar button {
    cursor: pointer;
    border-color: var(--bd-line);
    background: rgba(255, 255, 255, .54);
    color: var(--bd-ink);
}

.navbar a:hover,
.navbar button:hover,
.button:hover {
    transform: translateY(-1px);
}

.navbar__link {
    appearance: none;
    gap: 8px;
    font-family: inherit;
}

.navbar__link--selected {
    border-color: rgba(168, 93, 74, .34) !important;
    background: rgba(231, 184, 166, .34) !important;
}

.navbar__link-more::before {
    display: inline-block;
    content: "⌄";
    font-size: 13px;
    transition: transform .18s ease;
}

.navbar__link[aria-expanded="true"] .navbar__link-more::before {
    transform: rotate(180deg);
}

.navbar__link--block {
    display: none;
}

.navbar__menu--root > .navbar__menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.navbar__item {
    position: relative;
    list-style: none;
}

.navbar__item > .navbar__menu:not(.navbar__menu--root) {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: none;
    min-width: 260px;
    transform: translateX(-50%);
    border: 1px solid var(--bd-line);
    border-radius: 24px;
    background: rgba(255, 250, 244, .98);
    box-shadow: var(--bd-shadow);
    padding: 12px;
    z-index: 30;
}

.navbar__item > .navbar__menu--show {
    display: block !important;
}

.navbar__item > .navbar__menu .navbar__menu-links {
    display: grid;
    gap: 6px;
    margin: 0;
    padding: 0;
}

.navbar__item > .navbar__menu .navbar__link {
    width: 100%;
    justify-content: flex-start;
    background: rgba(255, 255, 255, .74);
    text-transform: none;
}

.button--secondary {
    border-color: var(--bd-line);
    background: rgba(255, 255, 255, .72);
    color: var(--bd-ink);
}

.header__components {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: flex-end;
}

.quick-search input {
    width: min(220px, 22vw);
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .74);
    padding: 12px 16px;
    color: var(--bd-ink);
    font: inherit;
}

.quick-search {
    position: relative;
}

.quick-search form {
    margin: 0;
}

.quick-search-result {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(420px, 88vw);
    max-height: 460px;
    overflow: auto;
    border: 1px solid var(--bd-line);
    border-radius: 24px;
    background: rgba(255, 250, 244, .96);
    box-shadow: var(--bd-shadow);
    list-style: none;
    margin: 0;
    padding: 10px;
}

.quick-search-result--visible {
    display: block;
}

.quick-search-result__item {
    margin: 0;
}

.quick-search-result__group-header {
    color: var(--bd-earth);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .14em;
    padding: 12px 12px 6px;
    text-transform: uppercase;
}

.quick-search-result__link,
.quick-search-result__show-all {
    display: block;
    border-radius: 16px;
    color: var(--bd-ink);
    padding: 12px;
    text-decoration: none;
}

.quick-search-result__link:hover,
.quick-search-result__show-all:hover {
    background: rgba(168, 93, 74, .1);
}

.quick-search-result__show-all {
    color: var(--bd-earth);
    font-weight: 950;
}

.quick-search-result__link--disabled {
    color: var(--bd-muted);
    cursor: default;
}

.quick-search-result__link--disabled:hover {
    background: transparent;
}

.cart {
    position: relative;
}

.cart__link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: var(--bd-cream);
    padding: 12px 16px;
    font-weight: 900;
    text-decoration: none;
}

.cart__link span {
    display: inline-grid;
    min-width: 24px;
    height: 24px;
    place-items: center;
    border-radius: 999px;
    background: var(--bd-earth);
    color: #fff;
    font-size: 12px;
}

.cart__info {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    width: min(380px, 88vw);
    border: 1px solid var(--bd-line);
    border-radius: 26px;
    background: rgba(255, 250, 244, .98);
    box-shadow: var(--bd-shadow);
    padding: 18px;
}

.cart__info--hidden {
    display: none;
}

.cart__close-button {
    position: absolute;
    top: 10px;
    right: 12px;
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(25, 23, 20, .08);
    color: var(--bd-ink);
    cursor: pointer;
    font: inherit;
    font-size: 20px;
    line-height: 1;
}

.cart__info-row,
.cart__info-empty {
    color: var(--bd-muted);
    margin: 0 42px 12px 0;
}

.cart__info-product {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--bd-line);
    color: var(--bd-ink);
    padding: 12px 0;
    text-decoration: none;
}

.cart__info-product span {
    line-height: 1.35;
}

.cart__checkout-button {
    display: flex;
    justify-content: center;
    border-radius: 999px;
    background: var(--bd-ink);
    color: #fffaf4;
    margin-top: 12px;
    padding: 14px 18px;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
}

.profile__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .66);
    color: var(--bd-ink);
    padding: 12px 18px;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .04em;
    text-decoration: none;
    text-transform: uppercase;
}

.profile__link:hover {
    transform: translateY(-1px);
}

.main-content {
    padding: clamp(36px, 5vw, 72px) 0;
}

.breadcrumbs-container {
    width: min(1440px, calc(100% - 32px));
    margin: 20px auto 0;
}

.breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    margin: 0;
    padding: 0;
    color: var(--bd-muted);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    list-style: none;
    text-transform: uppercase;
}

.breadcrumbs__item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumbs__item:not(:last-child)::after {
    color: rgba(25, 23, 20, .32);
    content: "/";
}

.breadcrumbs__link {
    color: var(--bd-earth);
    text-decoration: none;
}

.breadcrumbs__item--disabled .breadcrumbs__link {
    color: var(--bd-muted);
    pointer-events: none;
}

.hero {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto 34px;
    border: 1px solid var(--bd-line);
    border-radius: clamp(30px, 4vw, 54px);
    background:
        linear-gradient(130deg, rgba(255, 255, 255, .86), rgba(255, 244, 232, .72)),
        radial-gradient(circle at 80% 20%, rgba(168, 93, 74, .22), transparent 26rem);
    box-shadow: var(--bd-shadow);
    padding: clamp(34px, 7vw, 92px);
}

.hero--small {
    padding: clamp(28px, 5vw, 54px);
}

.eyebrow {
    margin: 0 0 18px;
    color: var(--bd-earth);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .17em;
    text-transform: uppercase;
}

.hero h1,
.product-group-header h1,
.cart-page h1,
.product-detail__name {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 108px);
    letter-spacing: -.08em;
    line-height: .88;
}

.hero p,
.product-group-header p,
.footer p,
.category-card span,
.product-detail__description,
.product-detail__notice {
    color: var(--bd-muted);
    font-size: 17px;
    line-height: 1.75;
}

.hero p {
    max-width: 820px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.category-grid {
    display: grid;
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto 40px;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 16px;
}

.category-card,
.product-card,
.cart-page,
.product-detail,
.product-detail__media {
    border: 1px solid var(--bd-line);
    border-radius: var(--bd-radius);
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 20px 60px rgba(55, 42, 34, .08);
}

.category-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    text-decoration: none;
}

.category-card strong {
    font-size: 20px;
}

.product-section,
.product-group-header,
.cart-page,
.product-detail-page {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.section-heading,
.cart-total {
    display: flex;
    gap: 18px;
    align-items: end;
    justify-content: space-between;
}

.section-heading h2 {
    margin: 0 0 16px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 64px);
    letter-spacing: -.06em;
}

.section-heading a {
    color: var(--bd-earth);
    font-weight: 900;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 18px;
    padding: 0;
    list-style: none;
}

.product-list__item {
    display: block;
}

.product-card {
    display: grid;
    height: 100%;
    gap: 8px;
    overflow: hidden;
    padding: 14px;
}

.product-card__main {
    display: grid;
    gap: 8px;
    color: inherit;
    text-decoration: none;
}

.product-card__image,
.product-detail__placeholder {
    display: grid;
    min-height: 260px;
    place-items: center;
    overflow: hidden;
    border-radius: 22px;
    background:
        radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .86), transparent 8rem),
        linear-gradient(145deg, #ead3c7, #f8efe5);
    color: rgba(25, 23, 20, .42);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 38px;
    font-weight: 900;
    letter-spacing: -.08em;
}

.product-card__image img,
.product-detail__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__brand,
.product-detail__brand {
    margin-top: 10px;
    color: var(--bd-earth);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-card__name {
    font-size: 18px;
    line-height: 1.25;
}

.price {
    color: var(--bd-ink);
    font-weight: 950;
}

.product__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 4px 0 0;
    padding: 0;
    list-style: none;
}

.product__color-link {
    display: grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 1px solid rgba(46, 39, 33, .16);
    border-radius: 999px;
    background: rgba(255, 250, 244, .82);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, .74);
    color: var(--bd-ink);
    font-size: 10px;
    font-weight: 950;
    text-decoration: none;
}

.product__color-link:hover {
    border-color: var(--bd-earth);
}

.product__color-link.is-disabled-private {
    opacity: .42;
}

.product__color-swatch {
    display: block;
    width: 16px;
    height: 16px;
    border-radius: inherit;
    background: var(--variant-swatch, var(--bd-sand));
}

.product__color-link img {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
}

.product__color-label {
    line-height: 1;
    text-transform: uppercase;
}

.product-group-header {
    margin-bottom: 24px;
}

.show-more {
    position: relative;
    max-width: 860px;
}

.show-more__text {
    margin: 18px 0 0;
    color: var(--bd-muted);
    font-size: 17px;
    line-height: 1.75;
}

.show-more__text.is-long {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.show-more__trigger {
    margin-top: 8px;
    border: 0;
    border-bottom: 2px solid currentColor;
    background: transparent;
    color: var(--bd-earth);
    cursor: pointer;
    font-weight: 900;
    padding: 0;
}

.show-more__trigger[hidden] {
    display: none;
}

.child-category-navigation {
    display: grid;
    gap: 16px;
    margin: 0 0 28px;
}

.child-category-navigation__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 14px;
}

.child-category-card {
    min-height: 140px;
    background: linear-gradient(135deg, rgba(255, 255, 255, .78), rgba(255, 244, 232, .66));
}

.product-detail-recommendations {
    margin-top: clamp(28px, 5vw, 64px);
}

.product-detail-recommendations__intro {
    max-width: 760px;
    margin: -6px 0 20px;
    color: var(--bd-muted);
}

.product-count {
    color: var(--bd-muted);
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: clamp(18px, 2vw, 28px);
    letter-spacing: 0;
}

.subnav--category {
    border: 1px solid var(--bd-line);
    border-radius: 24px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .82), rgba(255, 244, 232, .56)),
        radial-gradient(circle at 94% 16%, rgba(168, 93, 74, .1), transparent 13rem);
    margin: 0 0 24px;
    padding: clamp(18px, 3vw, 26px);
}

.subnav__header {
    margin: 0 0 14px;
    font-size: clamp(24px, 3vw, 38px);
}

.subnav__header a,
.subnav__link {
    color: var(--bd-ink);
    text-decoration: none;
}

.subnav__list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.subnav__item {
    list-style: none;
}

.subnav__item .subnav__list {
    flex-basis: 100%;
    margin: 4px 0 4px 14px;
}

.subnav__link {
    display: inline-flex;
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: var(--bd-muted);
    font-weight: 850;
    padding: 9px 13px;
}

.subnav__item.has-children > .subnav__link::after {
    content: "+";
    margin-left: 7px;
    color: var(--bd-earth);
}

.subnav__item.active > .subnav__link,
.subnav__item.expanded > .subnav__link:hover {
    border-color: rgba(116, 74, 57, .2);
    background: var(--bd-ink);
    color: #fffaf4;
}

.compact-filter {
    height: 1px;
}

.compact-filter--custom {
    display: grid;
    height: auto;
    gap: 16px;
    margin: 0 0 24px;
}

.faceted-search--custom {
    display: grid;
    gap: 20px;
    margin-top: 8px;
}

.faceted-search--custom .faceted-search__chips {
    display: grid;
    gap: 6px;
}

.faceted-search--custom .faceted-search__chip {
    justify-content: space-between;
    border-color: transparent;
    border-radius: 0;
    background: transparent;
    padding: 4px 0;
}

.faceted-search--custom .faceted-search__chip.is-active {
    background: transparent;
    color: var(--bd-earth);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (min-width: 1024px) {
    .compact-filter--custom {
        display: none;
    }
}

.faceted-search__group--custom {
    display: grid;
    gap: 10px;
}

.faceted-search__group--custom .faceted-search__group-header {
    margin: 0;
    color: var(--bd-muted);
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.faceted-search__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.faceted-search__chip {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .7);
    color: var(--bd-ink);
    font-weight: 850;
    padding: 10px 14px;
    text-decoration: none;
}

.faceted-search__chip.is-active {
    background: var(--bd-ink);
    color: #fffaf4;
}

.selected-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: -8px 0 24px;
    color: var(--bd-muted);
    font-size: 14px;
    font-weight: 850;
}

.selected-filter__label {
    margin-right: 2px;
}

.selected-filter__tag,
.selected-filter__clear {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-radius: 999px;
    text-decoration: none;
}

.selected-filter__tag {
    border: 1px solid rgba(116, 74, 57, .22);
    background: rgba(255, 244, 232, .78);
    color: var(--bd-ink);
    padding: 8px 12px;
}

.selected-filter__tag::after {
    content: "x";
    width: 18px;
    height: 18px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(116, 74, 57, .12);
    font-size: 12px;
    line-height: 1;
}

.selected-filter__tag-group {
    color: var(--bd-muted);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.selected-filter__clear {
    color: var(--bd-earth);
    padding: 8px 4px;
}

.filter-container {
    margin: 0 0 24px;
}

.product-list-toolbar {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    border: 1px solid var(--bd-line);
    border-radius: 24px;
    background: rgba(255, 255, 255, .62);
    padding: 14px 16px;
}

.product-sorting__summary {
    margin: 0;
    color: var(--bd-muted);
}

.product-sorting {
    display: flex;
    justify-content: flex-end;
}

.product-sorting label {
    display: flex;
    gap: 10px;
    align-items: center;
    color: var(--bd-muted);
    font-weight: 900;
}

.product-sorting select {
    min-width: 210px;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: #fff;
    color: var(--bd-ink);
    padding: 11px 14px;
    font: inherit;
    font-weight: 800;
}

.empty-state {
    border: 1px dashed var(--bd-line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .58);
    color: var(--bd-muted);
    padding: 22px;
}

.product-detail-page {
    display: grid;
    grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
    gap: 24px;
}

.product-detail__media {
    display: grid;
    gap: 12px;
    overflow: hidden;
    min-height: 520px;
    padding: 14px;
}

.product-detail__image-link {
    display: grid;
    min-height: min(70vh, 620px);
    overflow: hidden;
    border-radius: 24px;
    background:
        radial-gradient(circle at 32% 25%, rgba(255, 255, 255, .86), transparent 8rem),
        linear-gradient(145deg, #ead3c7, #f8efe5);
}

.product-detail__thumbs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(74px, 1fr));
    gap: 10px;
}

.product-detail__thumb {
    height: 96px;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 18px;
    background: rgba(255, 255, 255, .7);
    cursor: pointer;
    padding: 0;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.product-detail__thumb:hover,
.product-detail__thumb.is-active {
    border-color: var(--bd-earth);
    box-shadow: 0 10px 24px rgba(168, 93, 74, .16);
    transform: translateY(-1px);
}

.product-detail {
    padding: clamp(24px, 4vw, 42px);
}

.product-detail__brand {
    display: block;
}

.product-detail__name {
    font-size: clamp(42px, 6vw, 78px);
}

.product-detail__price-info {
    margin: 26px 0;
    font-size: 26px;
}

.product-detail__tier-prices {
    margin: -10px 0 24px;
}

.product-detail__tier-price-group {
    border: 1px solid rgba(109, 127, 104, .18);
    border-radius: 22px;
    background:
        radial-gradient(circle at 0% 0%, rgba(255, 255, 255, .84), transparent 8rem),
        rgba(245, 239, 229, .72);
    padding: 14px 16px;
}

.product-detail__tier-title {
    margin: 0 0 8px;
    color: var(--bd-moss);
    font-size: 12px;
    font-weight: 950;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-detail__tier-row {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 14px;
    align-items: center;
    border-top: 1px solid rgba(46, 39, 33, .1);
    padding: 9px 0;
    color: var(--bd-muted);
    font-size: 14px;
    font-weight: 800;
}

.product-detail__tier-row:first-of-type {
    border-top: 0;
}

.lipscore-rating-style--custom {
    width: fit-content;
    border: 1px solid rgba(168, 93, 74, .18);
    border-radius: 999px;
    background: rgba(255, 244, 232, .78);
    color: var(--bd-muted);
    margin: 14px 0 20px;
    padding: 9px 13px;
    font-size: 13px;
    font-weight: 900;
}

.lipscore-rating-style--custom::before {
    color: var(--bd-earth);
    content: "★★★★★";
    letter-spacing: .08em;
    margin-right: 9px;
}

.product-reviews__container {
    margin-top: clamp(24px, 4vw, 48px);
}

.product-reviews__container .lipscore-rating-style--custom {
    width: 100%;
    border-radius: 26px;
    background:
        radial-gradient(circle at 7% 0%, rgba(255, 255, 255, .86), transparent 12rem),
        rgba(255, 244, 232, .62);
    padding: clamp(18px, 3vw, 28px);
}

.product-detail__option-text,
.product-detail__color-text,
.product-detail__flow-text,
.product-detail__size-text {
    margin: 26px 0 12px;
    font-size: 15px;
    font-weight: 950;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail__variant-color,
.product-detail__variant-flow,
.product-detail__variant-size {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.product-detail__variant-color {
    gap: 12px;
}

.product-detail__selector-color,
.product-detail__selector-flow,
.product-detail__selector-size {
    min-width: 54px;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--bd-ink);
    cursor: pointer;
    padding: 11px 16px;
    font: inherit;
    font-weight: 900;
    transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.product-detail__selector-color {
    min-width: 42px;
    width: 42px;
    height: 42px;
    justify-content: center;
    border-radius: 999px;
    padding: 4px;
}

.product-detail__selector-swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 999px;
    background: var(--variant-swatch, var(--bd-blush));
}

.product-detail__selector-flow:hover,
.product-detail__selector-flow.is-active,
.product-detail__selector-color:hover,
.product-detail__selector-color.is-active,
.product-detail__selector-size:hover,
.product-detail__selector-size.is-active {
    border-color: var(--bd-earth);
    box-shadow: 0 8px 24px rgba(168, 93, 74, .16);
    transform: translateY(-1px);
}

.product-detail__selector-flow.is-active,
.product-detail__selector-size.is-active {
    background: var(--bd-ink);
    color: #fffaf4;
}

.product-detail__selector-color.is-active {
    border-width: 2px;
    box-shadow: inset 0 0 0 2px #fffaf4, 0 8px 24px rgba(168, 93, 74, .16);
}

.product-detail__selector-color.is-active .product-detail__selector-swatch {
    transform: scale(.78);
}

.product-detail__selector-color.is-disabled-private,
.product-detail__selector-flow.is-disabled-private,
.product-detail__selector-color:disabled,
.product-detail__selector-flow:disabled,
.product-detail__selector-size.is-disabled-private,
.product-detail__selector-size:disabled {
    opacity: .45;
    cursor: not-allowed;
    text-decoration: line-through;
}

.size-guide {
    margin: -2px 0 22px;
}

.size-guide__trigger {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    border: 1px solid rgba(46, 39, 33, .14);
    border-radius: 999px;
    background: rgba(255, 250, 244, .78);
    color: var(--bd-ink);
    cursor: pointer;
    padding: 10px 15px;
    font: inherit;
    font-size: 14px;
    font-weight: 900;
    transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.size-guide__trigger:hover,
.size-guide__trigger[aria-expanded="true"] {
    border-color: var(--bd-earth);
    background: rgba(168, 93, 74, .1);
    box-shadow: 0 10px 26px rgba(168, 93, 74, .14);
    transform: translateY(-1px);
}

.size-guide__icon {
    position: relative;
    width: 19px;
    height: 9px;
    border-top: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
}

.size-guide__icon::before,
.size-guide__icon::after {
    position: absolute;
    top: -5px;
    width: 2px;
    height: 17px;
    background: currentColor;
    content: "";
}

.size-guide__icon::before {
    left: 0;
}

.size-guide__icon::after {
    right: 0;
}

.size-guide__panel {
    margin-top: 12px;
    border: 1px solid var(--bd-line);
    border-radius: 24px;
    background:
        radial-gradient(circle at 15% 0%, rgba(255, 255, 255, .88), transparent 9rem),
        rgba(255, 250, 244, .72);
    padding: 18px;
    box-shadow: 0 14px 36px rgba(46, 39, 33, .08);
}

.size-guide__panel .rte {
    color: var(--bd-muted);
    line-height: 1.65;
}

.size-guide__panel .rte p {
    margin: 0 0 14px;
}

.size-guide__table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.size-guide__table th,
.size-guide__table td {
    border-bottom: 1px solid rgba(46, 39, 33, .12);
    padding: 11px 10px 11px 0;
    text-align: left;
}

.size-guide__table th {
    color: var(--bd-ink);
    font-size: 11px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-detail__stock {
    margin: 10px 0 22px;
    color: var(--bd-moss);
    font-weight: 900;
}

.product-detail__stock--out {
    color: var(--bd-earth);
}

.hide {
    display: none !important;
}

.product-detail__buy {
    display: grid;
    gap: 14px;
}

.product-detail__buy label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.product-detail__buy input {
    max-width: 130px;
    border: 1px solid var(--bd-line);
    border-radius: 16px;
    padding: 12px;
    font: inherit;
}

.product-detail__secondary-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 14px;
}

.product-detail__wishlist-button,
.product-detail__monitor-button {
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .68);
    color: var(--bd-ink);
    cursor: pointer;
    padding: 12px 16px;
    font: inherit;
    font-weight: 950;
    letter-spacing: .04em;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.product-detail__wishlist-button:hover,
.product-detail__monitor-button:hover,
.product-detail__wishlist-button.is-active {
    border-color: var(--bd-earth);
    background: rgba(168, 93, 74, .12);
    transform: translateY(-1px);
}

.product-detail__wishlist-button.is-active::before {
    content: "♥ ";
}

.product-detail__notice {
    margin-top: 22px;
    border-left: 4px solid var(--bd-blush);
    padding-left: 16px;
}

.product-info__container {
    width: min(1440px, calc(100% - 32px));
    margin: 28px auto 0;
}

.details-outer {
    overflow: visible;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.details {
    font-family: var(--regular-font);
    border-top: 1px solid var(--color-licorice-20);
    border-bottom: 1px solid var(--color-licorice-20);
}

.details + .details {
    border-top: none;
}

.details__summary {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 1rem;
    padding: 1rem 0;
    color: var(--color-licorice);
    font-family: var(--heading-font);
    font-size: 1.125rem;
    list-style: none;
}

.details__summary::-webkit-details-marker {
    display: none;
}

.details__summary h2 {
    margin: 0;
    margin-bottom: 0;
    font-family: inherit;
    font-size: inherit;
    letter-spacing: 0;
    line-height: inherit;
}

.details__summary-icon {
    display: inline-block;
    flex: 0 0 auto;
    width: 1rem;
    height: 1rem;
    border: 0;
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHZpZXdCb3g9IjAgMCAxOCAxOCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgPGcgaWQ9ImNoZXZyb24tZG93biI+DQogICAgPHBhdGggaWQ9IlZlY3RvciIgZD0iTTQuNSA2Ljc1TDkgMTEuMjVMMTMuNSA2Ljc1IiBzdHJva2U9IiMyNzJFMzMiIHN0cm9rZS13aWR0aD0iMS4yNSIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIg0KICAgICAgc3Ryb2tlLWxpbmVqb2luPSJyb3VuZCIgLz4NCiAgPC9nPg0KPC9zdmc+) center no-repeat;
    transition: transform .18s ease;
}

.details[open] .details__summary-icon {
    transform: rotate(180deg);
}

.details .rte {
    max-width: none;
    color: var(--color-licorice);
    padding: 0;
    font-family: var(--regular-font);
    font-size: 1rem;
    line-height: 24px;
}

.details .rte .product-detail__description {
    color: inherit;
    font-size: inherit;
    line-height: inherit;
}

.details .rte > *:first-child {
    margin-top: 0;
}

.details .rte > * + * {
    margin-top: 1em;
}

.details .rte ul {
    display: block;
    margin: 1em 0;
    padding-left: revert;
}

.details .rte ul li {
    list-style-type: disc;
}

@media (min-width: 1024px) {
    .details__summary {
        font-size: 1.25rem;
    }
}

@media (max-width: 1023px) {
    .details:last-child {
        border-bottom: none;
    }
}

.brand-info {
    margin-top: clamp(28px, 5vw, 58px);
}

.brand-info__title {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 64px);
    letter-spacing: -.07em;
    line-height: .92;
    text-align: center;
}

.brand-info__panel {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
    gap: clamp(20px, 4vw, 42px);
    align-items: center;
    border: 1px solid var(--bd-line);
    border-radius: clamp(28px, 4vw, 48px);
    background:
        radial-gradient(circle at 12% 12%, rgba(255, 255, 255, .9), transparent 13rem),
        linear-gradient(135deg, rgba(255, 244, 232, .82), rgba(255, 255, 255, .64));
    box-shadow: var(--bd-shadow);
    padding: clamp(20px, 4vw, 42px);
}

.brand-info__image {
    overflow: hidden;
    border-radius: 30px;
    background: linear-gradient(145deg, #ead3c7, #f8efe5);
}

.brand-info__image img {
    width: 100%;
    height: min(44vw, 480px);
    object-fit: cover;
}

.brand-info__body {
    color: var(--bd-muted);
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.75;
}

.brand-info__body p:first-child {
    margin-top: 0;
}

.brand-info__link {
    display: inline-flex;
    border-radius: 999px;
    background: var(--bd-ink);
    color: #fffaf4;
    font-weight: 950;
    margin-top: 8px;
    padding: 12px 18px;
    text-decoration: none;
}

.product-info-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 18px;
}

.product-info-table th,
.product-info-table td {
    border-bottom: 1px solid var(--bd-line);
    padding: 12px 14px 12px 0;
    text-align: left;
}

.product-info-table th {
    color: var(--bd-ink);
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.pagination {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin: 34px 0 0;
    padding: 0;
    list-style: none;
}

.pagination__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: rgba(255, 255, 255, .72);
    color: var(--bd-ink);
    font-weight: 900;
    text-decoration: none;
}

.pagination__link--current {
    background: var(--bd-ink);
    color: #fff9f0;
}

.pagination__link--disabled {
    opacity: .45;
    pointer-events: none;
}

.cart-page {
    padding: clamp(24px, 5vw, 54px);
}

.content-page {
    width: min(1040px, calc(100% - 32px));
    margin: 0 auto;
    border: 1px solid var(--bd-line);
    border-radius: clamp(30px, 4vw, 54px);
    background: rgba(255, 255, 255, .7);
    box-shadow: var(--bd-shadow);
    padding: clamp(30px, 6vw, 76px);
}

.content-page h1 {
    margin: 0 0 24px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 7vw, 88px);
    letter-spacing: -.08em;
    line-height: .9;
}

.content-page__body {
    color: var(--bd-muted);
    font-size: 18px;
    line-height: 1.8;
}

.content-page__body h2,
.content-page__body h3 {
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.04em;
}

.content-page__body a {
    color: var(--bd-earth);
    font-weight: 900;
}

.custom-webshop--current-site-content .main-content img {
    max-width: 100%;
    height: auto;
}

.error-page {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
}

.error-page__panel {
    border: 1px solid var(--bd-line);
    border-radius: clamp(30px, 4vw, 54px);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, .88), rgba(255, 244, 232, .74)),
        radial-gradient(circle at 86% 12%, rgba(168, 93, 74, .2), transparent 25rem);
    box-shadow: var(--bd-shadow);
    padding: clamp(32px, 6vw, 82px);
}

.error-page h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 100px);
    letter-spacing: -.08em;
    line-height: .88;
}

.error-page p {
    max-width: 700px;
    color: var(--bd-muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.65;
}

.webshop-blocks {
    display: grid;
    gap: 34px;
    margin: 34px 0;
}

.webshop-block {
    width: min(1440px, calc(100% - 32px));
    margin: 0 auto;
}

.webshop-block--text .teaser,
.webshop-block--video,
.links,
.files,
.flowbox-card,
.banner-block,
.brand-chip-list {
    border: 1px solid var(--bd-line);
    border-radius: var(--bd-radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--bd-shadow);
}

.webshop-block--text .teaser {
    padding: clamp(28px, 5vw, 64px);
    color: var(--bd-muted);
    font-size: 18px;
    line-height: 1.75;
}

.webshop-block--text .teaser h1,
.webshop-block--text .teaser h2,
.links h2,
.files h2,
.webshop-block--video h2 {
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    letter-spacing: -.06em;
}

.links,
.files {
    padding: clamp(22px, 4vw, 42px);
}

.links .no-list,
.files .no-list {
    display: grid;
    gap: 10px;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.links a,
.files a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(31, 35, 31, .18);
    color: var(--bd-ink);
    font-weight: 900;
    text-decoration: none;
}

.links a:hover,
.files a:hover {
    border-bottom-color: currentColor;
}

.files a::before {
    content: "PDF";
    border-radius: 999px;
    background: rgba(109, 127, 104, .16);
    color: var(--bd-moss);
    padding: 4px 7px;
    font-size: 10px;
    font-weight: 950;
    letter-spacing: .12em;
}

.webshop-block--banners {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 18px;
}

.webshop-block--products-banner {
    align-items: stretch;
    gap: 0;
}

.mixed__column {
    display: grid;
}

.mixed-block,
.product-and-banner-block__content {
    position: relative;
    overflow: hidden;
    border-radius: var(--bd-radius);
}

.mixed-block {
    display: grid;
    align-content: start;
    gap: 18px;
    border: 1px solid var(--bd-line);
    background: rgba(255, 255, 255, .72);
    padding: clamp(20px, 3vw, 34px);
    box-shadow: var(--bd-shadow);
}

.mixed-block__header-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
}

.mixed-block__header {
    margin: 0;
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 54px);
    letter-spacing: -.07em;
    line-height: .92;
    text-decoration: none;
}

.mixed-block__header-link {
    border-bottom: 2px solid currentColor;
    font-family: inherit;
    font-size: 16px;
    letter-spacing: 0;
    white-space: nowrap;
}

.product-list--mixed {
    gap: 14px 0;
}

.product--mixed .product-card {
    min-height: 100%;
}

.mixed-banner-list {
    height: 100%;
}

.product-and-banner-block__content {
    min-height: clamp(360px, 44vw, 620px);
}

.product-and-banner-block__image-link,
.product-and-banner-block__image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 44vw, 620px);
}

.product-and-banner-block__image {
    object-fit: cover;
}

.product-and-banner-block__placeholder {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 78% 18%, rgba(255, 250, 244, .36), transparent 30%), linear-gradient(135deg, #d7b59c, #7d5a48);
    color: #fffaf4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 6vw, 84px);
    font-weight: 900;
    letter-spacing: -.08em;
}

.banner-block {
    position: relative;
    min-height: 320px;
    overflow: hidden;
}

.banner-block__image-link,
.banner-block__placeholder {
    display: block;
    min-height: 320px;
}

.banner-block__image {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.banner-block__placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, #f3e7d9, #d7b59c);
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 5vw, 68px);
    font-weight: 900;
}

.banner-text {
    position: absolute;
    right: 24px;
    bottom: 24px;
    left: 24px;
    display: grid;
    gap: 12px;
    max-width: 520px;
}

.banner-text__title {
    margin: 0;
    color: #fffaf4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(34px, 6vw, 72px);
    letter-spacing: -.07em;
    line-height: .9;
    text-shadow: 0 12px 36px rgba(21, 25, 21, .36);
}

.banner-text__button,
.video-block__link,
.brand-chip {
    display: inline-flex;
    width: fit-content;
    border-radius: 999px;
    background: var(--bd-ink);
    color: #fffaf4;
    padding: 12px 18px;
    font-weight: 900;
    text-decoration: none;
}

.webshop-block--slider {
    width: min(100%, 1680px);
}

.slider__container {
    position: relative;
    overflow: hidden;
    border-radius: var(--bd-radius);
    background: #201914;
    box-shadow: var(--bd-shadow);
}

.slider {
    position: relative;
    min-height: clamp(360px, 42vw, 680px);
}

.slider__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transform: scale(1.015);
    transition: opacity .32s ease, transform .62s ease;
}

.slider__slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.slider__link,
.slider__image,
.slider__placeholder {
    display: block;
    width: 100%;
    height: 100%;
    min-height: clamp(360px, 42vw, 680px);
}

.slider__image {
    object-fit: cover;
}

.slider__placeholder {
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 18% 20%, #f6dfd1, transparent 34%), linear-gradient(135deg, #d7b59c, #805b46);
    color: #fffaf4;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 8vw, 112px);
    font-weight: 900;
    letter-spacing: -.08em;
}

.slider__text {
    max-width: min(720px, calc(100% - 48px));
}

.slider__control {
    position: absolute;
    top: 50%;
    z-index: 3;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 244, .9);
    color: var(--bd-ink);
    cursor: pointer;
    font-size: 42px;
    line-height: 1;
    transform: translateY(-50%);
}

.slider__control--prev {
    left: 18px;
}

.slider__control--next {
    right: 18px;
}

.slider__dots {
    position: absolute;
    right: 24px;
    bottom: 22px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.slider__dot {
    width: 11px;
    height: 11px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 250, 244, .46);
    cursor: pointer;
}

.slider__dot.is-active {
    width: 34px;
    background: #fffaf4;
}

.webshop-block--video {
    padding: clamp(24px, 4vw, 48px);
}

.flowbox-card {
    display: grid;
    gap: 22px;
    padding: clamp(24px, 4vw, 52px);
}

.flowbox-card .section-heading {
    max-width: 760px;
}

.flowbox-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.flowbox-tags .flowbox {
    border: 1px solid rgba(31, 35, 31, .18);
    border-radius: 999px;
    background: #fffaf4;
    color: var(--bd-ink);
    cursor: pointer;
    font-weight: 900;
}

.flowbox-tags .flowbox:hover,
.flowbox-tags .flowbox.flowbox-active {
    border-color: var(--bd-ink);
    background: var(--bd-ink);
    color: #fffaf4;
}

.flowbox-container {
    border: 1px dashed rgba(31, 35, 31, .22);
    border-radius: calc(var(--bd-radius) - 10px);
    background: radial-gradient(circle at 16% 20%, rgba(215, 181, 156, .45), transparent 34%), #fffaf4;
}

.flowbox-placeholder {
    display: grid;
    min-height: 220px;
    place-items: center;
    gap: 10px;
    padding: 28px;
    color: var(--bd-muted);
    text-align: center;
}

.flowbox-placeholder strong {
    color: var(--bd-ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(32px, 6vw, 76px);
    letter-spacing: -.07em;
    line-height: .9;
}

.flowbox-placeholder__eyebrow {
    border-radius: 999px;
    background: rgba(31, 35, 31, .08);
    color: var(--bd-ink);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.brand-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 24px;
}

.brands-list__container,
.legacy-content-shell {
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto;
}

.brands-list__header,
.legacy-content-shell h1 {
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 8vw, 92px);
    letter-spacing: -.08em;
    line-height: .9;
}

.brands-list__container > p,
.legacy-content-shell > p {
    max-width: 780px;
    color: var(--bd-muted);
    font-size: 18px;
    line-height: 1.7;
}

.brands-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
    padding: 0;
    list-style: none;
}

.brands-list__group,
.legacy-content-card {
    height: 100%;
    border: 1px solid var(--bd-line);
    border-radius: var(--bd-radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--bd-shadow);
    padding: 24px;
}

.brands-list__group-letter {
    display: inline-flex;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--bd-ink);
    color: #fffaf4;
    font-weight: 900;
}

.brands-list__sublist {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.brands-list__sublist-item {
    color: var(--bd-muted);
    font-weight: 800;
}

.brands-list__sublist-item a,
.legacy-content-card a {
    color: var(--bd-ink);
    font-weight: 900;
    text-decoration: none;
}

.legacy-content-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.legacy-content-card h2 {
    margin: 0 0 10px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: -.04em;
}

.legacy-content-card p {
    color: var(--bd-muted);
    line-height: 1.65;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cart-table th,
.cart-table td {
    border-bottom: 1px solid var(--bd-line);
    padding: 16px 0;
    text-align: left;
    vertical-align: middle;
}

.cart-table th:last-child,
.cart-table td:last-child {
    text-align: right;
}

.cart-table__product {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 260px;
}

.cart-table__image-link {
    display: block;
    overflow: hidden;
    width: 74px;
    height: 92px;
    flex: 0 0 74px;
    border-radius: 18px;
    background: linear-gradient(145deg, #ead3c7, #f8efe5);
}

.cart-table__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-table__name {
    display: block;
    color: var(--bd-ink);
    font-weight: 950;
    text-decoration: none;
}

.cart-table__meta {
    display: block;
    margin-top: 4px;
    color: var(--bd-muted);
    font-size: 13px;
}

.cart-table__quantity input {
    width: 88px;
    border: 1px solid var(--bd-line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
    padding: 11px 12px;
    font: inherit;
    font-weight: 900;
}

.cart-table__remove {
    border: 1px solid rgba(168, 93, 74, .28);
    border-radius: 999px;
    background: rgba(168, 93, 74, .08);
    color: var(--bd-earth);
    cursor: pointer;
    padding: 9px 13px;
    font: inherit;
    font-size: 13px;
    font-weight: 950;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}

.cart-table__remove:hover {
    border-color: var(--bd-earth);
    background: rgba(168, 93, 74, .14);
    transform: translateY(-1px);
}

.cart-table tr.is-updating {
    opacity: .58;
}

.cart-total {
    margin: 20px 0 26px;
    font-size: 24px;
}

.cart-empty {
    display: grid;
    gap: 16px;
    justify-items: start;
    color: var(--bd-muted);
}

.cart-page__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.cart-page__continue {
    color: var(--bd-ink);
    font-weight: 950;
}

.account-page {
    width: min(1180px, calc(100% - 32px));
    margin: 38px auto;
}

.account-page h1 {
    max-width: 980px;
    margin: 0 0 18px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(44px, 8vw, 98px);
    letter-spacing: -.08em;
    line-height: .9;
}

.account-page > p {
    max-width: 780px;
    color: var(--bd-muted);
    font-size: clamp(17px, 2vw, 22px);
    line-height: 1.7;
}

.account-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.account-saved-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin: 28px 0;
}

.account-card,
.account-form,
.account-notice,
.account-saved-list {
    border: 1px solid var(--bd-line);
    border-radius: var(--bd-radius);
    background: rgba(255, 255, 255, .72);
    box-shadow: var(--bd-shadow);
    padding: 24px;
}

.account-saved-list__header,
.account-saved-item {
    display: flex;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
}

.account-saved-list__header h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 46px);
    letter-spacing: -.06em;
}

.account-saved-list__items {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.account-saved-item {
    border: 1px solid var(--bd-line);
    border-radius: 22px;
    background: rgba(255, 250, 244, .76);
    padding: 14px;
}

.account-saved-item div {
    display: grid;
    gap: 4px;
}

.account-saved-item small,
.account-saved-item span {
    color: var(--bd-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.account-saved-item strong a {
    color: var(--bd-ink);
    text-decoration: none;
}

.account-saved-item__remove {
    border: 1px solid var(--bd-line);
    border-radius: 999px;
    background: #fffaf4;
    color: var(--bd-earth);
    cursor: pointer;
    padding: 10px 12px;
    font: inherit;
    font-weight: 950;
}

.account-card h2,
.account-form h2 {
    margin: 12px 0 8px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 28px;
    letter-spacing: -.04em;
}

.account-card p,
.account-form p,
.account-notice {
    color: var(--bd-muted);
    line-height: 1.65;
}

.status-pill {
    display: inline-flex;
    border-radius: 999px;
    background: rgba(109, 127, 104, .16);
    color: var(--bd-moss);
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.account-form {
    display: grid;
    gap: 14px;
    max-width: 640px;
}

.account-form label {
    display: grid;
    gap: 8px;
    font-weight: 900;
}

.account-form input {
    width: 100%;
    border: 1px solid var(--bd-line);
    border-radius: 18px;
    background: #fff;
    color: var(--bd-ink);
    padding: 14px 16px;
    font: inherit;
}

.account-saved-list select {
    width: 100%;
    border: 1px solid var(--bd-line);
    border-radius: 16px;
    background: #fff;
    color: var(--bd-ink);
    padding: 12px 14px;
    font: inherit;
    font-weight: 800;
}

.order-integrations {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.order-integration-compat[hidden] {
    display: none !important;
}

.order-integration-card {
    background: rgba(255, 250, 244, .74);
    box-shadow: none;
}

.order-integration-card dl {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 6px 12px;
    margin: 14px 0 0;
}

.order-integration-card dt {
    color: var(--bd-muted);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.order-integration-card dd {
    margin: 0;
    color: var(--bd-ink);
    font-weight: 850;
    word-break: break-word;
}

.notice {
    border-radius: 18px;
    background: #fff4df;
    color: #714315;
    margin: 18px 0;
    padding: 14px 16px;
}

.notice.success {
    background: #e7f4eb;
    color: #3f7652;
}

.account-notice {
    margin: 22px 0;
    background: #fff4df;
}

.footer {
    border-top: 1px solid var(--bd-line);
    background:
        radial-gradient(circle at 12% 0%, rgba(231, 184, 166, .18), transparent 28rem),
        linear-gradient(180deg, #24201c, #171512);
    color: #fff9f0;
    padding: 52px 0 38px;
}

.footer .row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
}

.footer h4 {
    margin: 0 0 14px;
    color: #fff9f0;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.footer p {
    margin: 0 0 10px;
    color: rgba(255, 249, 240, .72);
}

.footer__section {
    min-width: 0;
}

.footer__link {
    color: #fff9f0;
    font-weight: 800;
    text-decoration-color: rgba(255, 249, 240, .36);
    text-underline-offset: 4px;
}

.footer__link:hover {
    color: var(--bd-blush);
}

.footer__text {
    max-width: 34ch;
    margin-top: 16px !important;
    font-size: 14px !important;
}

#globalNotification {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
}

.storefront-toast {
    border-radius: 18px;
    background: var(--bd-ink);
    color: #fffaf4;
    padding: 14px 18px;
    box-shadow: var(--bd-shadow);
    font-weight: 900;
}

@media (max-width: 980px) {
    .header__row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .navbar,
    .header__components {
        justify-content: flex-start;
    }

    .quick-search input {
        width: min(100%, 360px);
    }

    .quick-search-result,
    .cart__info {
        left: 0;
        right: auto;
    }

    .product-detail-page,
    .brand-info__panel,
    .product-list-toolbar,
    .brands-list,
    .legacy-content-grid,
    .account-grid,
    .account-saved-grid,
    .footer .row {
        grid-template-columns: 1fr;
    }

    .product-list-toolbar,
    .product-sorting label {
        align-items: stretch;
        flex-direction: column;
    }

    .product-sorting,
    .product-sorting select {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .row,
    .hero,
    .category-grid,
    .product-section,
    .product-group-header,
    .cart-page,
    .account-page,
    .product-detail-page {
        width: min(100% - 20px, 1440px);
    }

    .header__components {
        align-items: stretch;
        flex-direction: column;
    }

    .quick-search input,
    .cart__link,
    .profile__link {
        width: 100%;
    }

    .quick-search-result,
    .cart__info {
        width: 100%;
    }

    .navbar {
        display: block;
        width: 100%;
    }

    .navbar__link--block {
        display: inline-flex;
        width: 100%;
        justify-content: center;
        border: 1px solid var(--bd-line);
        border-radius: 999px;
        background: var(--bd-ink);
        color: #fff9f0;
        padding: 12px 20px;
        font-weight: 900;
        letter-spacing: .04em;
        text-transform: uppercase;
    }

    .navbar__menu--root {
        display: none;
        margin-top: 8px;
    }

    .navbar__menu--root.navbar__menu--show {
        display: block;
    }

    .navbar__menu--root > .navbar__menu-links {
        display: grid;
        gap: 8px;
    }

    .navbar__item > .navbar__menu:not(.navbar__menu--root) {
        position: static;
        min-width: 0;
        transform: none;
        margin-top: 6px;
        box-shadow: none;
    }

    .navbar a,
    .navbar button,
    .button {
        width: 100%;
    }

    .cart-table,
    .cart-table thead,
    .cart-table tbody,
    .cart-table tr,
    .cart-table th,
    .cart-table td {
        display: block;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tr {
        border-bottom: 1px solid var(--bd-line);
        padding: 16px 0;
    }

    .cart-table td {
        border-bottom: 0;
        padding: 8px 0;
        text-align: left !important;
    }

    .cart-table__product {
        min-width: 0;
    }

    .cart-table__quantity input,
    .cart-table__remove,
    .cart-page__actions a {
        width: 100%;
    }
}

/* BoobDesign parity layer: keep the custom runtime, but make the storefront feel like the Litium shop. */
.custom-webshop--boob-parity {
    --bd-ink: #1f1a17;
    --bd-muted: #5d5550;
    --bd-soft: #f5ebe8;
    --bd-paper: #fff;
    --bd-cream: #f3d8d5;
    --bd-blush: #e6cac8;
    --bd-earth: #9b5c52;
    --bd-line: rgba(31, 26, 23, .12);
    --bd-shadow: none;
    background: #fff;
    color: var(--bd-ink);
    font-family: "Gotham Book", Gotham, "Helvetica Neue", Arial, sans-serif;
}

.custom-webshop--boob-parity .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

.custom-webshop--boob-parity .row {
    width: min(1314px, calc(100% - 28px));
}

.custom-webshop--boob-parity .bnr {
    padding: 9px 14px;
    background: #e6cac8;
    color: #fff;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: none;
}

.custom-webshop--boob-parity .bnr__row {
    justify-content: center;
    gap: 14px 26px;
}

.custom-webshop--boob-parity .bnr__selector {
    gap: 8px;
}

.custom-webshop--boob-parity .bnr__selector select,
.custom-webshop--boob-parity .bnr__selector button {
    min-height: 26px;
    border-color: rgba(255, 255, 255, .7);
    background: rgba(255, 255, 255, .18);
    color: #fff;
    font-size: 10px;
    letter-spacing: .04em;
}

.custom-webshop--boob-parity .header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid rgba(0, 0, 0, .08);
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(14px);
}

.custom-webshop--boob-parity .header__row {
    display: grid;
    grid-template-columns: 148px minmax(0, 1fr) auto;
    gap: 22px;
    padding: 13px 0;
}

.custom-webshop--boob-parity .header__logo {
    display: inline-flex;
    width: 132px;
    min-height: auto;
    padding: 0;
    border: 0;
    background: transparent;
}

.custom-webshop--boob-parity .header__logo::before {
    display: none;
}

.custom-webshop--boob-parity .header__logo-img {
    width: 132px;
    height: auto;
}

.custom-webshop--boob-parity .navbar {
    justify-content: center;
}

.custom-webshop--boob-parity .navbar__menu--root > .navbar__menu-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-webshop--boob-parity .navbar__item {
    position: relative;
    list-style: none;
}

.custom-webshop--boob-parity .navbar a,
.custom-webshop--boob-parity .navbar button {
    min-height: 40px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #1f1a17;
    padding: 9px 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.custom-webshop--boob-parity .navbar a:hover,
.custom-webshop--boob-parity .navbar button:hover {
    color: var(--bd-earth);
    transform: none;
}

.custom-webshop--boob-parity .navbar__link--selected {
    background: transparent !important;
    color: var(--bd-earth) !important;
}

.custom-webshop--boob-parity .navbar__item > .navbar__menu:not(.navbar__menu--root) {
    left: 50%;
    width: min(1040px, calc(100vw - 32px));
    border: 1px solid rgba(0, 0, 0, .08);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 18px 50px rgba(0, 0, 0, .12);
    padding: 28px 34px;
    transform: translateX(-50%);
}

.custom-webshop--boob-parity .navbar__item > .navbar__menu:not(.navbar__menu--root) > .navbar__menu-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 20px 28px;
    align-items: start;
}

.custom-webshop--boob-parity .navbar__item--group {
    min-width: 0;
}

.custom-webshop--boob-parity .navbar__group-title,
.custom-webshop--boob-parity .navbar__group-title:visited {
    display: block;
    margin: 0 0 8px;
    color: #1f1a17;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: 1.25;
    text-decoration: none;
    text-transform: uppercase;
}

.custom-webshop--boob-parity .navbar__group-links {
    display: grid;
    gap: 1px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-webshop--boob-parity .navbar__group-links .navbar__item {
    position: static;
}

.custom-webshop--boob-parity .navbar__group-links .navbar__link {
    justify-content: flex-start;
    min-height: 0;
    padding: 6px 0;
    color: rgba(31, 26, 23, .72);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.35;
    text-transform: none;
}

.custom-webshop--boob-parity .header__components {
    display: flex;
    gap: 13px;
    align-items: center;
}

.custom-webshop--boob-parity .quick-search input {
    width: 170px;
    min-height: 38px;
    border: 0;
    border-bottom: 1px solid rgba(31, 26, 23, .35);
    border-radius: 0;
    background: transparent;
    padding: 8px 2px;
    font-size: 13px;
}

.custom-webshop--boob-parity .cart__link,
.custom-webshop--boob-parity .profile__link {
    min-height: auto;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #1f1a17;
    padding: 7px 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.custom-webshop--boob-parity .breadcrumbs-container {
    width: auto;
    margin: 0;
    border-bottom: 0;
    background: transparent;
}

.custom-webshop--boob-parity .main-content {
    padding-top: 0;
}

.custom-webshop--boob-parity .breadcrumbs {
    display: block;
    gap: 0;
    margin: .5625rem 0 .25rem;
    padding: .5625rem .625rem;
    color: #404040;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: .8125rem;
    text-transform: none;
}

.custom-webshop--boob-parity .breadcrumbs__item {
    display: inline-block;
    gap: 0;
}

.custom-webshop--boob-parity .breadcrumbs__item:not(:last-child)::after {
    margin-inline: .5rem;
    color: inherit;
    content: "|";
}

.custom-webshop--boob-parity .breadcrumbs__link {
    display: inline-block;
    color: #404040;
    text-decoration: underline;
    text-transform: capitalize;
}

.custom-webshop--boob-parity .breadcrumbs__item:last-of-type .breadcrumbs__link {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

.custom-webshop--boob-parity.custom-webshop--current-site-content .main-content {
    padding: 0;
}

.custom-webshop--boob-parity.custom-webshop--current-site-content .main-content .row,
.custom-webshop--boob-parity.custom-webshop--current-site-content .breadcrumbs-container .row {
    max-width: 84rem;
}

.custom-webshop--boob-parity .boob-home-hero {
    margin: 18px 0 18px;
}

.custom-webshop--boob-parity .boob-home-hero__main {
    position: relative;
    display: grid;
    min-height: clamp(460px, 62vw, 740px);
    overflow: hidden;
    background: var(--bd-blush);
    color: #fff;
    text-decoration: none;
}

.custom-webshop--boob-parity .boob-home-hero__main::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(31, 26, 23, .40), rgba(31, 26, 23, .08) 58%, rgba(31, 26, 23, .18));
    content: "";
}

.custom-webshop--boob-parity .boob-home-hero__main img {
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    transform: scale(1.02);
}

.custom-webshop--boob-parity .boob-home-hero__text {
    position: absolute;
    z-index: 1;
    left: clamp(24px, 6vw, 84px);
    bottom: clamp(28px, 7vw, 96px);
    display: grid;
    max-width: 620px;
    gap: 14px;
}

.custom-webshop--boob-parity .boob-home-hero__eyebrow {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.custom-webshop--boob-parity .boob-home-hero__text strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 8vw, 92px);
    font-weight: 400;
    letter-spacing: -.055em;
    line-height: .92;
}

.custom-webshop--boob-parity .boob-home-hero__text span {
    font-size: clamp(16px, 2vw, 22px);
    line-height: 1.5;
}

.custom-webshop--boob-parity .boob-home-hero__text em,
.custom-webshop--boob-parity .button {
    display: inline-flex;
    width: max-content;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 0;
    background: #fff;
    color: #1f1a17;
    padding: 13px 24px;
    font-size: 12px;
    font-style: normal;
    font-weight: 800;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.custom-webshop--boob-parity .boob-home-tiles {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 18px;
    margin-bottom: 46px;
}

.custom-webshop--boob-parity .boob-home-tile {
    position: relative;
    display: grid;
    min-height: 270px;
    overflow: hidden;
    align-items: end;
    background: #e6cac8;
    color: #fff;
    padding: 28px;
    text-decoration: none;
}

.custom-webshop--boob-parity .boob-home-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.custom-webshop--boob-parity .boob-home-tile::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(31, 26, 23, .42));
    content: "";
}

.custom-webshop--boob-parity .boob-home-tile span,
.custom-webshop--boob-parity .boob-home-tile strong {
    position: relative;
    z-index: 1;
}

.custom-webshop--boob-parity .boob-home-tile > span,
.custom-webshop--boob-parity .boob-home-tile strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: -.045em;
    line-height: 1;
}

.custom-webshop--boob-parity .boob-home-tile--text {
    background: #e6cac8;
    color: #1f1a17;
}

.custom-webshop--boob-parity .boob-home-tile--text::after {
    display: none;
}

.custom-webshop--boob-parity .boob-home-tile--text span {
    font-size: 15px;
    line-height: 1.5;
}

.custom-webshop--boob-parity .product-section,
.custom-webshop--boob-parity .product-group-header,
.custom-webshop--boob-parity .cart-page,
.custom-webshop--boob-parity .product-detail-page {
    width: min(1314px, calc(100% - 28px));
}

.custom-webshop--boob-parity .product-group-header {
    margin-top: 32px;
    margin-bottom: 28px;
    text-align: center;
}

.custom-webshop--boob-parity .product-group-header h1,
.custom-webshop--boob-parity .section-heading h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(38px, 5.2vw, 72px);
    font-weight: 400;
    letter-spacing: -.055em;
}

.custom-webshop--boob-parity .product-group-header p {
    max-width: 760px;
    margin: 14px auto 0;
}

.custom-webshop--boob-parity .product-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 30px 20px;
}

.custom-webshop--boob-parity .product-card {
    display: block;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.custom-webshop--boob-parity .product-card__image {
    min-height: auto;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    background: #f1e5df;
}

.custom-webshop--boob-parity .product-card__image img {
    object-fit: cover;
    transition: transform .35s ease;
}

.custom-webshop--boob-parity .product-card:hover .product-card__image img {
    transform: scale(1.025);
}

.custom-webshop--boob-parity .product-card__brand {
    margin-top: 13px;
    color: #7b716b;
    font-size: 11px;
    letter-spacing: .09em;
}

.custom-webshop--boob-parity .product-card__name {
    display: block;
    margin-top: 5px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: .01em;
    line-height: 1.35;
}

.custom-webshop--boob-parity .price {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    font-weight: 700;
}

.custom-webshop--boob-parity .product-list-toolbar,
.custom-webshop--boob-parity .filter-group,
.custom-webshop--boob-parity .subnav--category {
    border-radius: 0;
    background: #fff;
    box-shadow: none;
}

.custom-webshop--boob-parity .footer {
    margin-top: 2.1428571429rem;
    border-top: 1px solid #272e33;
    background: #272e33;
    color: #fff;
    padding: 2.1428571429rem 0 1.0714285714rem;
}

.custom-webshop--boob-parity .footer .row {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 34px;
}

.custom-webshop--boob-parity .footer__section {
    padding-bottom: 1.0714285714rem;
    width: auto;
    word-break: break-word;
}

.custom-webshop--boob-parity .footer__header,
.custom-webshop--boob-parity .footer h4 {
    margin: 4px 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

.custom-webshop--boob-parity .footer p {
    color: #fff;
    line-height: 1.5em;
}

.custom-webshop--boob-parity .footer a,
.custom-webshop--boob-parity .footer__link {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

.custom-webshop--boob-parity .footer__text {
    color: #fff;
    font-size: 14px;
}

.custom-webshop--boob-parity .footer__payment-options,
.custom-webshop--boob-parity .footer__delivery-options {
    display: flex;
    align-items: center;
    max-width: none;
    gap: 8px;
}

.custom-webshop--boob-parity .footer__payment-options {
    flex-wrap: nowrap;
}

.custom-webshop--boob-parity .footer__delivery-options {
    flex-wrap: wrap;
}

.custom-webshop--boob-parity .footer__payment-options img,
.custom-webshop--boob-parity .footer__delivery-options img {
    display: inline-block;
    flex: 0 0 auto;
    max-width: none;
    height: 30px;
    vertical-align: middle;
}

.custom-webshop--boob-parity .footer__payment-options img {
    width: 50px;
}

.custom-webshop--boob-parity .footer__delivery-options img {
    width: auto;
}

@media (max-width: 1020px) {
    .custom-webshop--boob-parity .header__row {
        grid-template-columns: 1fr;
    }

    .custom-webshop--boob-parity .header__components,
    .custom-webshop--boob-parity .navbar {
        justify-content: center;
    }

    .custom-webshop--boob-parity .boob-home-tiles,
    .custom-webshop--boob-parity .footer .row {
        grid-template-columns: 1fr 1fr;
    }

    .custom-webshop--boob-parity .product-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 680px) {
    .custom-webshop--boob-parity .row,
    .custom-webshop--boob-parity .product-section,
    .custom-webshop--boob-parity .product-group-header,
    .custom-webshop--boob-parity .cart-page,
    .custom-webshop--boob-parity .product-detail-page {
        width: min(100% - 20px, 1314px);
    }

    .custom-webshop--boob-parity .navbar__link--block {
        display: inline-flex;
        border-radius: 0;
        background: #1f1a17;
        color: #fff;
    }

    .custom-webshop--boob-parity .navbar__menu--root > .navbar__menu-links {
        display: grid;
    }

    .custom-webshop--boob-parity .navbar__item > .navbar__menu:not(.navbar__menu--root) {
        position: static;
        width: 100%;
        transform: none;
        padding: 14px 16px;
    }

    .custom-webshop--boob-parity .navbar__item > .navbar__menu:not(.navbar__menu--root) > .navbar__menu-links {
        grid-template-columns: 1fr;
    }

    .custom-webshop--boob-parity .header__components {
        align-items: stretch;
    }

    .custom-webshop--boob-parity .quick-search input {
        width: 100%;
    }

    .custom-webshop--boob-parity .boob-home-hero__main {
        min-height: 520px;
    }

    .custom-webshop--boob-parity .boob-home-tiles,
    .custom-webshop--boob-parity .product-list,
    .custom-webshop--boob-parity .footer .row {
        grid-template-columns: 1fr;
    }
}

/* Exact Litium product markup pass: let the imported site.min.css own product cards. */
.custom-webshop--boob-parity div.product-list {
    display: block;
}

.custom-webshop--boob-parity ul.row.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    padding: 0;
}

.custom-webshop--boob-parity .product-list__item {
    display: flex;
}

.custom-webshop--boob-parity .product__wrapper {
    display: flex;
    flex: 1 1 auto;
    flex-flow: column wrap;
    width: 100%;
}

.custom-webshop--boob-parity .product__figure {
    display: flex;
    margin: .9375rem 0 0;
    width: 100%;
    background: #fff;
}

.custom-webshop--boob-parity .product__image-link {
    display: block;
    width: 100%;
    background: #fff;
}

.custom-webshop--boob-parity .product__image {
    width: 100%;
    height: auto;
    aspect-ratio: 412 / 600;
    object-fit: cover;
    background: #fff;
}

.custom-webshop--boob-parity .product__info {
    width: 100%;
    margin-bottom: 1.875rem;
    padding-top: 10px;
}

.custom-webshop--boob-parity .product__info a {
    text-decoration: none;
}

.custom-webshop--boob-parity .product__name {
    display: block;
    width: 100%;
    margin: 0;
    overflow: hidden;
    color: #1f1a17;
    font-family: var(--regular-font, "Gotham Book", "Helvetica Neue", Arial, sans-serif);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.4;
    text-overflow: ellipsis;
}

.custom-webshop--boob-parity .product__price {
    margin-bottom: .5rem;
    color: #1f1a17;
    font-weight: 400;
}

.custom-webshop--boob-parity .product__price .price {
    display: inline;
    margin-top: 0;
    font-size: inherit;
    font-weight: 400;
}

.custom-webshop--boob-parity .product__colors {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.custom-webshop--boob-parity .product__color-link {
    display: block;
    width: 28px;
    height: 28px;
    overflow: hidden;
    border: 1px solid rgba(31, 26, 23, .18);
    border-radius: 50%;
    background: #fff;
}

.custom-webshop--boob-parity .product__color-swatch {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--variant-swatch, #e6cac8);
}

/* BoobDesign parity reset: imported Litium CSS owns these blocks. */
.custom-webshop--boob-parity .webshop-block {
    width: auto;
}

.custom-webshop--boob-parity .webshop-block--banners {
    display: block;
    grid-template-columns: none;
    gap: 0;
}

.custom-webshop--boob-parity .teaser,
.custom-webshop--boob-parity .banner-block,
.custom-webshop--boob-parity .webshop-block--text .teaser {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.custom-webshop--boob-parity .teaser {
    position: relative;
    overflow: hidden;
}

.custom-webshop--boob-parity .banner-block__image-link {
    display: flex;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    padding: .625rem 0;
    position: relative;
}

.custom-webshop--boob-parity .banner-block__image,
.custom-webshop--boob-parity .banner-block__placeholder {
    width: 100%;
    max-width: 100%;
    min-height: 0;
}

.custom-webshop--boob-parity .banner-block__image {
    height: auto;
    object-fit: initial;
}

.custom-webshop--boob-parity .single-banner .banner-block__image {
    width: 100%;
}

.custom-webshop--boob-parity .banner-text {
    position: absolute;
    inset: 0 10%;
    display: block;
    width: 80%;
    max-height: 100%;
    text-align: center;
    pointer-events: none;
}

.custom-webshop--boob-parity .banner-text__title {
    position: absolute;
    top: 40%;
    display: block;
    width: 100%;
    margin-bottom: 0;
    transform: translateY(-50%);
    color: #fff;
    font-family: var(--banner-title-font, var(--heading-font, Georgia, "Times New Roman", serif));
    font-size: 5rem;
    font-weight: 400;
    line-height: 1;
}

.custom-webshop--boob-parity .banner-text__button {
    position: relative;
    top: 55%;
    display: inline-block;
    min-width: 9.0625rem;
    max-width: 100%;
    margin-top: 4.0625rem;
    outline: none;
    background-color: #000;
    color: #fff;
    padding: .6875rem 1.25rem .625rem;
    cursor: pointer;
    font-size: .8125rem;
    white-space: nowrap;
}

.custom-webshop--boob-parity .product-section {
    width: min(82rem, calc(100% - 2rem));
    margin-right: auto;
    margin-left: auto;
}

.custom-webshop--boob-parity .product-sorting {
    margin-bottom: 1.875rem;
}

.custom-webshop--boob-parity .product-detail-page,
.custom-webshop--boob-parity .row[itemscope][itemtype="http://schema.org/Product"] {
    width: auto;
    margin-right: auto;
    margin-left: auto;
}

.custom-webshop--boob-parity .product-detail,
.custom-webshop--boob-parity .product-detail__media {
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.custom-webshop--boob-parity .product-detail__media {
    display: block;
    min-height: 0;
    overflow: visible;
    padding: 0;
}

.custom-webshop--boob-parity .product-detail__image-link {
    display: block;
    min-height: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.custom-webshop--boob-parity .product-detail__image-link img,
.custom-webshop--boob-parity .product-detail__media img {
    width: 100%;
    height: auto;
    object-fit: initial;
}

.custom-webshop--boob-parity .product-images--fallback .product-detail__image-link img {
    display: block;
    width: 100%;
    height: auto;
}

.custom-webshop--boob-parity .product-detail__brand {
    margin-top: 0;
    color: #404040;
    font-size: .875rem;
    font-weight: 300;
    letter-spacing: 0;
    text-transform: none;
}

/* Final BoobDesign parity pass: keep the imported Litium theme in control. */
body.custom-webshop--boob-parity {
    background: #fff;
    color: #272e33;
    font-family: var(--body-font, "Futura Plus W08 Book", sans-serif);
}

body.custom-webshop--boob-parity .row {
    width: auto;
    max-width: 82.125rem;
}

body.custom-webshop--boob-parity h1,
body.custom-webshop--boob-parity h2,
body.custom-webshop--boob-parity h3 {
    font-family: var(--heading-font, "Futura Plus W08 Medium", sans-serif);
    font-weight: normal;
    letter-spacing: 0;
}

body.custom-webshop--boob-parity .boob-home-intro {
    padding: 2.75rem .9375rem 2.5rem;
    text-align: center;
}

body.custom-webshop--boob-parity .boob-home-intro h2 {
    max-width: 58rem;
    margin: 0 auto;
    color: #272e33;
    font-size: clamp(1.75rem, 3.8vw, 3.75rem);
    line-height: 1.08;
}

body.custom-webshop--boob-parity .footer .row {
    max-width: 82.125rem;
}

.custom-webshop--boob-parity .product-detail {
    padding: 0;
    font-family: var(--light-font, "Futura Plus W08 Book", sans-serif);
}

.custom-webshop--boob-parity .product-detail__name {
    margin-bottom: .75rem;
    color: #404040;
    font-family: var(--heading-font, "Gotham Medium", "Helvetica Neue", Arial, sans-serif);
    font-size: 1.3125rem;
    letter-spacing: 0;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .custom-webshop--boob-parity .product-detail__name {
        font-size: 1.5rem;
    }
}

.custom-webshop--boob-parity .product-detail__price-info {
    display: inline-block;
    margin: 1.5rem 0 0;
    overflow: hidden;
    color: #404040;
    font-family: var(--heading-font, "Gotham Medium", "Helvetica Neue", Arial, sans-serif);
    font-size: 1.3125rem;
    font-weight: 300;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.custom-webshop--boob-parity .product-detail__price-info .price,
.custom-webshop--boob-parity .product-detail__price-info .product__campaign-price,
.custom-webshop--boob-parity .product-detail__price-info .product__old-price {
    font-size: 1.5rem;
}

.custom-webshop--boob-parity .product-detail__buy {
    margin-top: 1.25rem;
}

.custom-webshop--boob-parity .product-detail__buy-button {
    position: relative;
    display: inline-block;
    width: 100%;
    margin-bottom: 2.25rem;
    border: 0;
    border-radius: 0;
    background-color: #272e33;
    color: #fff;
    padding: .75rem 1.5rem;
    font-family: var(--heading-font, "Gotham Medium", "Helvetica Neue", Arial, sans-serif);
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: normal;
    text-align: center;
    text-transform: none;
    cursor: pointer;
    z-index: 0;
}

.custom-webshop--boob-parity .product-detail__buy-button:hover,
.custom-webshop--boob-parity .product-detail__buy-button:active,
.custom-webshop--boob-parity .product-detail__buy-button:focus {
    background-color: #272e33;
    color: #fff;
    transform: none;
}

.custom-webshop--boob-parity .product-detail__buy-button:disabled,
.custom-webshop--boob-parity .product-detail__buy-button.disabled {
    background-color: #404040;
    cursor: not-allowed;
    opacity: .75;
}

/* Litium parity pass: keep the header, menu, banner and footer on the imported Accelerator layout. */
body.custom-webshop--boob-parity .bnr {
    padding: .5rem 0;
    border-top: 1px solid #eee;
    background-color: var(--bnr-background-color);
    color: #272e33;
    font-family: var(--heading-font, "Futura Plus W08 Medium", sans-serif);
    font-size: 14px;
    letter-spacing: 0;
    text-transform: none;
}

body.custom-webshop--boob-parity .bnr .row,
body.custom-webshop--boob-parity .header .row {
    max-width: 100%;
}

body.custom-webshop--boob-parity .bnr__row {
    display: flex;
    justify-content: space-between;
    gap: 0;
}

body.custom-webshop--boob-parity .bnr__trigger {
    display: flex;
    gap: .3125rem;
    align-items: center;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #272e33;
    padding: 0;
    font: inherit;
    letter-spacing: 0;
    text-transform: none;
    cursor: pointer;
}

body.custom-webshop--boob-parity .bnr p,
body.custom-webshop--boob-parity .bnr h3 {
    margin: 0;
    font-size: inherit;
    line-height: 1.2;
}

body.custom-webshop--boob-parity .header {
    position: sticky;
    top: 0;
    width: 100%;
    border-bottom: 0;
    background-color: #fff;
    backdrop-filter: none;
    z-index: 9;
}

body.custom-webshop--boob-parity .header__row {
    display: flex;
    grid-template-columns: none;
    flex-wrap: wrap;
    gap: 0;
    align-items: center;
    max-width: none;
    padding: 0;
}

body.custom-webshop--boob-parity .header__components {
    display: flex;
    gap: 0;
    justify-content: flex-end;
    margin-left: auto;
}

body.custom-webshop--boob-parity .header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: var(--header-logo-width);
    max-width: 8.75rem;
    height: 3rem;
    min-height: 0;
    margin-right: auto;
    border: 0;
    background: none;
    background-color: transparent !important;
    background-image: none !important;
    padding: 0;
}

body.custom-webshop--boob-parity .header__logo-img {
    display: block;
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
    object-position: left center;
}

body.custom-webshop--boob-parity .navbar {
    position: static;
    display: inline-block;
    flex-wrap: initial;
    gap: 0;
    justify-content: initial;
    margin-inline: auto;
}

body.custom-webshop--boob-parity .navbar > .navbar__link--block,
body.custom-webshop--boob-parity .navbar > .navbar__link--block:hover,
body.custom-webshop--boob-parity .navbar > .navbar__link--block:focus,
body.custom-webshop--boob-parity .navbar > .navbar__link--block:active {
    display: none;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #404040;
    padding: .9375rem .46875rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
    transform: none;
    cursor: pointer;
}

body.custom-webshop--boob-parity .navbar .navbar__menu-links {
    display: block;
    margin: 0;
    padding: 0;
    list-style: none;
    background-color: transparent;
    transition: transform .3s ease;
}

body.custom-webshop--boob-parity .navbar .navbar__item {
    position: static;
    list-style: none;
    vertical-align: top;
    transition: background-color .3s ease;
}

body.custom-webshop--boob-parity .navbar .navbar__item-secondary .navbar__link {
    font-size: .875rem;
}

body.custom-webshop--boob-parity .navbar .navbar__link,
body.custom-webshop--boob-parity .navbar .navbar__link:hover,
body.custom-webshop--boob-parity .navbar .navbar__link:focus,
body.custom-webshop--boob-parity .navbar .navbar__link:active {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
    width: auto;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #404040;
    padding: 0;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    transform: none;
    cursor: pointer;
}

body.custom-webshop--boob-parity .navbar .navbar__menu-toggle,
body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:hover,
body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:focus,
body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:active,
body.custom-webshop--boob-parity .navbar .navbar__menu-header-button,
body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:hover,
body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:focus,
body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:active {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: inherit;
    padding: 0;
    font: inherit;
    letter-spacing: 0;
    text-align: left;
    text-decoration: none;
    text-transform: none;
    transform: none;
    cursor: pointer;
}

body.custom-webshop--boob-parity .navbar .navbar__icon {
    display: none;
    padding: .9375rem 1.25rem;
    color: #404040;
    cursor: pointer;
}

body.custom-webshop--boob-parity .navbar .navbar__icon.navbar__link--block {
    padding: .625rem .46875rem;
}

body.custom-webshop--boob-parity .navbar .navbar__link-more {
    margin-left: .3125rem;
    width: .625rem;
    height: .625rem;
    transition: transform 150ms ease;
}

body.custom-webshop--boob-parity .navbar .navbar__link-more::before {
    content: none;
}

body.custom-webshop--boob-parity .navbar .navbar__link--icon {
    display: inline-block;
    flex: 0 0 1rem;
    width: 1rem;
    height: 1rem;
    margin-right: .5rem;
    border: 0 !important;
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none !important;
    object-fit: contain;
}

body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__link--selected {
    background: #eee !important;
    color: #404040 !important;
}

body.custom-webshop--boob-parity .header__components .profile__link--block,
body.custom-webshop--boob-parity .header__components .profile__link--block:hover,
body.custom-webshop--boob-parity .header__components .profile__link--block:focus,
body.custom-webshop--boob-parity .header__components .cart__link--block,
body.custom-webshop--boob-parity .header__components .cart__link--block:hover,
body.custom-webshop--boob-parity .header__components .cart__link--block:focus,
body.custom-webshop--boob-parity .header__components .quick-search__link--block,
body.custom-webshop--boob-parity .header__components .quick-search__link--block:hover,
body.custom-webshop--boob-parity .header__components .quick-search__link--block:focus {
    display: flex;
    align-items: center;
    min-height: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #404040;
    padding: .9375rem .46875rem;
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0;
    text-decoration: none;
    text-transform: none;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result {
    box-sizing: border-box;
    overflow: auto;
    z-index: 22;
    list-style: none;
    margin: 0;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__item {
    margin: 0;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__group-header {
    margin-top: .5rem;
    margin-bottom: .125rem;
    color: #5c6470;
    padding: .375rem .75rem;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__link,
body.custom-webshop--boob-parity .quick-search .quick-search-result__show-all {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: .75rem;
    border-radius: 0;
    padding: .5625rem .75rem;
    color: #1f242b;
    cursor: pointer;
    text-decoration: none;
    transition: background-color .15s ease, color .15s ease;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__link:hover,
body.custom-webshop--boob-parity .quick-search .quick-search-result__link:focus {
    background-color: #f4f7fb;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__item--selected .quick-search-result__link {
    background-color: #eef5ff;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__link--disabled,
body.custom-webshop--boob-parity .quick-search .quick-search-result__link--disabled:hover,
body.custom-webshop--boob-parity .quick-search .quick-search-result__link--disabled:focus {
    color: #8c919a;
    pointer-events: none;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__thumb {
    flex: 0 0 1.875rem;
    width: 1.875rem;
    height: 2.625rem;
    overflow: hidden;
    border: .0625rem solid #dde4ee;
    border-radius: .375rem;
    background-color: #fff;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__thumb-image {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    object-fit: cover;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__label {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__show-all {
    justify-content: space-between;
    gap: .625rem;
    margin: .5rem .625rem .25rem;
    border-radius: .5rem;
    background: linear-gradient(125deg, #0b0f16 0%, #1d2b3b 100%);
    color: #fff;
    font-weight: 600;
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__show-all:hover,
body.custom-webshop--boob-parity .quick-search .quick-search-result__show-all:focus,
body.custom-webshop--boob-parity .quick-search .quick-search-result__item--selected .quick-search-result__show-all {
    color: #fff;
    filter: brightness(1.08);
}

body.custom-webshop--boob-parity .quick-search .quick-search-result__cta {
    flex: 0 0 auto;
    font-size: 1rem;
    line-height: 1;
}

body.custom-webshop--boob-parity .footer .row {
    display: flex;
    flex-flow: row wrap;
    gap: 0;
    max-width: 82.125rem;
}

body.custom-webshop--boob-parity .footer__section {
    width: auto;
}

@media (min-width: 1024px) {
    body.custom-webshop--boob-parity .header__components {
        flex: 1;
        margin-left: initial;
    }

    body.custom-webshop--boob-parity .header__logo-container {
        flex: 1;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row {
        flex-wrap: nowrap;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .header__logo {
        box-sizing: border-box;
        align-items: center;
        height: 3.5rem;
        margin: 0 .625rem 0 0;
        padding: .375rem 0;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .header__components {
        order: 3;
        justify-content: flex-end;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .navbar .navbar__menu {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .navbar > .navbar__menu {
        height: 100%;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search {
        display: flex;
        margin-left: auto;
        position: static;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__form {
        display: none;
        align-items: center;
        position: absolute;
        top: 100%;
        right: .625rem;
        left: .625rem;
        width: auto;
        min-width: 0;
        height: 2.625rem;
        box-sizing: border-box;
        border: .0625rem solid #bbb;
        border-radius: 0;
        background-color: #fff;
        z-index: 10;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__form--force-show {
        display: flex !important;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__form > .quick-search__icon {
        display: block;
        flex: 0 0 2.0714285714rem;
        width: 2.0714285714rem;
        margin-left: .3571428571rem;
        cursor: pointer;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__input {
        width: 100%;
        min-width: 0;
        height: 100%;
        border: 0;
        border-radius: 0;
        background-color: #fff;
        padding: 0 .3125rem 0 .625rem;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__submit-button {
        display: none;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search-result {
        top: 100%;
        right: 0;
        left: 0;
        width: 100%;
        max-height: 70vh;
        border: .0625rem solid #d9d9d9;
        border-radius: 0 0 .625rem .625rem;
        background-color: #fff;
        box-shadow: 0 .625rem 1.75rem rgba(18, 20, 26, .12);
        padding: .375rem 0;
    }

    body.custom-webshop--boob-parity .header .header__row--one-row .quick-search .quick-search__link--block {
        display: flex;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle,
    body.custom-webshop--boob-parity .navbar .navbar__item-secondary {
        display: none;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links {
        display: flex;
        flex-wrap: wrap;
        gap: 0;
        justify-content: initial;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item {
        margin-right: 1rem;
        background-color: #fff;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__link {
        height: 100%;
        background-color: #fff;
        padding: 1.3125rem .3125rem;
        font-size: 1rem;
        font-weight: 400;
        text-transform: uppercase;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__link::after {
        content: none !important;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu {
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        width: 100%;
        min-width: 0;
        border: .0625rem solid #eee;
        border-radius: 0;
        background-color: #fff;
        box-shadow: none;
        padding: 1.875rem;
        pointer-events: none;
        transform: none;
        z-index: 999;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu--show {
        display: flex;
        pointer-events: all;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links {
        display: flex;
        grid-template-columns: none;
        gap: 0;
        margin-inline: auto;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item {
        min-width: 15.625rem;
        padding-right: 1.25rem;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__link,
    body.custom-webshop--boob-parity .navbar__group-title {
        margin-bottom: .625rem;
        color: #404040;
        font-size: 1rem;
        font-weight: 300;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu {
        display: flex;
        position: static;
        top: auto;
        left: auto;
        width: auto;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        margin: 0;
        padding: 0;
        pointer-events: auto;
        transform: none;
        z-index: auto;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links {
        display: block;
        margin: 0;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item {
        min-width: 0;
        margin-top: .375rem;
        padding-right: 0;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links .navbar__link {
        padding: 0;
        font-size: 1rem;
        font-weight: 300;
        text-transform: none;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links > .navbar__item > .navbar__menu > .navbar__menu-links .navbar__link.has-children {
        margin: .9375rem 0 .3125rem;
        font-weight: 600;
    }
}

@media (max-width: 1023px) {
    body.custom-webshop--boob-parity .quick-search .quick-search-result {
        top: calc(100% + .25rem);
        max-height: calc(100dvh - var(--quick-search-mobile-top, 0px) - env(safe-area-inset-bottom) - 1rem);
        overscroll-behavior: contain;
        z-index: 45;
        padding-bottom: .625rem;
    }

    body.custom-webshop--boob-parity .quick-search .quick-search-result__show-all {
        position: sticky;
        bottom: 0;
        z-index: 1;
        margin: .625rem .625rem 0;
        box-shadow: 0 .5rem 1.125rem rgba(18, 20, 26, .16);
    }

    body.custom-webshop--boob-parity .breadcrumbs__item:not(:last-of-type)::after {
        display: none;
    }

    body.custom-webshop--boob-parity .breadcrumbs__item:last-of-type .breadcrumbs__link {
        display: none;
    }

    body.custom-webshop--boob-parity .breadcrumbs__item:not(:nth-last-of-type(2)) {
        display: none;
    }

    body.custom-webshop--boob-parity .bnr__row {
        justify-content: center;
        text-align: center;
    }

    body.custom-webshop--boob-parity .bnr__item:not(:nth-of-type(2)) {
        display: none;
    }

    body.custom-webshop--boob-parity .header__row {
        position: relative;
        grid-template-columns: none;
    }

    body.custom-webshop--boob-parity .header__logo-container {
        position: absolute;
        left: 50%;
        z-index: 2;
        order: 1;
        display: flex;
        justify-content: center;
        width: var(--header-logo-width);
        max-width: 8.75rem;
        margin-left: 0;
        transform: translateX(-50%);
    }

    body.custom-webshop--boob-parity .header__logo {
        justify-content: center;
        width: 100%;
        height: 2.75rem;
        margin: 0 auto;
        padding: .5rem 0;
    }

    body.custom-webshop--boob-parity .header__logo-img {
        object-position: center center;
    }

    body.custom-webshop--boob-parity .navbar {
        order: 0;
        flex: 1;
        display: inline-block;
        width: auto;
        margin-inline: 0 auto;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__link--block,
    body.custom-webshop--boob-parity .navbar > .navbar__link--block:hover,
    body.custom-webshop--boob-parity .navbar > .navbar__link--block:focus,
    body.custom-webshop--boob-parity .navbar > .navbar__link--block:active {
        display: flex;
        width: auto;
        min-width: 0;
        justify-content: flex-start;
        padding: .625rem .46875rem;
    }

    body.custom-webshop--boob-parity .navbar .navbar__icon {
        display: inline-block;
    }

    body.custom-webshop--boob-parity .header__components {
        position: static;
        z-index: 3;
        flex: 1;
        order: 2;
        align-items: center;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 0;
        justify-content: flex-end;
    }

    body.custom-webshop--boob-parity .header__components .quick-search,
    body.custom-webshop--boob-parity .header__components .profile,
    body.custom-webshop--boob-parity .header__components .cart {
        flex: 0 0 auto;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu {
        position: fixed;
        top: 0;
        left: 0;
        display: none;
        width: 300px;
        height: 100%;
        overflow: hidden auto;
        background-color: #fff;
        z-index: 1;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-links {
        width: 100%;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu--show {
        display: block;
    }

    body.custom-webshop--boob-parity .navbar > .navbar__menu {
        box-shadow: .125rem 0 .3125rem 0 rgba(0, 0, 0, .25);
        z-index: 999;
    }

    body.custom-webshop--boob-parity .navbar .navbar__item {
        display: flex;
        align-items: stretch;
        width: 100%;
        border-bottom: .0625rem solid #ccc;
    }

    body.custom-webshop--boob-parity .navbar .navbar__link,
    body.custom-webshop--boob-parity .navbar .navbar__link:hover,
    body.custom-webshop--boob-parity .navbar .navbar__link:focus,
    body.custom-webshop--boob-parity .navbar .navbar__link:active {
        flex: 1;
        width: auto;
        min-width: 0;
        justify-content: flex-start;
        padding: .9375rem 1.25rem;
    }

    body.custom-webshop--boob-parity .navbar .navbar__link:hover,
    body.custom-webshop--boob-parity .navbar .navbar__link:focus {
        background-color: #f2f2f2;
    }

    body.custom-webshop--boob-parity .navbar .navbar__link > span {
        min-width: 0;
    }

    body.custom-webshop--boob-parity .navbar .navbar__link-more {
        display: none;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle,
    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:hover,
    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:focus,
    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:active {
        flex: 0 0 auto;
        width: auto;
        min-width: 3.5rem;
        align-self: stretch;
        justify-content: center;
        border-left: 0;
        color: #404040;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:hover,
    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle:focus {
        background-color: #f2f2f2;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-header {
        display: flex;
        align-items: center;
        min-height: 3rem;
        border-bottom: .0625rem solid #ccc;
        background-color: #fff;
        color: #404040;
        font-weight: 700;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-header-button,
    body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:hover,
    body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:focus,
    body.custom-webshop--boob-parity .navbar .navbar__menu-header-button:active {
        width: 100%;
        min-width: 0;
        color: inherit;
    }

    body.custom-webshop--boob-parity .navbar .navbar__title {
        flex: 1;
        padding: .9375rem 0;
        cursor: pointer;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-header .navbar__icon,
    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle .navbar__icon {
        flex: 0 0 auto;
        width: 1rem;
        height: 1rem;
        padding: .9375rem 1.25rem;
    }

    body.custom-webshop--boob-parity .navbar .navbar__menu-toggle .navbar__icon--open {
        border-left: .0625rem solid #ccc;
    }

    body.custom-webshop--boob-parity .navbar .navbar__icon--close {
        width: auto;
        height: auto;
        margin-left: auto;
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
}

@media (max-width: 1023px) {
    .custom-webshop--boob-parity .banner-text__title,
    .custom-webshop--boob-parity .multiple-banner.large-3 .banner-text__title,
    .custom-webshop--boob-parity .multiple-banner.large-4 .banner-text__title {
        font-size: 2.5rem;
    }

    .custom-webshop--boob-parity .banner-text__button {
        margin-top: .75rem;
    }
}

body.checkout-v2-page {
    background: #fff;
}

body.checkout-v2-page .main-content {
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 2rem 0 4rem;
}

.checkout-v2 {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
}

.checkout-v2--empty {
    display: block;
}

.checkout-v2__empty-shell {
    display: grid;
    gap: 26px;
}

.checkout-v2__empty-hero {
    border: 1px solid #e7ddd4;
    border-radius: 12px;
    background: linear-gradient(145deg, #fbf7f3 0%, #f3ece4 100%);
    box-shadow: 0 1px 4px rgba(0, 0, 0, .04);
    padding: 30px 32px;
}

.checkout-v2__empty-title {
    margin: 0;
    color: #111;
    font-size: 30px;
    font-weight: 700;
    line-height: 1.1;
}

.checkout-v2__empty-text {
    max-width: 520px;
    margin: 14px 0 0;
    color: #716a65;
    font-size: 15px;
    line-height: 1.5;
}

.checkout-v2__empty-button {
    margin-top: 20px;
}

.checkout-v2__rail {
    position: sticky;
    top: var(--checkout-v2-header-offset, 76px);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow: hidden;
    width: 72px;
    min-height: 520px;
    height: calc(100vh - var(--checkout-v2-header-offset, 76px));
    border: 1px solid #eee;
    border-radius: 10px;
    background: #fff;
}

.checkout-v2__rail-track {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
}

.checkout-v2__rail-item {
    position: relative;
    display: flex;
    flex: 1 1 0;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 0;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #404040;
    cursor: pointer;
    overflow: hidden;
    padding: 16px 6px;
}

.checkout-v2__rail-item::before {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 3px;
    border-radius: 0 3px 3px 0;
    background: transparent;
    content: "";
}

.checkout-v2__rail-item.is-active::before {
    background: #111;
}

.checkout-v2__rail-item.is-done {
    color: #2e7d52;
}

.checkout-v2__rail-item.is-done::before {
    background: #2e7d52;
}

.checkout-v2__rail-item.is-locked {
    cursor: not-allowed;
    opacity: .35;
}

.checkout-v2__rail-index {
    position: absolute;
    top: 14px;
    left: 50%;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;
    transform: translateX(-50%);
}

.checkout-v2__rail-label {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: max-content;
    color: currentColor;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    line-height: 1;
    text-align: center;
    text-transform: uppercase;
    transform: translate(-50%, -50%) rotate(-90deg);
    white-space: nowrap;
}

.checkout-v2__content {
    min-width: 0;
    max-width: 780px;
}

.checkout-v2__mobile-steps {
    display: none;
    gap: 6px;
    margin-bottom: 14px;
    overflow-x: auto;
}

.checkout-v2__mobile-step {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #eee;
    border-radius: 20px;
    background: #fff;
    color: #404040;
    cursor: pointer;
    padding: 8px 10px;
    white-space: nowrap;
}

.checkout-v2__mobile-step.is-active {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.checkout-v2__mobile-step.is-done {
    border-color: #2e7d52;
    color: #2e7d52;
}

.checkout-v2__mobile-step.is-locked {
    opacity: .5;
}

.checkout-v2__mobile-step-index {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 11px;
    font-weight: 700;
}

.checkout-v2__mobile-step-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.checkout-v2__notice {
    margin-bottom: 12px;
    border-radius: 6px;
    background: rgba(192, 57, 43, .1);
    color: #c0392b;
    font-size: 13px;
    font-weight: 600;
    padding: 10px 12px;
}

.checkout-v2__notice--success {
    background: #e8f5e9;
    color: #2e7d52;
}

.checkout-v2__section,
.checkout-v2__summary-section {
    margin-bottom: 18px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    scroll-margin-top: 100px;
}

.checkout-v2__section.is-checkout-step-locked,
.checkout-v2__summary-section.is-checkout-step-locked {
    background: #fbfaf8;
}

.checkout-v2__section.is-checkout-step-locked .checkout-v2__section-header,
.checkout-v2__summary-section.is-checkout-step-locked .checkout-v2__section-header {
    border-bottom-color: transparent;
}

.checkout-v2__section.is-checkout-step-locked .checkout-v2__section-header h3,
.checkout-v2__summary-section.is-checkout-step-locked .checkout-v2__section-header h3 {
    color: #807a74;
}

.checkout-v2__section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    border-bottom: 1px solid #eee;
    padding: 14px 18px;
}

.checkout-v2__section-header h3 {
    margin: 0;
    color: #111;
    font-size: 18px;
}

.checkout-v2__section-kicker {
    display: block;
    margin-bottom: 3px;
    color: #7a746f;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.checkout-v2__section-header-meta .button.link {
    min-height: auto;
    margin: 0;
    border: 0;
    background: transparent;
    color: #111;
    font-size: 12px;
    font-weight: 600;
    padding: 0;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.checkout-v2__section-body,
.checkout-v2__summary-body {
    padding: 14px 16px;
}

.checkout-v2__cart-table {
    width: 100%;
    border-collapse: collapse;
}

.checkout-v2__cart-table th,
.checkout-v2__cart-table td {
    border-bottom: 1px solid #eee;
    padding: 12px 8px 12px 0;
    text-align: left;
    vertical-align: middle;
}

.checkout-v2__cart-table th:last-child,
.checkout-v2__cart-table td:last-child {
    padding-right: 0;
    text-align: right;
}

.checkout-cart__product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.checkout-cart__image {
    flex: 0 0 58px;
    width: 58px;
    height: 74px;
    overflow: hidden;
    border-radius: 2px;
    background: #f3eee8;
}

.checkout-cart__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.checkout-cart__name {
    display: block;
    color: #111;
    font-weight: 700;
    text-decoration: none;
}

.checkout-cart__meta {
    display: block;
    margin-top: 3px;
    color: #716a65;
    font-size: 12px;
}

.checkout-cart__quantity,
.checkout-v2 .form__input {
    width: 100%;
    min-height: 40px;
    border: 1px solid #d9d1c6;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font: inherit;
    padding: 10px 12px;
}

.checkout-cart__quantity {
    max-width: 76px;
    font-weight: 700;
}

.checkout-cart__remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    border: 1px solid #d9d1c6;
    border-radius: 999px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    padding: 7px 12px;
    text-decoration: none;
    text-transform: uppercase;
}

.checkout-cart__remove:hover {
    border-color: #111;
}

.checkout-cart__row.is-updating {
    opacity: .55;
}

.checkout-v2__code-section {
    margin-top: 14px;
    border-top: 1px solid #eee;
    padding-top: 14px;
}

.checkout-v2__code-title {
    margin: 0 0 10px;
    font-size: 14px;
}

.checkout-v2__code-row {
    display: flex;
    gap: 8px;
}

.checkout-v2__code-input-group {
    flex: 1 1 auto;
}

.checkout-v2__code-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 110px;
    min-height: 40px;
    border: 0;
    border-radius: 4px;
    background: #111;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    padding: 0 16px;
    text-transform: uppercase;
}

.checkout-v2__applied-codes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 10px;
}

.checkout-v2__discount-error {
    margin-top: 8px;
    color: #9c1b1f;
    font-size: 12px;
    line-height: 1.35;
}

.checkout-v2__applied-code {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border: 1px solid #c8e6c9;
    border-radius: 999px;
    background: #e8f5e9;
    color: #2e7d52;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
}

.checkout-v2__applied-code-remove {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border: 0;
    border-radius: 50%;
    background: rgba(46, 125, 82, .12);
    color: #2e7d52;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    padding: 0;
}

.checkout-v2__applied-code-remove:hover {
    background: #2e7d52;
    color: #fff;
}

.checkout-v2__customer-mode {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    margin: 0 0 14px;
    border: 1px solid #d9d1c6;
    border-radius: 999px;
    background: #fbf7f3;
    color: #111;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 6px 12px;
    text-transform: uppercase;
}

.checkout-v2__customer-toggle,
.checkout-v2__field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.checkout-v2__customer-toggle {
    margin-bottom: 16px;
}

.checkout-v2__customer-toggle label,
.checkout-v2__option {
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    padding: 12px;
}

.checkout-v2__method-group {
    display: block;
}

.checkout-v2__method-list {
    display: grid;
    gap: 10px;
}

.checkout-v2__field {
    display: grid;
    gap: 6px;
    color: #111;
    font-size: 13px;
    font-weight: 700;
}

.checkout-v2__field > label {
    font-weight: 700;
}

.checkout-v2__field--full {
    grid-column: 1 / -1;
}

.checkout-v2__address-field {
    position: relative;
}

.checkout-v2__address-wrap {
    position: relative;
}

.checkout-v2__address-suggestions {
    position: absolute;
    top: calc(100% + 4px);
    right: 0;
    left: 0;
    z-index: 20;
    overflow: hidden;
    border: 1px solid #d9d1c6;
    border-radius: 4px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0, 0, 0, .12);
}

.checkout-v2__address-suggestion {
    display: block;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #eee;
    background: #fff;
    color: #111;
    cursor: pointer;
    font: inherit;
    font-size: 13px;
    font-weight: 600;
    padding: 11px 12px;
    text-align: left;
}

.checkout-v2__address-suggestion:last-child {
    border-bottom: 0;
}

.checkout-v2__address-suggestion:hover,
.checkout-v2__address-suggestion:focus {
    background: #fbf7f3;
}

.checkout-v2__option-info {
    display: grid;
    flex: 1 1 auto;
    gap: 3px;
}

.checkout-v2__option.is-selected {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.checkout-v2__option-input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.checkout-v2__option-radio {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 1px;
    border: 1px solid #b8afa6;
    border-radius: 50%;
    background: #fff;
    box-shadow: inset 0 0 0 4px #fff;
}

.checkout-v2__option-input:checked + .checkout-v2__option-radio {
    border-color: #111;
    background: #111;
}

.checkout-v2__option-name {
    color: #111;
    font-weight: 700;
}

.checkout-v2__option-description {
    color: #716a65;
    font-size: 12px;
}

.checkout-v2__option-price {
    flex: 0 0 auto;
    font-weight: 700;
}

.checkout-v2__lock-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    background: #f6f4f2;
    color: #716a65;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
}

.checkout-v2__summary-body {
    display: grid;
    gap: 10px;
}

.checkout-v2__summary-row,
.checkout-v2__summary-total {
    display: flex;
    justify-content: space-between;
    gap: 14px;
}

.checkout-v2__summary-total {
    border-top: 1px solid #eee;
    color: #111;
    font-size: 20px;
    padding-top: 12px;
}

.checkout-v2__terms-bar {
    display: flex;
    gap: 12px;
    margin: 0 0 18px;
    border: 1px solid #eee;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, .04);
    padding: 14px 16px;
}

.checkout-v2__terms-check {
    position: relative;
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 1px;
    border: 1px solid #111;
    border-radius: 4px;
    background: #fff;
}

.checkout-v2__terms-check svg {
    opacity: 0;
}

.checkout-v2__terms-input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
}

.checkout-v2__terms-bar:has(.checkout-v2__terms-input:checked) {
    border-color: #111;
    box-shadow: 0 0 0 1px #111 inset;
}

.checkout-v2__terms-bar:has(.checkout-v2__terms-input:checked) .checkout-v2__terms-check {
    background: #111;
}

.checkout-v2__terms-bar:has(.checkout-v2__terms-input:checked) .checkout-v2__terms-check svg {
    opacity: 1;
}

.checkout-v2__terms-content {
    display: grid;
    gap: 3px;
}

.checkout-v2__terms-hint {
    color: #716a65;
    font-size: 12px;
}

.checkout-v2__payment-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.checkout-v2__submit {
    width: min(100%, 320px);
    min-height: 48px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 14px 22px;
    text-transform: uppercase;
}

.checkout-v2__section-actions {
    display: flex;
    justify-content: flex-end;
    margin-top: 16px;
}

.checkout-v2__continue-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border: 0;
    border-radius: 0;
    background: #111;
    color: #fff;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    padding: 13px 22px;
    text-transform: uppercase;
}

.checkout-v2__continue-button:hover,
.checkout-v2__submit:hover {
    background: #2d2824;
}

.checkout-v2 textarea.form__input {
    min-height: 110px;
    resize: vertical;
}

@media (max-width: 1023px) {
    .checkout-v2 {
        display: block;
    }

    .checkout-v2__rail {
        display: none;
    }

    .checkout-v2__mobile-steps {
        display: flex;
    }

    .checkout-v2__content {
        max-width: none;
    }
}

@media (max-width: 720px) {
    body.checkout-v2-page .main-content {
        width: min(100% - 20px, 1180px);
        padding-top: 1rem;
    }

    .checkout-v2__field-grid,
    .checkout-v2__customer-toggle {
        grid-template-columns: 1fr;
    }

    .checkout-v2__cart-table,
    .checkout-v2__cart-table thead,
    .checkout-v2__cart-table tbody,
    .checkout-v2__cart-table tr,
    .checkout-v2__cart-table td {
        display: block;
    }

    .checkout-v2__cart-table thead {
        display: none;
    }

    .checkout-v2__cart-table td {
        border-bottom: 0;
        padding: 7px 0;
        text-align: left !important;
    }

    .checkout-cart__row {
        border-bottom: 1px solid #eee;
        padding: 12px 0;
    }

    .checkout-v2__code-row {
        display: grid;
    }

    .checkout-v2__section-actions,
    .checkout-v2__payment-actions {
        justify-content: stretch;
    }

    .checkout-v2__continue-button,
    .checkout-v2__submit {
        width: 100%;
    }
}
