/* ── Inner page layout ── */
.inner-page {
  background-color: var(--color-white);
}

.inner-page .page-inner {
  gap: 0;
  padding-top: 0;
}

.inner-page .page-inner:has(.page-breadcrumb-bar) {
  padding-top: 60px;
}

.page-breadcrumb-bar {
  margin-bottom: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #cfcfcf;
}

.pdp .page-breadcrumb-bar {
  margin-bottom: 60px;
}

.shop-page__breadcrumb,
.pdp__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0;
  min-height: 32px;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.shop-page__crumb,
.pdp__crumb {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  color: var(--color-black);
}

.shop-page__crumb--home,
.pdp__crumb--home {
  justify-content: center;
  width: 32px;
  height: 32px;
  min-height: 32px;
  padding: 6px;
  border-radius: 4px;
  color: var(--color-black);
  transition: background-color 0.2s ease;
}

.shop-page__crumb--home:hover,
.pdp__crumb--home:hover {
  background-color: rgba(10, 10, 10, 0.06);
}

.shop-page__crumb--home .icon--home,
.pdp__crumb--home .icon--home {
  width: 20px;
  height: 20px;
}

.shop-page__crumb--current,
.pdp__crumb--current {
  color: var(--color-black);
}

.shop-page__crumb-sep,
.pdp__crumb-sep {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 8px;
  color: var(--color-black);
  opacity: 0.5;
}

.shop-page__crumb-sep .icon--crumb-sep,
.pdp__crumb-sep .icon--crumb-sep {
  width: 16px;
  height: 16px;
}

.site-header--inner .site-header__nav-left {
  gap: 10px;
}

.site-header--inner .site-header__menu-btn,
.site-header--inner .site-header__link {
  font-size: 14px;
  font-weight: 500;
  line-height: 16.8px;
  text-transform: capitalize;
}

.site-header--inner .site-header__actions {
  gap: 10px;
}

.site-header--inner .site-header__icon-btn.site-header__search--desktop {
  width: 40px;
  height: 40px;
  border-radius: 10px;
}

.site-header--inner .site-header__icon-btn--wishlist {
  width: 24px;
  height: 24px;
  margin-left: 0;
}

.site-header--inner .site-header__cart {
  width: 38px;
  height: 38px;
  margin-left: 0;
}

.site-chrome--inner {
  position: relative;
  top: auto;
  z-index: 50;
  background-color: var(--color-white);
  overflow: visible;
}

.site-chrome--inner .site-header--inner {
  position: relative;
  z-index: 155;
}

body.is-nav-open .site-chrome--inner {
  z-index: 163;
}

@media (min-width: 810px) {
  .site-header--inner.is-menu-open {
    background-color: transparent;
  }
}

@media (max-width: 809px) {
  .site-header--inner.is-menu-open {
    background-color: var(--color-white);
  }
}

.site-header--inner.is-menu-open .site-header__menu-btn,
.site-header--inner.is-menu-open .site-header__link,
.site-header--inner.is-menu-open .site-header__logo {
  color: var(--color-black);
}

@media (min-width: 810px) {
  .site-header--inner.is-menu-open .site-header__icon-btn,
  .site-header--inner.is-menu-open .site-header__cart,
  .site-header--inner.is-menu-open .site-header__cart-count {
    color: var(--color-white);
  }
}

@media (max-width: 809px) {
  .inner-page .page-inner {
    padding-top: 24px;
  }
}

.inner-page .site-chrome--inner .mega-menu {
  position: fixed;
  inset: 0;
  height: auto;
  z-index: 150;
}

@media (min-width: 810px) {
  .inner-page .site-chrome--inner .mega-menu {
    z-index: 180;
  }

  body.is-nav-open .site-chrome--inner .site-header--inner {
    z-index: 4;
  }

  .inner-page .site-chrome--inner .mega-menu__panel {
    top: var(--announcement-height);
    height: calc(100vh - var(--announcement-height));
    padding-top: 0;
  }

  .inner-page .site-chrome--inner .mega-menu__backdrop {
    top: var(--announcement-height);
    height: calc(100vh - var(--announcement-height));
  }
}

.announcement-bar--fixed {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
}

.site-header--inner {
  position: relative;
  top: auto;
  background-color: var(--color-white);
}

.site-header--inner .site-header__menu-btn,
.site-header--inner .site-header__link,
.site-header--inner .site-header__logo,
.site-header--inner .site-header__icon-btn,
.site-header--inner .site-header__cart {
  color: var(--color-black);
}

.site-header--inner .site-header__cart-count {
  color: var(--color-black);
}

.page-inner {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding-bottom: 60px;
  min-height: 50vh;
}

.section-label {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-black);
  padding-inline: var(--container-padding);
}

/* ── Gender pages ── */
.gender-hero {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background-color: #8a8a8a;
}

.gender-hero__media {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.gender-hero__bg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.gender-hero__copy {
  position: absolute;
  left: var(--container-padding);
  top: 340px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.gender-hero__title {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 500;
  line-height: 96px;
  color: var(--color-white);
  text-transform: uppercase;
}

.gender-hero__subtitle {
  max-width: 450px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: var(--color-white);
  text-transform: uppercase;
}

.gender-statement {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 810px;
  margin-top: 96px;
  padding: 90px 24px;
  overflow: visible;
}

.gender-statement__text-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 750px;
}

.gender-statement__text {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  color: var(--color-black);
  text-transform: uppercase;
  text-align: center;
}

.gender-statement__floats {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.gender-statement__float {
  position: absolute;
  display: none;
  width: 100px;
  height: 150px;
  object-fit: cover;
  object-position: center;
}

.gender-statement__float--tl {
  top: 0;
  left: 0;
}

.gender-statement__float--tr {
  top: 0;
  right: 0;
}

.gender-statement__float--bl {
  bottom: 0;
  left: 0;
}

.gender-statement__float--br {
  right: 0;
  bottom: 0;
}

.gender-statement__hover {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  pointer-events: none;
}

.gender-statement__preview {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100px;
  height: 100px;
  background-position: center;
  background-size: cover;
  opacity: 0;
  pointer-events: none;
  will-change: transform, opacity;
}

.gender-statement__preview.is-active {
  z-index: 2;
}

.gender-statement__preview.is-fading {
  z-index: 1;
}

.gender-shop {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  margin-top: 96px;
  padding-inline: var(--container-padding);
}

.gender-shop__editorial {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.gender-shop__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.gender-shop__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}

.gender-shop__label {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.gender-shop__all {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.gender-shop__all:hover {
  color: var(--color-gray-muted);
}

.gender-shop__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.gender-shop__grid .product-card {
  max-width: none;
  width: 100%;
  height: auto;
  align-items: flex-start;
}

.gender-shop__grid .product-card__media {
  height: auto;
  aspect-ratio: 333 / 426;
}

.gender-collection {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 96px;
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.collection-card {
  position: relative;
  display: block;
  width: 500px;
  max-width: 100%;
  overflow: hidden;
}

.collection-card img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
}

.collection-card__label {
  position: absolute;
  left: 50%;
  bottom: 14px;
  transform: translateX(-50%);
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  color: var(--color-white);
  text-transform: uppercase;
}

/* ── Shop / category pages ── */
.shop-page {
  padding-inline: var(--container-padding);
  padding-top: 0;
}

.shop-page__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: calc(100% + (2 * var(--container-padding)));
  max-width: none;
  margin-inline: calc(-1 * var(--container-padding));
  margin-bottom: 80px;
  padding: 8px var(--container-padding);
  border-bottom: 1px solid #cfcfcf;
}

.shop-page__title {
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  color: var(--color-black);
  text-transform: uppercase;
}

.shop-page__desc {
  width: 600px;
  max-width: 100%;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 25.6px;
  letter-spacing: -0.32px;
  color: var(--color-black);
  text-transform: uppercase;
}

.shop-page__layout {
  display: grid;
  grid-template-columns: 221px minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.shop-page__main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.shop-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 16px;
  padding-block: 16px;
}

.shop-page__sort {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  cursor: pointer;
}

.shop-page__sort-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: var(--color-black);
  text-transform: uppercase;
  white-space: nowrap;
}

.shop-page__sort-icon {
  width: 16px;
  height: 16px;
  color: var(--color-black);
  pointer-events: none;
}

.shop-page__select {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  border: 0;
  background: transparent;
}

.shop-page__filter-toggle {
  display: none;
  margin-left: auto;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.shop-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 221px;
  flex-shrink: 0;
}

.shop-filters__head {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
  min-height: 40px;
  padding: 0 16px 16px 0;
}

.shop-filters__title-wrap {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.shop-filters__total,
.shop-filters__chevron {
  display: none;
}

.shop-filters__title-wrap .icon--filters {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-black);
}

.shop-filters__title {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.shop-filters__clear {
  height: 40px;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
  border-radius: 80px;
}

.shop-filters__scroll {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 16px 40px 0;
}

.shop-filters__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.shop-filters__group-title {
  display: flex;
  align-items: flex-start;
  gap: 4px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  color: var(--color-black);
}

.shop-filters__count {
  font-size: 13.6px;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--color-black);
}

.shop-filters__list--plain {
  gap: 0;
}

.shop-filters__link {
  display: block;
  width: 100%;
  padding: 6px;
  border: 0;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-align: left;
  text-transform: none;
  cursor: pointer;
}

.shop-filters__link:hover {
  opacity: 0.6;
}

.shop-filters__link.is-active {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.shop-filters__size-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(50px, 1fr));
  gap: 8px;
  width: 100%;
}

.shop-filters__size-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 12px;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.03em;
  color: var(--color-black);
  cursor: pointer;
}

.shop-filters__size-btn.is-active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.shop-filters__size-btn:hover:not(.is-active) {
  border-color: var(--color-black);
}

.shop-filters__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
}

.shop-filters__option {
  display: flex;
  align-items: center;
  cursor: pointer;
}

.shop-filters__option-text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: -0.03em;
  color: var(--color-black);
  text-transform: none;
}

.shop-filters__swatch-frame {
  position: relative;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
}

.shop-filters__swatch {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 22px;
  transform: translate(-50%, -50%);
}

.shop-filters__option--color {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 4px;
}

.shop-filters__option--color .shop-filters__option-text {
  margin-left: 12px;
}

.shop-filters__option--color:has(:checked) .shop-filters__swatch-frame {
  border-color: var(--color-black);
}

.shop-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  min-width: 0;
}

.shop-page__grid .product-card--shop.is-filtered-out,
.shop-page__grid .product-card--shop[hidden] {
  display: none;
}

.shop-page__empty {
  margin-top: 32px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.shop-page__grid .product-card--shop {
  width: 100%;
  max-width: none;
  height: auto;
  min-height: 0;
  align-items: flex-start;
  gap: 0;
  overflow: visible;
}

.shop-page__grid .product-card--shop .product-card__media {
  height: auto;
  aspect-ratio: 358 / 458;
  background-color: #f5f5f5;
}

.shop-page__grid .product-card--shop .product-card__swatches {
  gap: 8px;
  min-height: 20px;
  padding-top: 4px;
}

.shop-page__grid .product-card--shop .product-card__details {
  gap: 8px;
  padding-top: 10px;
  min-height: 0;
}

.shop-page__grid .product-card--shop .product-card__wish {
  color: #cfcfcf;
}

/* ── Product detail page ── */
.pdp {
  padding-inline: var(--container-padding);
  padding-top: 0;
  padding-bottom: 48px;
}

.pdp__layout {
  display: grid;
  grid-template-columns: minmax(0, 676px) minmax(0, 676px);
  gap: 40px;
  align-items: start;
  justify-content: space-between;
}

.pdp-gallery {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 10px;
  width: 676px;
  max-width: 100%;
}

.pdp-gallery__thumbs {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  width: 64px;
  padding: 6px 0;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  align-self: flex-start;
}

.pdp-gallery__thumb {
  width: 64px;
  height: 64px;
  padding: 0;
  border: 1px solid transparent;
  background: #f5f5f5;
  cursor: pointer;
  overflow: hidden;
}

.pdp-gallery__thumb[hidden] {
  display: none;
}

.pdp-gallery__thumb.is-active {
  width: 62px;
  height: 62px;
  margin-inline: 1px;
  border-color: var(--color-black);
}

.pdp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-gallery__main {
  flex: 1;
  min-width: 0;
  width: 602px;
  height: 903px;
  background-color: #f5f5f5;
}

.pdp-gallery__hero {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.pdp__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 676px;
}

.pdp__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  min-height: 48px;
}

.pdp__wish {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-gray-link);
  cursor: pointer;
}

.pdp__wish .icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.pdp__wish .icon--filled {
  position: absolute;
  opacity: 0;
}

.pdp__wish:hover {
  color: var(--color-black);
}

.pdp__wish:hover .icon--outline {
  opacity: 0;
}

.pdp__wish:hover .icon--filled {
  opacity: 1;
}

.pdp__wish.is-wished {
  color: var(--color-black);
}

.pdp__wish.is-wished .icon--outline {
  opacity: 0;
}

.pdp__wish.is-wished .icon--filled {
  opacity: 1;
}

.pdp__title {
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  color: var(--color-black);
  text-transform: uppercase;
}

.pdp__price {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  color: rgb(0, 0, 0);
  text-transform: none;
}

.pdp__variants {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.pdp-variant--color {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  height: 72px;
  padding: 16px 0;
  overflow: visible;
}

.pdp-variant--color .pdp__label {
  flex: 1 1 auto;
  min-width: 0;
}

.pdp-variant--size {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.pdp-variant__copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 76px;
  flex: 1;
  max-width: 333px;
}

.pdp__label {
  display: block;
  margin-bottom: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  color: var(--color-black);
}

.pdp__swatches {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  width: auto;
  flex-shrink: 0;
}

.pdp__swatch-wrap {
  position: relative;
  width: 40px;
  height: 40px;
}

.pdp__swatch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 40px;
  padding: 2px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: transparent;
  cursor: pointer;
}

.pdp__swatch.is-active {
  border-color: #000000;
  background: #ffffff;
}

.pdp__swatch:hover:not(.is-active) {
  border-color: rgba(0, 0, 0, 0.16);
  background: #ffffff;
}

.pdp__swatch-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
  overflow: hidden;
}

.pdp__swatch-tooltip {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 4px;
  padding: 4px 8px;
  border-radius: 4px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #ffffff;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-transform: none;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
  z-index: 10;
  pointer-events: none;
}

.pdp__swatch-wrap:hover .pdp__swatch-tooltip {
  opacity: 1;
  visibility: visible;
}

.pdp__sizes {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  width: 333px;
  max-width: 50%;
}

.pdp__size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 49px;
  min-width: 49px;
  height: 34px;
  padding: 8px 12px;
  border: 1px solid transparent;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-black);
  cursor: pointer;
}

.pdp__size.is-active {
  background-color: var(--color-black);
  border-color: var(--color-black);
  color: var(--color-white);
}

.pdp__size:hover:not(.is-active) {
  background-color: #f5f5f5;
}

.pdp__size-chart {
  display: inline-block;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}

.size-chart-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(0, 0, 0, 0.64);
  cursor: pointer;
}

.size-chart-modal__panel {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 864px;
  max-width: calc(100vw - 48px);
  height: calc(100vh - 72px);
  max-height: 828px;
  padding: 24px;
  overflow: auto;
  background: var(--color-white);
  outline: none;
}

.size-chart-modal__heading {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-black);
}

.size-chart-modal__section + .size-chart-modal__section {
  margin-top: 40px;
}

.size-chart-modal__table-wrap {
  margin-top: 0;
  overflow-x: auto;
}

.size-chart-modal table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid rgba(153, 153, 153, 0.25);
  border-radius: 8px;
  overflow: hidden;
}

.size-chart-modal th,
.size-chart-modal td {
  padding: 10px;
  border-bottom: 1px solid rgba(153, 153, 153, 0.25);
  text-align: left;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
  vertical-align: middle;
}

.size-chart-modal th {
  background: rgba(153, 153, 153, 0.1);
}

.size-chart-modal tr:last-child td {
  border-bottom: 0;
}

.pdp__purchase {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 16px;
}

.pdp__qty {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 165px;
  height: 48px;
  padding-inline: 8px;
  background: var(--color-white);
  border: 1px solid rgba(10, 10, 10, 0.12);
}

.pdp__qty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  font-size: 18px;
  line-height: 1;
  color: var(--color-black);
}

.pdp__qty-value {
  min-width: 16px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-align: center;
}

.pdp__add {
  flex: 1;
  min-width: 0;
  height: 48px;
  padding: 0 24px;
  text-transform: uppercase;
}

.pdp-accordions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 6px;
}

.pdp-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 40px;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.pdp-accordion__summary::after {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='8' viewBox='0 0 16 8' fill='none'%3E%3Cpath d='M1 1l7 6 7-6' stroke='%230a0a0a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center;
  transition: transform 0.2s ease;
}

.pdp-accordion[open] .pdp-accordion__summary::after {
  transform: rotate(180deg);
}

.pdp-accordion__summary::-webkit-details-marker {
  display: none;
}

.pdp-accordion__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 20px 10px 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.pdp-accordion__body p + p {
  margin-top: 0;
}

.pdp-accordion__body a {
  color: inherit;
  text-decoration: underline;
}

.pdp-accordion__subhead {
  margin-top: 10px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.pdp-accordion__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-left: 18px;
  list-style: disc;
}

.pdp-delivery {
  width: 100%;
  border-collapse: collapse;
  margin: 6px 0;
}

.pdp-delivery th,
.pdp-delivery td {
  width: 50%;
  padding: 10px;
  text-align: left;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(153, 153, 153, 0.25);
}

.pdp-delivery th {
  background: rgba(153, 153, 153, 0.1);
}

/* ── Info pages ── */
.info-hero {
  padding: 40px var(--container-padding) 0;
}

.info-hero--compact {
  padding-top: 24px;
}

.info-hero__title {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 500;
  line-height: 96px;
  color: var(--color-black);
  text-transform: uppercase;
}

.info-hero__title--narrow {
  max-width: 800px;
  font-size: 48px;
  line-height: 57.6px;
}

.info-hero__lead {
  max-width: 640px;
  margin-top: 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.breadcrumb {
  margin-bottom: 24px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
}

.breadcrumb a {
  color: var(--color-gray-muted);
}

.breadcrumb a:hover {
  color: var(--color-black);
}

.info-hero--about {
  padding-top: 80px;
  padding-bottom: 0;
}

.info-hero--about .info-hero__lead {
  max-width: 750px;
}

.about-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 120px;
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.about-gallery__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 23px;
}

.about-gallery__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-gallery__cta {
  text-transform: uppercase;
}

.contact-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 97px;
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.cms-content:has(> .contact-page__info):not(:has(.contact-page)) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.cms-content:has(> .contact-page__info):not(:has(.contact-page)) > .info-hero--contact {
  grid-column: 1 / -1;
  margin-inline: calc(-1 * var(--container-padding));
}

.cms-content:has(> .contact-page__info):not(:has(.contact-page)) > .contact-page__info,
.cms-content:has(> .contact-page__info):not(:has(.contact-page)) > .contact-form-wrap {
  margin-top: 97px;
}

.info-hero--contact {
  padding-top: 56px;
  padding-bottom: 0;
}

.info-hero--contact .info-hero__lead {
  max-width: 450px;
}

.contact-page__home {
  margin-top: 24px;
}

.contact-page__heading,
.contact-form__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.contact-page__heading--spaced {
  margin-top: 40px;
}

.contact-page__field-label {
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.contact-page__sub {
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.contact-page__text {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
}

.contact-page__email {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-black);
}

.contact-page__email:hover {
  color: var(--color-gray-muted);
}

.contact-page__resource-link {
  text-decoration: underline;
  color: var(--color-black);
}

.contact-page__resource-link:hover {
  color: var(--color-gray-muted);
}

.auth-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  align-items: start;
  margin-top: 48px;
  padding-bottom: 80px;
}

.auth-page__note {
  margin: 0;
  color: var(--color-gray-muted);
  text-transform: none;
}

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

.auth-page__forgot {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  color: var(--color-gray-muted);
  text-decoration: underline;
  text-underline-offset: 2px;
  text-transform: none;
  white-space: nowrap;
}

.auth-page__forgot:hover {
  color: var(--color-black);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-page .contact-form,
.checkout-page .contact-form {
  gap: 16px;
}

.contact-form__title {
  margin-bottom: 32px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.contact-form__label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea,
.checkout-page .form-row input.input-text,
.checkout-page .form-row select,
.checkout-page .form-row textarea,
.account-page .form-row input.input-text,
.account-page .form-row select,
.account-page .form-row textarea,
.auth-page .form-row input.input-text,
.auth-page .form-row select,
.auth-page .form-row textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  background: var(--color-white);
  color: var(--color-black);
  appearance: none;
  box-sizing: border-box;
  min-height: 44px;
  transition: border-color 0.2s ease;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus,
.checkout-page .form-row input.input-text:focus,
.checkout-page .form-row select:focus,
.checkout-page .form-row textarea:focus,
.account-page .form-row input.input-text:focus,
.account-page .form-row select:focus,
.account-page .form-row textarea:focus,
.auth-page .form-row input.input-text:focus,
.auth-page .form-row select:focus,
.auth-page .form-row textarea:focus {
  outline: none;
  border-color: var(--color-black);
}

.contact-form__field select,
.checkout-page .form-row select,
.account-page .form-row select,
.auth-page .form-row select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
  padding-right: 44px;
}

.contact-form__field textarea,
.checkout-page .form-row textarea {
  min-height: 151px;
  resize: vertical;
}

.checkout-page .form-row textarea {
  min-height: 100px;
}

.contact-form__field input::placeholder,
.contact-form__field textarea::placeholder,
.checkout-page .form-row input.input-text::placeholder,
.checkout-page .form-row textarea::placeholder,
.account-page .form-row input.input-text::placeholder,
.account-page .form-row textarea::placeholder,
.auth-page .form-row input.input-text::placeholder,
.auth-page .form-row textarea::placeholder {
  color: var(--color-gray-muted);
}

.contact-form__file {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 55px;
  padding: 12px 16px;
  border: 1px solid #cfcfcf;
  cursor: pointer;
}

.contact-form__file-input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form__file-text {
  flex: 1;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-gray-muted);
}

.contact-form__file-btn {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.contact-form__submit {
  width: 100%;
  min-width: 0;
  height: 44px;
  margin-top: 8px;
  font-size: 16px;
  font-weight: 500;
  line-height: 16px;
  text-transform: uppercase;
}

.citybilla-hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.citybilla-form-status {
  margin-top: 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  text-transform: none;
}

.citybilla-form-status--ok {
  color: var(--color-black);
}

.citybilla-form-status--err {
  color: #8a1f1f;
}

/* ── Customize manufacturing ── */
.mfg-hero {
  padding: 80px var(--container-padding) 0;
  background: var(--color-white);
  color: var(--color-black);
}

.mfg-hero--manufacturing {
  padding-bottom: 0;
}

.mfg-hero--about-page {
  padding-bottom: 0;
}

.mfg-hero__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.mfg-hero__title {
  margin: 0;
  max-width: 800px;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 57.6px;
  text-transform: uppercase;
  color: var(--color-black);
}

.mfg-hero__lead {
  max-width: 720px;
  margin: 24px 0 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
  color: var(--color-gray-muted);
}

.mfg-who {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
  padding: 64px var(--container-padding) 80px;
  background: var(--color-white);
}

.mfg-who__media {
  overflow: hidden;
  width: 100%;
}

.mfg-who__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.mfg-who__gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mfg-who__gallery-item {
  margin: 0;
  overflow: hidden;
}

.mfg-who__gallery-img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
}

.mfg-page {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding-bottom: 60px;
  background: var(--color-white);
}

.mfg-page > .mfg-hero {
  padding-bottom: 0;
}

.mfg-page > .mfg-who,
.mfg-page > .mfg-expect,
.mfg-page > .mfg-clients,
.mfg-page > .mfg-page__enquiry.custom-order-page {
  padding-top: 0;
  padding-bottom: 0;
  padding-inline: var(--container-padding);
}

/* ── Manufacturing page (mfg-page) — layout only; type/borders match About / info pages ── */
.mfg-page .mfg-who {
  display: block;
  padding: 0 var(--container-padding);
}

.mfg-page .mfg-who__quad {
  display: grid;
  width: 100%;
  max-width: none;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 38%) minmax(0, 1fr);
  grid-template-rows: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "tl copy tr"
    "bl copy br";
  gap: 24px 48px;
  align-items: stretch;
  min-height: clamp(440px, 46vw, 680px);
}

.mfg-page .mfg-who__quad-img {
  position: relative;
  overflow: hidden;
  background: #ececec;
  min-height: 0;
  height: 100%;
  width: 100%;
}

.mfg-page .mfg-who__quad-img--tl {
  grid-area: tl;
}

.mfg-page .mfg-who__quad-img--tr {
  grid-area: tr;
}

.mfg-page .mfg-who__quad-img--bl {
  grid-area: bl;
}

.mfg-page .mfg-who__quad-img--br {
  grid-area: br;
}

.mfg-page .mfg-who__quad-copy {
  grid-area: copy;
  align-self: center;
  justify-self: stretch;
  width: 100%;
  max-width: none;
  padding: 8px 12px;
  text-align: left;
}

.mfg-page .mfg-who__quad-copy .mfg-who__title::before {
  margin-left: 0;
  margin-right: 0;
}

.mfg-page .mfg-who__quad-copy .mfg-who__text,
.mfg-page .mfg-who__quad-copy .mfg-who__note {
  text-align: left;
}

.mfg-page .mfg-who__quad-photo {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: center;
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

.mfg-page .mfg-who__gallery {
  gap: 8px;
}

.mfg-page .mfg-who__gallery-item {
  background: #ececec;
}

.mfg-page .mfg-who__gallery-img {
  transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (hover: hover) {
  .mfg-page .mfg-who__quad-img:hover .mfg-who__quad-photo {
    transform: scale(1.05);
  }

  .mfg-page .mfg-who__gallery-item:hover .mfg-who__gallery-img {
    transform: scale(1.05);
  }

  .mfg-page .mfg-clients__card:hover {
    border-color: var(--color-black);
  }
}

.mfg-page .mfg-page__enquiry.custom-order-page {
  display: block;
  padding: 0 var(--container-padding);
  background: var(--color-white);
}

.mfg-page .mfg-page__enquiry .custom-order-form-wrap {
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--color-white);
  border: 1px solid #cfcfcf;
  box-sizing: border-box;
}

.mfg-page .mfg-clients__card {
  min-height: 0;
  transition: border-color 0.25s ease;
}

.mfg-who__title {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-black);
}

.mfg-who__text {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-black);
}

.mfg-who__note {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-gray-muted);
}

.mfg-who__cta {
  margin-top: 8px;
}

.mfg-who__cta--secondary {
  margin-left: 12px;
}

.mfg-expect {
  padding: 80px var(--container-padding);
  background: var(--color-white);
}

.mfg-expect__title {
  margin: 0 0 40px;
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-black);
}

.mfg-expect__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px 40px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mfg-expect__cell {
  margin: 0;
  padding-top: 16px;
  border-top: 1px solid var(--color-black);
}

.mfg-expect__heading {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--color-black);
}

.mfg-expect__text {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-black);
}

.mfg-clients {
  padding: 80px var(--container-padding);
  background: var(--color-white);
}

.mfg-clients__title {
  margin: 0 0 40px;
  font-family: var(--font-primary);
  font-size: 40px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-black);
}

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

.mfg-clients__card {
  margin: 0;
  padding: 28px 24px;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
  box-sizing: border-box;
}

.mfg-clients__quote {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-black);
}

.mfg-clients__credit {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.info-hero--custom-order {
  padding-top: 80px;
  padding-bottom: 0;
}

.info-hero--custom-order .info-hero__eyebrow {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.info-hero--custom-order .info-hero__lead {
  max-width: 720px;
}

.custom-making {
  padding: 64px var(--container-padding) 0;
  background: var(--color-white);
}

.custom-making__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.custom-making__item {
  margin: 0;
  overflow: hidden;
}

.custom-making__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center;
}

.custom-steps {
  padding: 64px var(--container-padding) 0;
}

.custom-steps__title {
  margin: 0 0 32px;
  font-family: var(--font-primary);
  font-size: 48px;
  font-weight: 500;
  line-height: 1.15;
  text-transform: uppercase;
  color: var(--color-black);
}

.custom-steps__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border: 1px solid #cfcfcf;
}

.custom-steps__cell {
  margin: 0;
  padding: 28px 24px;
  border-right: 1px solid #cfcfcf;
  border-bottom: 1px solid #cfcfcf;
}

.custom-steps__cell:nth-child(3n) {
  border-right: 0;
}

.custom-steps__cell:nth-last-child(-n + 3) {
  border-bottom: 0;
}

.custom-steps__num {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
}

.custom-steps__heading {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  color: var(--color-black);
}

.custom-steps__text {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  text-transform: none;
  color: var(--color-black);
}

.custom-order-page {
  padding: 80px var(--container-padding) 96px;
  background: var(--color-white);
}

.custom-order-form-wrap {
  max-width: 760px;
  margin: 0 auto;
  padding: 48px 40px;
  background: var(--color-white);
  border: 1px solid #cfcfcf;
  box-sizing: border-box;
}

.custom-order-form__intro .contact-form__title {
  margin-bottom: 12px;
}

.custom-order-form__note {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-gray-muted);
}

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

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

.contact-form--grid .contact-form__submit {
  justify-self: stretch;
  width: 100%;
  margin-top: 8px;
}

.faq-page {
  padding-bottom: 80px;
}

.faq-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  padding: 77px var(--container-padding) 0;
}

.faq-nav__home {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--color-black);
}

.faq-nav__home .icon {
  width: 24px;
  height: 24px;
}

.faq-nav__home:hover {
  color: var(--color-gray-muted);
}

.faq-nav__link {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.faq-nav__link:hover {
  color: var(--color-gray-muted);
}

.info-hero--faq {
  padding-top: 27px;
  padding-bottom: 0;
}

.info-hero--faq + .faq-section {
  margin-top: 144px;
}

.info-hero--size-chart {
  padding-top: 80px;
  padding-bottom: 48px;
}

.size-chart-page__home {
  margin-top: 24px;
}

.faq-section {
  max-width: calc(700px + (2 * var(--container-padding)));
  padding-inline: var(--container-padding);
  scroll-margin-top: 120px;
}

.faq-section + .faq-section {
  margin-top: 64px;
}

.faq-section__title {
  margin-bottom: 24px;
  font-family: var(--font-primary);
  font-size: 32px;
  font-weight: 500;
  line-height: 38.4px;
  text-transform: uppercase;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 700px;
}

.faq-item {
  width: 100%;
}

.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 40px;
  padding: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.faq-item__text {
  flex: 1;
}

.faq-item__q::-webkit-details-marker {
  display: none;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__a {
  max-width: 700px;
  padding: 8px 0 12px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  color: var(--color-gray-muted);
}

.shipping-page {
  padding-bottom: 80px;
}

.info-hero--shipping {
  padding-top: 27px;
  padding-bottom: 0;
}

.info-hero--shipping .info-hero__lead {
  max-width: 450px;
}

.shipping-section {
  max-width: calc(700px + (2 * var(--container-padding)));
  padding-inline: var(--container-padding);
  scroll-margin-top: 120px;
}

.info-hero--shipping + .shipping-section {
  margin-top: 120px;
}

.shipping-section + .shipping-section {
  margin-top: 144px;
}

.shipping-block__title {
  margin-top: 48px;
  margin-bottom: 10px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.shipping-section > .faq-section__title + .shipping-block__title {
  margin-top: 1px;
}

.shipping-block__text {
  max-width: 700px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.shipping-block__text + .shipping-block__text {
  margin-top: 20px;
}

.shipping-block__text a {
  color: #0099ff;
  text-decoration: none;
}

.shipping-block__text a:hover {
  text-decoration: underline;
}

.shipping-block__list {
  max-width: 700px;
  margin: 20px 0;
  padding-left: 0;
  list-style-position: inside;
}

.shipping-block__list li {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
}

.shipping-table {
  width: auto;
  margin: 26px 0 48px;
  border-collapse: collapse;
}

.shipping-table th,
.shipping-table td {
  padding: 0;
  height: 40px;
  vertical-align: top;
  text-align: left;
  font-family: var(--font-primary);
  font-weight: 500;
  text-transform: uppercase;
}

.shipping-table th {
  font-size: 16px;
  line-height: 19.2px;
}

.shipping-table td {
  font-size: 12px;
  line-height: 14.4px;
}

.shipping-table th:first-child,
.shipping-table td:first-child {
  width: 175px;
  padding-right: 0;
}

.info-hero--favourites {
  padding-top: 60px;
}

.info-hero--favourites .info-hero__title--narrow {
  max-width: 750px;
}

.info-content {
  padding-inline: var(--container-padding);
}

.info-block + .info-block {
  margin-top: 48px;
}

.info-block__title {
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.info-block__text {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.info-block__text + .info-block__text {
  margin-top: 20px;
}

.size-chart-page {
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.cms-content:has(> .size-table-section):not(:has(.size-chart-page)) > .size-table-section,
.cms-content:has(> .size-table-section):not(:has(.size-chart-page)) > .size-chart-notes {
  padding-inline: var(--container-padding);
}

.cms-content:has(> .size-table-section):not(:has(.size-chart-page)) > .size-chart-notes {
  padding-bottom: 80px;
}

.size-table {
  margin-bottom: 40px;
  scroll-margin-top: 140px;
}

.size-table__title {
  display: block;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  color: var(--color-black);
}

.size-table__title--link:hover {
  color: var(--color-gray-muted);
}

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

.size-table th,
.size-table td {
  padding: 12px 16px;
  border: 1px solid rgba(10, 10, 10, 0.1);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  text-align: left;
}

.size-table th {
  background-color: #f5f5f5;
}

.size-chart-page__notes {
  max-width: 700px;
  margin-top: 40px;
}

.size-chart-page__label {
  margin-top: 24px;
  margin-bottom: 8px;
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
}

.size-chart-page__notes > .size-chart-page__label:first-child {
  margin-top: 0;
}

.size-chart-page__notes p {
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
}

.size-chart-page__contact {
  margin-top: 16px;
}

.info-hero--bag {
  padding-top: 56px;
  padding-bottom: 0;
  padding-inline: var(--container-padding);
}

.info-hero--bag .info-hero__lead {
  max-width: 450px;
  margin-bottom: 0;
}

.bag-hero__count {
  font-weight: 500;
  color: var(--color-gray-muted);
}

.bag-progress {
  margin-top: 32px;
}

.bag-progress__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bag-progress__step {
  display: flex;
  align-items: center;
  flex: 1;
  max-width: 180px;
}

.bag-progress__step::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-inline: 12px;
  background: #eeeeee;
}

.bag-progress__step:last-child::after {
  display: none;
}

.bag-progress__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  text-decoration: none;
}

a.bag-progress__link:hover {
  color: var(--color-black);
}

.bag-progress__step.is-current .bag-progress__link {
  color: var(--color-black);
}

.bag-progress__step.is-complete .bag-progress__link {
  color: var(--color-black);
}

.bag-progress__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #eeeeee;
  flex-shrink: 0;
}

.bag-progress__step.is-current .bag-progress__dot {
  background: var(--color-black);
}

.bag-progress__step.is-complete .bag-progress__dot {
  background: var(--color-black);
}

.bag-ship-wrap {
  padding-inline: var(--container-padding);
  margin-top: 32px;
}

.bag-ship {
  max-width: 720px;
}

.bag-ship__text {
  margin: 0 0 10px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.bag-ship--qualified .bag-ship__text {
  color: var(--color-black);
}

.bag-ship__track {
  height: 2px;
  background: #eeeeee;
  overflow: hidden;
}

.bag-ship__fill {
  height: 100%;
  background: var(--color-black);
  transition: width 0.4s ease;
}

/* ── Cart & checkout (bag) ── */
.bag-page,
.checkout-page,
.order-complete-page,
.bag-empty,
.account-page {
  width: 100%;
}

.bag-page,
.checkout-page,
.order-complete-page {
  margin-top: 48px;
  padding-bottom: 80px;
}

.bag-empty {
  margin-top: 48px;
  padding-bottom: 80px;
}

.bag-page__layout,
.checkout-page__layout,
.order-complete__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 400px);
  gap: 48px;
  align-items: start;
}

.bag-page__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.bag-page__heading,
.bag-summary__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}

.bag-page__count {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.bag-page__items {
  min-width: 0;
}

.bag-line {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr);
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid #eeeeee;
}

.bag-line:first-of-type {
  border-top: 1px solid #eeeeee;
}

.bag-line--readonly {
  grid-template-columns: 72px minmax(0, 1fr);
  padding: 18px 0;
}

.bag-line--readonly .bag-line__img {
  width: 72px;
  height: 90px;
}

.bag-line__media {
  display: block;
  background: #f5f5f5;
  overflow: hidden;
}

.bag-line__img {
  display: block;
  width: 100px;
  height: 125px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.bag-line__media:hover .bag-line__img {
  transform: scale(1.03);
}

.bag-line__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bag-line__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bag-line__name {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--color-black);
  text-decoration: none;
}

.bag-line__name:hover {
  color: var(--color-gray-muted);
}

.bag-line__remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  color: var(--color-gray-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.bag-line__remove .icon {
  width: 14px;
  height: 14px;
}

.bag-line__remove:hover {
  color: var(--color-black);
}

.bag-line__meta {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-gray-muted);
}

.bag-line__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 8px;
}

.bag-line__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  text-align: right;
}

.bag-line__unit {
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  line-height: 13px;
  color: var(--color-gray-muted);
}

.bag-line__price {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.bag-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #cfcfcf;
  background: var(--color-white);
}

.bag-qty .quantity {
  display: contents;
}

.bag-qty .screen-reader-text {
  display: none;
}

.bag-qty__btn {
  width: 38px;
  height: 38px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: var(--color-black);
  cursor: pointer;
  transition: color 0.2s ease;
}

.bag-qty__btn:hover {
  color: var(--color-gray-muted);
}

.bag-qty__input,
.bag-page__qty {
  width: 44px !important;
  min-height: 38px !important;
  padding: 0 !important;
  border: 0 !important;
  text-align: center;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  background: transparent;
  -moz-appearance: textfield;
}

.bag-qty__input::-webkit-outer-spin-button,
.bag-qty__input::-webkit-inner-spin-button,
.bag-page__qty::-webkit-outer-spin-button,
.bag-page__qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.bag-page__summary,
.checkout-page__summary {
  position: sticky;
  top: calc(var(--announcement-height, 40px) + var(--header-height, 64px) + 24px);
  padding-left: 48px;
  border-left: 1px solid #eeeeee;
}

.bag-page__summary .bag-page__heading,
.checkout-page__summary .bag-page__heading {
  margin-bottom: 24px;
}

.bag-page__form.is-updating .bag-page__items {
  opacity: 0.72;
  transition: opacity 0.2s ease;
}

.bag-page__form.is-updating .bag-qty__btn {
  cursor: wait;
}

.bag-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 10px 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
}

.bag-summary__row--subtotal {
  text-transform: uppercase;
}

.bag-summary__row--total {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
  font-size: 16px;
  line-height: 19.2px;
  text-transform: uppercase;
}

.bag-summary__shipping {
  width: 100%;
  border-collapse: collapse;
}

.bag-summary__shipping th,
.bag-summary__shipping td {
  padding: 10px 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  border: 0;
  background: transparent;
  vertical-align: top;
}

.bag-summary__shipping th {
  text-align: left;
}

.bag-summary__shipping td {
  text-align: right;
}

.bag-page__summary .wc-proceed-to-checkout {
  margin-top: 24px;
}

.bag-page__summary .checkout-button {
  width: 100%;
  min-width: 0 !important;
  height: 44px !important;
  font-size: 16px !important;
  text-transform: uppercase !important;
}

.bag-page__coupon {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #eeeeee;
}

.bag-page__coupon-toggle {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  cursor: pointer;
  list-style: none;
}

.bag-page__coupon-toggle::-webkit-details-marker {
  display: none;
}

.bag-page__coupon-body {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 12px;
}

.bag-page__coupon-body input {
  flex: 1;
  min-width: 0;
  height: 44px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  background: var(--color-white);
  color: var(--color-black);
  box-sizing: border-box;
}

.bag-page__coupon-body .button {
  flex-shrink: 0;
  align-self: stretch;
  min-width: 100px !important;
  width: auto !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 16px !important;
  font-size: 12px !important;
  line-height: 14.4px !important;
  text-transform: none !important;
}

.bag-trust {
  list-style: none;
  margin: 24px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid #eeeeee;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.bag-trust__item {
  position: relative;
  padding-left: 14px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.bag-trust__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-black);
}

.bag-page__continue {
  display: inline-block;
  margin-top: 20px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bag-page__continue:hover {
  color: var(--color-black);
}

.bag-page__note {
  margin-top: 20px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 16px;
  color: var(--color-gray-muted);
}

.bag-page__note a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bag-page__note a:hover {
  color: var(--color-gray-muted);
}

.checkout-page__main {
  min-width: 0;
}

/* Never show default WC order review table in the form column */
.checkout-page__main .woocommerce-checkout-review-order-table,
.checkout-page__main .shop_table.woocommerce-checkout-review-order-table {
  display: none !important;
}

.checkout-page__summary-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 8px;
}

.checkout-page__summary-head .bag-page__heading {
  margin: 0;
}

.checkout-panel {
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px solid #eeeeee;
}

.checkout-page__payment.checkout-panel {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: 0;
}

.checkout-panel__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.checkout-panel__hint {
  margin: 0 0 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-gray-muted);
}

/* ── Order complete (thank you) ── */
.order-complete__main {
  min-width: 0;
}

.order-complete__status {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  margin-bottom: 32px;
  background: #f7f7f7;
}

.order-complete__status-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-black);
  position: relative;
}

.order-complete__status-icon::after {
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  width: 6px;
  height: 11px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.order-complete__status-text {
  margin: 0;
  padding-top: 4px;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
}

.order-complete__meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 20px 24px;
  margin: 0 0 48px;
  padding: 28px 0;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
}

.order-complete__meta-item {
  margin: 0;
}

.order-complete__meta-item dt {
  margin: 0 0 6px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  line-height: 13.2px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.order-complete__meta-item dd {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 15px;
  font-weight: 500;
  line-height: 18px;
  color: var(--color-black);
}

.order-complete__meta-item--total dd {
  font-size: 16px;
}

.order-complete__section {
  margin-bottom: 48px;
}

.order-complete__section .bag-page__heading {
  margin-bottom: 8px;
}

.order-complete__items {
  min-width: 0;
}

.order-complete__totals {
  margin-top: 8px;
}

.citybilla-order-tracking {
  margin: 0 0 24px;
  padding: 20px 22px;
  border: 1px solid #eeeeee;
  background: #f7f7f7;
}

.citybilla-order-tracking__title {
  margin: 0 0 8px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.citybilla-order-tracking__meta {
  margin: 0 0 14px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-black);
}

.citybilla-order-tracking__actions {
  margin: 0;
}

.citybilla-order-tracking__actions .btn {
  display: inline-flex;
}

.citybilla-order-shipping-summary {
  margin-top: 20px;
}

.citybilla-order-tracking--pending {
  color: var(--color-muted, #6b6b6b);
  font-size: 13px;
}

.citybilla-order-fulfilment {
  margin: 0 0 24px;
  padding: 16px 20px;
  border: 1px solid var(--color-border, #e8e8e8);
  background: var(--color-surface-muted, #f7f7f7);
}

.citybilla-order-fulfilment__status {
  margin: 0 0 12px;
  font-size: 14px;
}

.citybilla-order-fulfilment__pending {
  margin: 0;
}

.order-complete__note {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
}

.order-complete__note-label {
  display: block;
  margin-bottom: 6px;
  font-family: var(--font-primary);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.order-complete__note-text {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
}

.order-complete__address-grid {
  display: grid;
  gap: 24px;
}

.order-complete__address-grid--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.order-complete__address-card {
  padding: 24px;
  background: #f7f7f7;
}

.order-complete__address-title {
  margin: 0 0 12px;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.order-complete__address {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
  font-style: normal;
  color: var(--color-black);
}

.order-complete__address-contact {
  margin: 8px 0 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
}

.order-complete__aside {
  position: sticky;
  top: 24px;
}

.order-complete__card {
  padding: 28px 24px;
  margin-bottom: 24px;
  background: #f7f7f7;
}

.order-complete__card .bag-page__heading {
  margin-bottom: 12px;
}

.order-complete__card-text {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-gray-muted);
}

.order-complete__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-complete__cta {
  width: 100%;
  min-width: 0;
}

.order-complete__failed {
  max-width: 640px;
}

.order-complete__failed .order-complete__actions {
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 24px;
}

@media (max-width: 809px) {
  .order-complete__layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .order-complete__aside {
    position: static;
  }

  .order-complete__address-grid--two {
    grid-template-columns: 1fr;
  }

  .order-complete__meta {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 32px;
  }
}

.checkout-page .woocommerce-billing-fields__field-wrapper,
.checkout-page .woocommerce-shipping-fields__field-wrapper,
.checkout-page .woocommerce-additional-fields__field-wrapper,
.checkout-page .create-account,
.checkout-page .checkout-billing-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checkout-page .woocommerce-billing-fields__field-wrapper > .form-row,
.checkout-page .checkout-billing-fields > .form-row,
.checkout-page .checkout-billing-fields__row,
.checkout-page .checkout-billing-fields__address,
.checkout-page .checkout-billing-fields .citybilla-address-finder {
  margin: 0;
}

.checkout-page .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 !important;
  padding: 0;
  width: 100%;
  min-width: 0;
  float: none;
  clear: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.checkout-page .form-row-hidden {
  display: none !important;
}

.checkout-page #customer_details .col-2:empty {
  display: none;
}

.checkout-page .form-row label:not(.checkbox) {
  display: block;
  font: inherit;
  color: var(--color-black);
}

.checkout-page .form-row .optional {
  display: none;
}

.checkout-page .form-row .required {
  display: inline;
  color: var(--color-black);
  text-decoration: none;
  margin-left: 0.15em;
}

.checkout-postcode-lookup {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}

.checkout-postcode-lookup .citybilla-address-finder {
  gap: 8px;
}

.checkout-postcode-lookup #billing_postcode_field {
  margin: 0;
}

.citybilla-address-finder {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  width: 100%;
}

.checkout-billing-fields__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
  margin: 0;
}

.checkout-billing-fields__address {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
  border: 0;
}

.checkout-billing-fields__address-heading {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

@media (max-width: 639px) {
  .checkout-billing-fields__row {
    grid-template-columns: 1fr;
  }
}

.citybilla-address-finder__select-wrap:not([hidden]) {
  animation: citybilla-fade-in 0.2s ease-out;
}

@keyframes citybilla-fade-in {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.citybilla-address-finder__label {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-black);
}

.citybilla-address-finder__select {
  width: 100%;
  min-height: 44px;
  padding: 12px 44px 12px 16px;
  border: 1px solid #cfcfcf;
  border-radius: 0;
  background: var(--color-white);
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: none;
  box-sizing: border-box;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230a0a0a' stroke-width='2' stroke-linecap='square' stroke-linejoin='round'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 16px;
}

.citybilla-address-finder__select:focus {
  outline: none;
  border-color: var(--color-black);
}

.citybilla-address-finder__status {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  text-transform: none;
  color: var(--color-black);
}

.citybilla-address-finder__status.is-locked {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  padding: 10px 12px;
  border: 1px solid #cfcfcf;
  background: #f7f7f7;
}

.citybilla-address-finder__locked-text {
  flex: 1 1 auto;
  min-width: 0;
}

.citybilla-address-finder__change {
  flex: 0 0 auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--color-black);
  cursor: pointer;
}

.citybilla-address-finder__change:hover {
  color: var(--color-gray-muted);
}

.citybilla-address-finder__status.is-error {
  color: #b00020;
}

.checkout-page .woocommerce-input-wrapper {
  display: block;
  width: 100%;
  min-width: 0;
  text-transform: none;
}

.checkout-panel__fields {
  display: grid;
  gap: 16px;
}

.checkout-panel__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-black);
  cursor: pointer;
}

.checkout-panel__checkbox input {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-black);
}

.checkout-panel--account {
  padding: 24px 0 0;
  margin-top: -8px;
  border-bottom: 0;
}

.checkout-panel--shipping {
  padding-top: 8px;
}

.checkout-panel--shipping .shipping_address {
  display: none;
  margin-top: 16px;
}

.checkout-panel--shipping #ship-to-different-address-checkbox:checked ~ .shipping_address {
  display: block;
}

.checkout-page #customer_details .col-2 {
  width: 100%;
  float: none;
  clear: both;
  margin-top: 0;
}

.checkout-page #customer_details.col2-set {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.checkout-panel--notes {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}

.checkout-panel__notes-toggle {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  cursor: pointer;
  list-style: none;
}

.checkout-panel__notes-toggle::-webkit-details-marker {
  display: none;
}

.checkout-panel--notes .checkout-panel__fields {
  margin-top: 16px;
}

.checkout-pay-method {
  list-style: none;
  margin: 0 0 12px;
  border: 1px solid #cfcfcf;
  transition: border-color 0.2s ease;
}

.checkout-pay-method:has(.checkout-pay-method__input:checked) {
  border-color: var(--color-black);
}

.checkout-pay-method__label {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  cursor: pointer;
}

.checkout-pay-method__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-pay-method__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.checkout-pay-method__title {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
  color: var(--color-black);
}

.checkout-pay-method__desc {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: var(--color-gray-muted);
}

.checkout-pay-method__icon {
  width: 18px;
  height: 18px;
  border: 1px solid #cfcfcf;
  border-radius: 50%;
  flex-shrink: 0;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.checkout-pay-method__input:checked ~ .checkout-pay-method__icon {
  border-color: var(--color-black);
  box-shadow: inset 0 0 0 4px var(--color-black);
}

.checkout-pay-method--empty {
  padding: 16px 20px;
  font-family: var(--font-primary);
  font-size: 14px;
  color: var(--color-gray-muted);
}

.checkout-page__submit {
  margin-top: 24px;
}

.checkout-page__place-order {
  width: 100%;
  min-width: 0 !important;
  height: 48px !important;
  margin-top: 16px;
  font-size: 16px !important;
  text-transform: uppercase !important;
}

.bag-line--compact {
  grid-template-columns: 56px minmax(0, 1fr);
  padding: 14px 0;
  gap: 12px;
}

.bag-line--compact .bag-line__img {
  width: 56px;
  height: 70px;
}

.bag-line--compact .bag-line__name {
  font-size: 12px;
  line-height: 15px;
}

.bag-line--compact .bag-line__meta {
  font-size: 11px;
  margin-top: 2px;
}

.bag-line--compact .bag-line__foot {
  margin-top: 4px;
}

.bag-line--compact .bag-line__price {
  font-size: 12px;
}

.checkout-page__hint {
  margin: -8px 0 24px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  color: var(--color-gray-muted);
}

.checkout-page__payment {
  margin-top: 0;
}

.bag-checkout-summary__items .bag-line:first-of-type {
  border-top: 0;
}

.bag-checkout-summary__totals {
  margin-top: 8px;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
}

.bag-empty {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 480px;
}

.bag-empty__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0;
}

.bag-empty__text {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: var(--color-gray-muted);
}

.bag-empty .btn--dark {
  margin-top: 8px;
  min-width: 160px;
  height: 44px;
  font-size: 16px;
  text-transform: uppercase;
}

/* ── My Account ── */
.account-page {
  margin-top: 48px;
  padding-bottom: 80px;
}

.account-page__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  list-style: none;
  margin: 0 0 32px;
  padding: 0 0 16px;
  border-bottom: 1px solid #eeeeee;
}

.account-page__tab-link {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  text-decoration: none;
}

.account-page__tab.is-active .account-page__tab-link,
.account-page__tab-link:hover {
  color: var(--color-black);
}

.account-page .woocommerce-MyAccount-content {
  font-family: var(--font-primary);
  font-size: 14px;
  line-height: 1.6;
  color: var(--color-black);
}

.account-panel__greeting,
.account-panel__title {
  font-family: var(--font-primary);
  font-size: 20px;
  font-weight: 500;
  line-height: 24px;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.account-panel__text {
  margin: 0 0 24px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  color: var(--color-gray-muted);
}

.account-panel__text a,
.account-panel a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-panel__text a:hover,
.account-panel a:hover {
  color: var(--color-gray-muted);
}

.account-page .woocommerce-address-fields__field-wrapper,
.account-page .edit-account,
.auth-page .woocommerce-form-login,
.auth-page .woocommerce-form-register,
.auth-page .lost_reset_password {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-page .form-row,
.auth-page .form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  width: 100%;
  float: none;
  clear: none;
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
}

.account-page .form-row label,
.auth-page .form-row label {
  display: block;
  font: inherit;
  color: var(--color-black);
}

.account-page .form-row .required,
.auth-page .form-row .required {
  display: none;
}

.account-page .form-row em,
.account-page .form-row .description {
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  text-transform: none;
  color: var(--color-gray-muted);
}

.account-page fieldset {
  margin: 8px 0 0;
  padding: 24px 0 0;
  border: 0;
  border-top: 1px solid #eeeeee;
}

.account-page fieldset legend {
  padding: 0;
  margin-bottom: 16px;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
}

.account-form__actions,
.account-page .woocommerce-Button,
.account-page .woocommerce-button {
  margin-top: 8px;
}

.account-addresses {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.account-address {
  border: 1px solid #cfcfcf;
  padding: 24px;
  min-height: 180px;
}

.account-address__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}

.account-address__title {
  margin: 0;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-transform: uppercase;
}

.account-address__edit {
  font-family: var(--font-primary);
  font-size: 12px;
  font-weight: 500;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
  text-decoration: none;
  white-space: nowrap;
}

.account-address__edit:hover {
  color: var(--color-black);
}

.account-address__body {
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  font-style: normal;
  color: var(--color-black);
  white-space: pre-line;
}

.account-page .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
}

.account-page .woocommerce-orders-table th,
.account-page .woocommerce-orders-table td {
  padding: 16px 12px 16px 0;
  border-bottom: 1px solid #eeeeee;
  font-family: var(--font-primary);
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  text-align: left;
  vertical-align: top;
}

.account-page .woocommerce-orders-table thead th {
  font-size: 12px;
  line-height: 14.4px;
  text-transform: uppercase;
  color: var(--color-gray-muted);
}

.account-page .woocommerce-orders-table .woocommerce-orders-table__header-order-tracking,
.account-page .woocommerce-orders-table .woocommerce-orders-table__cell-order-tracking {
  white-space: nowrap;
  min-width: 5.5rem;
}

.account-page .woocommerce-orders-table a {
  color: var(--color-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.account-page .woocommerce-orders-table a:hover {
  color: var(--color-gray-muted);
}

.citybilla-order-pdf-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 24px;
}

.citybilla-order-pdf-actions .btn {
  min-width: 140px;
}

.account-page .woocommerce-orders-table .woocommerce-button.citybilla-pdf-preview,
.account-page .woocommerce-orders-table .woocommerce-button.citybilla-pdf-download {
  display: inline-block;
  margin: 0 8px 8px 0;
}

.account-page .woocommerce-pagination {
  margin-top: 24px;
  display: flex;
  gap: 12px;
}

.account-page .woocommerce-NoticeGroup,
.account-page .woocommerce-message,
.account-page .woocommerce-info,
.account-page .woocommerce-error {
  margin-bottom: 24px;
}

.auth-page .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  text-transform: none;
  font-size: 14px;
  color: var(--color-black);
}

.auth-page .woocommerce-form-login__rememberme input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin: 0;
  accent-color: var(--color-black);
}

.favourites-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 80px var(--container-padding);
  text-align: center;
}

.favourites-empty__text {
  max-width: none;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.favourites-page {
  padding-bottom: 80px;
}

.favourites-grid {
  padding-inline: var(--container-padding);
}

.error-page {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 80px var(--container-padding) 0;
}

.error-page__code {
  font-family: var(--font-primary);
  font-size: 80px;
  font-weight: 500;
  line-height: 96px;
  text-transform: uppercase;
}

.error-page__message {
  max-width: 750px;
  font-family: var(--font-primary);
  font-size: 16px;
  font-weight: 500;
  line-height: 19.2px;
  text-transform: uppercase;
}

.error-page__home,
.error-page__shop {
  text-transform: uppercase;
}

.error-page__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 121px;
  padding-inline: var(--container-padding);
  padding-bottom: 80px;
}

.error-page__image {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 1199px) {
  .gender-shop {
    grid-template-columns: 1fr;
    gap: 32px;
  }

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

  .pdp__layout {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .pdp-gallery,
  .pdp__info {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .pdp-gallery__main {
    height: auto;
    aspect-ratio: 602 / 903;
  }

  .pdp__sizes {
    width: auto;
    max-width: 100%;
    flex-wrap: wrap;
  }

  .info-hero__title {
    font-size: 48px;
    line-height: 57.6px;
  }

  .error-page__code {
    font-size: 48px;
    line-height: 57.6px;
  }
}

@media (max-width: 809px) {
  .inner-page .page-inner:has(.page-breadcrumb-bar) {
    padding-top: 60px;
  }

  .inner-page .page-inner:has(.gender-hero) {
    padding-top: 0;
    gap: 96px;
  }

  .gender-hero {
    height: 80vh;
    height: 80dvh;
  }

  .gender-hero__bg {
    object-position: 50% 0%;
  }

  .gender-hero__copy {
    inset: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 24px;
    padding: 24px;
  }

  .gender-hero__title {
    align-self: center;
    width: auto;
    font-size: 25.6px;
    line-height: 30.72px;
    text-align: left;
  }

  .gender-hero__subtitle {
    width: 100%;
    max-width: none;
    text-align: center;
  }

  .gender-hero__cta {
    align-self: center;
    width: 140px;
    min-width: 140px;
    height: 38px;
  }

  .gender-statement {
    margin-top: 0;
    min-height: 760px;
    align-items: center;
    padding: 90px 16px;
  }

  .gender-statement__float {
    display: block;
  }

  .gender-statement__hover {
    display: none;
  }

  .gender-shop {
    display: flex;
    flex-direction: column;
    margin-top: 0;
    gap: 40px;
  }

  .gender-shop__main {
    order: 1;
  }

  .gender-shop__editorial {
    order: 2;
    display: block;
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center;
  }

  .gender-statement__text {
    font-size: 32px;
    line-height: 38.4px;
  }

  .gender-collection {
    margin-top: 0;
    padding-inline: 24px;
    padding-bottom: 0;
  }

  .gender-collection .collection-card {
    width: 100%;
    max-width: 342px;
  }

  .gender-collection .collection-card img {
    height: 267px;
  }

  .gender-shop__grid .product-card {
    gap: 2px;
    align-items: flex-start;
  }

  .gender-shop__grid .product-card__media {
    aspect-ratio: 358 / 458;
  }

  .gender-shop__grid .product-card__swatches {
    gap: 8px;
    min-height: 25px;
    padding-top: 0;
  }

  .gender-shop__grid .product-card__details {
    gap: 8px;
    padding-top: 8px;
  }

  .gender-shop__grid,
  .shop-page__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .shop-page__grid .product-card--shop {
    max-width: none;
    gap: 2px;
    align-items: flex-start;
  }

  .shop-page__grid .product-card--shop .product-card__swatches {
    gap: 8px;
    min-height: 25px;
    padding-top: 0;
  }

  .shop-page__grid .product-card--shop .product-card__details {
    gap: 8px;
    padding-top: 8px;
  }

  .collection-card {
    width: 100%;
  }

  .collection-card img {
    height: auto;
    aspect-ratio: 500 / 390;
  }

  .shop-page .page-breadcrumb-bar {
    margin-bottom: 0;
  }

  .shop-page__header {
    gap: 24px;
    margin-bottom: 84px;
    padding: 8px var(--container-padding);
    border-bottom: 1px solid #cfcfcf;
  }

  .shop-page__title {
    font-size: 32px;
    line-height: 38.4px;
  }

  .shop-page__desc {
    width: 100%;
  }

  .shop-page__layout {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .shop-page__main {
    gap: 0;
  }

  .shop-filters {
    display: flex;
    width: 100%;
    gap: 0;
  }

  .shop-filters__head {
    position: sticky;
    top: 0;
    z-index: 2;
    width: 100%;
    justify-content: space-between;
    gap: 0;
    min-height: 40px;
    padding: 0;
    background-color: var(--color-white);
  }

  .shop-filters__total,
  .shop-filters__chevron {
    display: inline-flex;
    align-items: center;
  }

  .shop-filters__total {
    font-family: var(--font-primary);
    font-size: 12px;
    font-weight: 500;
    line-height: 14.4px;
  }

  .shop-filters__chevron {
    width: 16px;
    height: 16px;
    transition: transform 0.2s ease;
  }

  .shop-page.is-filters-open .shop-filters__chevron {
    transform: rotate(180deg);
  }

  .shop-filters__scroll {
    display: none;
    padding: 16px 0 24px;
    gap: 24px;
  }

  .shop-page.is-filters-open .shop-filters__scroll {
    display: flex;
  }

  .shop-page__toolbar {
    justify-content: flex-end;
    min-height: 16px;
    padding-block: 16px;
  }

  .shop-page__filter-toggle {
    display: none;
  }

  .pdp .page-breadcrumb-bar {
    box-sizing: border-box;
    height: 40px;
    margin-inline: calc(-1 * var(--container-padding));
    padding-inline: var(--container-padding);
    padding-bottom: 7px;
    margin-bottom: 60px;
  }

  .pdp,
  .pdp__layout,
  .pdp-gallery,
  .pdp__info,
  .pdp__variants {
    max-width: 100%;
    min-width: 0;
  }

  .pdp {
    overflow-x: clip;
  }

  .pdp__layout,
  .contact-page,
  .cms-content:has(> .contact-page__info):not(:has(.contact-page)),
  .auth-page,
  .bag-page__layout,
  .checkout-page__layout,
  .about-gallery {
    grid-template-columns: minmax(0, 1fr);
  }

  .pdp__layout {
    gap: 40px;
    width: 100%;
  }

  .pdp-gallery {
    flex-direction: column-reverse;
    width: 100%;
    max-width: 100%;
    gap: 10px;
    overflow: clip;
  }

  .pdp-gallery__thumbs {
    position: static;
    top: auto;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    max-width: 100%;
    padding: 0;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 0;
    -webkit-overflow-scrolling: touch;
  }

  .pdp-gallery__thumb,
  .pdp-gallery__thumb.is-active {
    flex: 0 0 76px;
    width: 76px;
    height: 76px;
    margin: 0;
    box-sizing: border-box;
  }

  .pdp-gallery__thumb.is-active {
    padding: 6px;
  }

  .pdp-gallery__main {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 358 / 537;
  }

  .pdp-gallery__hero {
    max-width: 100%;
  }

  .pdp__head {
    gap: 24px;
  }

  .pdp__title {
    font-size: 20px;
    line-height: 24px;
  }

  .pdp__title-row {
    min-height: 48px;
  }

  .pdp__breadcrumb {
    flex-wrap: wrap;
    max-width: 100%;
  }

  .pdp-variant--color {
    width: 100%;
    height: 72px;
    min-height: 72px;
    padding: 16px 0;
    justify-content: space-between;
    overflow: visible;
  }

  .pdp__swatches {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 60%;
  }

  .pdp__swatch-tooltip {
    display: none;
  }

  .pdp-variant--size {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
    gap: 10px;
  }

  .pdp-variant__copy {
    flex: 0 0 173px;
    max-width: 173px;
    width: 173px;
    min-width: 0;
    min-height: 76px;
  }

  .pdp__sizes {
    display: flex;
    flex: 1 1 auto;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    width: auto;
    max-width: none;
    gap: 8px;
  }

  .pdp__size {
    width: 53px;
    min-width: 53px;
  }

  .pdp__purchase {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
    min-width: 0;
  }

  .pdp__qty {
    width: 165px;
    max-width: 46%;
    flex: 0 1 165px;
    min-width: 0;
  }

  .pdp__add {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
  }

  .pdp-accordion__body,
  .pdp-delivery {
    max-width: 100%;
  }

  .pdp-delivery {
    display: block;
    overflow-x: auto;
  }

  .size-chart-modal__panel {
    top: 40px;
    left: 20px;
    right: 20px;
    bottom: 2px;
    transform: none;
    width: auto;
    height: auto;
    max-width: none;
    max-height: none;
  }

  .info-hero {
    padding-top: 60px;
  }

  .info-hero--about,
  .info-hero--contact,
  .info-hero--faq,
  .info-hero--shipping,
  .info-hero--size-chart,
  .info-hero--favourites,
  .info-hero--bag,
  .info-hero--custom-order {
    padding-top: 60px;
    padding-bottom: 0;
  }

  .info-hero__title,
  .info-hero__title--narrow,
  .error-page__code,
  .mfg-hero__title {
    max-width: none;
    font-size: 25.6px;
    line-height: 30.72px;
  }

  .info-hero--favourites .info-hero__title--narrow {
    font-size: 32px;
    line-height: 38.4px;
    text-align: center;
  }

  .info-hero__lead {
    max-width: none;
    margin-top: 24px;
  }

  .custom-making {
    padding-top: 0;
  }

  .mfg-hero {
    padding: 60px var(--container-padding) 0;
  }

  .mfg-page {
    gap: 48px;
    padding-bottom: 48px;
  }

  .mfg-page > .mfg-hero {
    padding: 60px var(--container-padding) 0;
  }

  .mfg-page > .mfg-who,
  .mfg-page > .mfg-expect,
  .mfg-page > .mfg-clients,
  .mfg-page > .mfg-page__enquiry.custom-order-page {
    padding-top: 0;
    padding-bottom: 0;
    padding-inline: var(--container-padding);
  }

  .mfg-who {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px var(--container-padding);
  }

  .mfg-page .mfg-who {
    padding: 0 var(--container-padding);
  }

  .mfg-page .mfg-who__quad {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
      "tl tr"
      "bl br"
      "copy copy";
    gap: 10px;
    max-width: none;
    min-height: 0;
  }

  .mfg-page .mfg-who__quad-img {
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .mfg-page .mfg-who__quad-photo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .mfg-page .mfg-who__quad-copy {
    padding-top: 24px;
    text-align: left;
  }

  .mfg-who__title,
  .mfg-expect__title,
  .mfg-clients__title {
    font-size: 25.6px;
    line-height: 30.72px;
  }

  .mfg-who__text,
  .mfg-who__note,
  .mfg-expect__text,
  .mfg-clients__quote,
  .custom-order-form__note {
    font-size: 16px;
    font-weight: 500;
    line-height: 19.2px;
  }

  .mfg-who__cta--secondary {
    margin-left: 0;
    margin-top: 12px;
    display: inline-block;
  }

  .mfg-expect {
    padding: 0 var(--container-padding);
  }

  .mfg-page > .mfg-expect {
    padding: 0 var(--container-padding);
  }

  .mfg-expect__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .mfg-clients {
    padding: 0 var(--container-padding);
  }

  .mfg-page > .mfg-clients {
    padding: 0 var(--container-padding);
  }

  .mfg-clients__grid {
    grid-template-columns: 1fr;
  }

  .custom-making__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .custom-steps {
    padding-top: 48px;
  }

  .custom-steps__title {
    font-size: 25.6px;
    line-height: 30.72px;
    margin-bottom: 24px;
  }

  .custom-steps__grid {
    grid-template-columns: 1fr;
  }

  .custom-steps__cell {
    border-right: 0;
  }

  .custom-steps__cell:not(:last-child) {
    border-bottom: 1px solid #cfcfcf;
  }

  .custom-steps__cell:nth-last-child(-n + 3) {
    border-bottom: 1px solid #cfcfcf;
  }

  .custom-steps__cell:last-child {
    border-bottom: 0;
  }

  .custom-order-page {
    padding: 0 var(--container-padding) 48px;
  }

  .mfg-page > .mfg-page__enquiry.custom-order-page {
    padding: 0 var(--container-padding);
  }

  .custom-order-form-wrap {
    width: 100%;
    max-width: none;
    padding: 20px 16px;
  }

  .mfg-page .mfg-page__enquiry.custom-order-page {
    padding: 0 var(--container-padding);
  }

  .mfg-page .mfg-page__enquiry .custom-order-form-wrap {
    padding: 16px 12px;
  }

  .mfg-page .mfg-page__enquiry .custom-order-form__intro .contact-form__title {
    margin-bottom: 8px;
  }

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

  .about-gallery {
    gap: 40px;
    margin-top: 112px;
  }

  .contact-page,
  .cms-content:has(> .contact-page__info):not(:has(.contact-page)) > .contact-page__info,
  .cms-content:has(> .contact-page__info):not(:has(.contact-page)) > .contact-form-wrap,
  .auth-page {
    gap: 48px;
    margin-top: 48px;
  }

  .bag-page,
  .checkout-page,
  .bag-empty,
  .account-page,
  .auth-page {
    margin-top: 32px;
    padding-bottom: 64px;
  }

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

  .account-page .woocommerce-orders-table thead {
    display: none;
  }

  .account-page .woocommerce-orders-table tr {
    display: grid;
    gap: 8px;
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
  }

  .account-page .woocommerce-orders-table td,
  .account-page .woocommerce-orders-table th {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 0;
    border: 0;
  }

  .account-page .woocommerce-orders-table td::before,
  .account-page .woocommerce-orders-table th::before {
    content: attr(data-title);
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-gray-muted);
  }

  .bag-page__layout,
  .checkout-page__layout {
    gap: 40px;
  }

  .bag-page__summary,
  .checkout-page__summary {
    position: static;
    padding-left: 0;
    border-left: 0;
    padding-top: 8px;
    border-top: 1px solid #eeeeee;
  }

  .bag-progress__step {
    max-width: none;
  }

  .bag-progress__label {
    font-size: 11px;
  }

  .bag-page__coupon-body {
    flex-direction: column;
  }

  .bag-page__coupon-body .button {
    width: 100% !important;
  }

  .bag-line {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    padding: 20px 0;
  }

  .bag-line__img {
    width: 72px;
    height: 90px;
  }

  .bag-ship-wrap {
    margin-top: 24px;
  }

  .faq-nav {
    gap: 16px;
    padding-top: 60px;
  }

  .info-hero--faq + .faq-section,
  .info-hero--shipping + .shipping-section {
    margin-top: 80px;
  }

  .faq-section + .faq-section,
  .shipping-section + .shipping-section {
    margin-top: 64px;
  }

  .faq-section__title {
    font-size: 20px;
    line-height: 24px;
  }

  .size-chart-page {
    padding-top: 48px;
  }

  .size-table {
    overflow-x: auto;
  }

  .size-table th,
  .size-table td {
    padding: 10px;
    font-size: 12px;
    line-height: 14.4px;
  }

  .favourites-empty {
    padding: 80px 16px;
  }

  .error-page {
    padding: 60px 16px 0;
    gap: 24px;
  }

  .error-page__media {
    margin-top: 60px;
  }

  .shipping-table th:first-child,
  .shipping-table td:first-child {
    width: auto;
    padding-right: 24px;
  }
}
