/* stylelint-disable no-descending-specificity -- Components follow page-flow order and do not share state scopes. */
.pf-eyebrow {
  margin: 0 0 var(--pf-space-md);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.pf-text-link {
  display: inline-block;
  padding-bottom: 0.2rem;
  border-bottom: 1px solid currentcolor;
  color: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pf-button,
.pf-filter-sort button,
.pf-product-summary .single_add_to_cart_button {
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--pf-color-ink);
  border-radius: 0;
  background: var(--pf-color-ink);
  color: var(--pf-color-soft-white);
  font: 600 0.8125rem/1 var(--pf-font-interface);
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.pf-breadcrumb {
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin: var(--pf-space-md) auto;
  color: var(--pf-color-deep-taupe);
  font-size: 0.75rem;
}

.pf-breadcrumb > * + * {
  margin-left: var(--pf-space-xs);
}

.pf-collection-hero {
  --pf-collection-desktop-x: 50%;
  --pf-collection-desktop-y: 50%;
  --pf-collection-mobile-x: 50%;
  --pf-collection-mobile-y: 50%;

  display: grid;
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
  background: var(--pf-color-warm-ivory);
}

.pf-collection-hero__media {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.pf-collection-hero__media,
.pf-collection-hero__media picture,
.pf-collection-hero__media img {
  width: 100%;
  height: 100%;
}

.pf-collection-hero__media img {
  object-fit: cover;
  object-position: var(--pf-collection-mobile-x) var(--pf-collection-mobile-y);
}

.pf-collection-hero__content {
  padding: var(--pf-space-xl) var(--pf-space-lg) var(--pf-space-2xl);
}

.pf-collection-hero__content h1 {
  max-width: 14ch;
  margin: 0;
  font-family: var(--pf-font-display);
  font-size: clamp(2.75rem, 10vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.pf-collection-hero__content > p:not(.pf-eyebrow) {
  max-width: 38rem;
  margin-block: var(--pf-space-lg);
  line-height: 1.65;
}

.pf-collection-hero__content small {
  display: block;
  margin-top: var(--pf-space-xl);
  color: var(--pf-color-deep-taupe);
}

.pf-filter-sort,
.pf-product-grid-section,
.pf-collection-story,
.pf-editorial-media,
.pf-product-story,
.pf-fabric-story,
.pf-fit,
.pf-styling-notes,
.pf-related-collection,
.pf-complete-look {
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
}

.pf-filter-sort {
  display: flex;
  gap: var(--pf-space-lg);
  align-items: flex-start;
  justify-content: space-between;
  margin-top: var(--pf-space-2xl);
  padding-block: var(--pf-space-md);
  border-block: 1px solid var(--pf-color-pale-stone);
}

.pf-filter-sort summary,
.pf-filter-sort label,
.pf-filter-sort select {
  font-size: 0.8125rem;
}

.pf-filter-sort summary {
  min-height: 2.75rem;
  cursor: pointer;
  font-weight: 600;
  letter-spacing: 0.06em;
  line-height: 2.75rem;
  text-transform: uppercase;
}

.pf-filter-sort__filters form {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: var(--pf-space-md);
  min-width: 17rem;
  padding: var(--pf-space-lg);
  border: 1px solid var(--pf-color-pale-stone);
  background: var(--pf-color-soft-white);
  box-shadow: 0 1rem 2rem rgb(23 23 23 / 10%);
}

.pf-filter-sort__sort {
  display: flex;
  gap: var(--pf-space-sm);
  align-items: center;
}

.pf-filter-sort select {
  min-height: 2.75rem;
  border: 0;
  background: transparent;
}

.pf-product-grid-section {
  padding-block: var(--pf-space-2xl) var(--pf-space-4xl);
}

.pf-product-grid__heading {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--pf-space-xl);
}

.pf-product-grid__heading h2,
.pf-product-grid__heading p {
  margin: 0;
}

.pf-product-grid,
.pf-complete-look ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--pf-space-xl) var(--pf-space-sm);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-product-card__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.pf-product-card__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--pf-color-warm-ivory);
}

.pf-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--pf-motion-slow) var(--pf-ease-standard);
}

.pf-product-card__image-secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
}

.pf-product-card__link:hover .pf-product-card__image-secondary,
.pf-product-card__link:focus-visible .pf-product-card__image-secondary {
  opacity: 1;
}

.pf-product-card__link:hover .pf-product-card__image-primary,
.pf-product-card__link:focus-visible .pf-product-card__image-primary {
  opacity: 0;
}

.pf-product-card__link:hover img,
.pf-product-card__link:focus-visible img {
  transform: scale(1.015);
}

.pf-product-card h3 {
  min-height: 2.8em;
  margin: var(--pf-space-sm) 0 var(--pf-space-2xs);
  overflow: hidden;
  font-family: var(--pf-font-interface);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.4;
}

.pf-product-card__price {
  color: var(--pf-color-deep-taupe);
  font-size: 0.8125rem;
}

.pf-product-card__colour {
  display: block;
  min-height: 1.35em;
  margin-top: var(--pf-space-2xs);
  color: var(--pf-color-deep-taupe);
  font-size: 0.75rem;
}

.pf-product-card__price del {
  margin-right: var(--pf-space-xs);
}

.pf-product-card__badge {
  position: absolute;
  right: var(--pf-space-xs);
  bottom: var(--pf-space-xs);
  padding: 0.4rem 0.55rem;
  background: var(--pf-color-soft-white);
  font-size: 0.6875rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pf-product-card__badge.is-sale {
  top: var(--pf-space-xs);
  bottom: auto;
  color: var(--pf-color-oxblood);
}

.pf-pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pf-space-xs);
  justify-content: center;
  margin: var(--pf-space-2xl) 0 0;
  padding: 0;
  list-style: none;
}

.pf-pagination a,
.pf-pagination span {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
}

.pf-product-grid__empty {
  padding: var(--pf-space-4xl) var(--pf-space-lg);
  background: var(--pf-color-warm-ivory);
  text-align: center;
}

.pf-collection-story,
.pf-product-story,
.pf-fabric-story,
.pf-fit {
  display: grid;
  gap: var(--pf-space-xl);
  padding-block: var(--pf-space-4xl);
  border-top: 1px solid var(--pf-color-pale-stone);
}

.pf-collection-story h2,
.pf-product-story h2,
.pf-fabric-story h2,
.pf-fit h2,
.pf-styling-notes h2,
.pf-related-collection h2,
.pf-complete-look h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
}

.pf-collection-story__body,
.pf-product-story > div:last-child,
.pf-fabric-story dl {
  max-width: 42rem;
  line-height: 1.7;
}

.pf-collection-story blockquote {
  margin: var(--pf-space-xl) 0 0;
  padding-left: var(--pf-space-lg);
  border-left: 1px solid var(--pf-color-oxblood);
  font-family: var(--pf-font-display);
  font-size: 1.5rem;
}

.pf-editorial-media {
  margin-bottom: var(--pf-space-4xl);
  background: var(--pf-color-warm-ivory);
}

.pf-editorial-media img {
  width: 100%;
  max-height: 52rem;
  object-fit: cover;
}

.pf-editorial-media p {
  margin: 0;
  padding: var(--pf-space-md);
}

.pf-product-page {
  padding-top: var(--pf-space-lg);
}

.pf-product-above-fold {
  display: grid;
  gap: var(--pf-space-xl);
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
}

.pf-product-gallery {
  position: relative;
  min-width: 0;
}

.pf-product-gallery ol {
  display: flex;
  gap: var(--pf-space-sm);
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  list-style: none;
  scrollbar-width: thin;
}

.pf-product-gallery li {
	position: relative;
  flex: 0 0 90%;
  aspect-ratio: 3 / 4;
  scroll-snap-align: start;
  background: var(--pf-color-warm-ivory);
}

.pf-product-gallery__zoom {
  position: absolute;
  right: var(--pf-space-sm);
  bottom: var(--pf-space-sm);
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--pf-color-pale-stone);
  border-radius: 50%;
  background: rgb(252 251 248 / 92%);
  color: var(--pf-color-ink);
  cursor: zoom-in;
  place-items: center;
}

.pf-product-gallery__navigation {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pf-product-gallery__navigation ol {
  gap: var(--pf-space-xs);
  overflow: visible;
}

.pf-product-gallery__navigation li {
  flex: none;
  aspect-ratio: auto;
  background: transparent;
}

.pf-product-gallery__navigation a {
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  color: inherit;
  font-size: 0.75rem;
  place-items: center;
}

.pf-product-gallery__dialog {
  width: min(92vw, 70rem);
  height: min(92vh, 58rem);
  padding: var(--pf-space-lg);
  border: 0;
  background: var(--pf-color-soft-white);
}

.pf-product-gallery__dialog::backdrop {
  background: rgb(23 23 23 / 68%);
}

.pf-product-gallery__dialog button {
  min-width: 2.75rem;
  min-height: 2.75rem;
  margin-left: auto;
  border: 0;
  background: transparent;
}

.pf-product-gallery__dialog img {
  height: calc(100% - 3rem);
  object-fit: contain;
}

.pf-product-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-product-gallery__count {
  margin: var(--pf-space-sm) 0 0;
  color: var(--pf-color-deep-taupe);
  font-size: 0.75rem;
}

.pf-product-summary {
  padding-bottom: var(--pf-space-2xl);
}

.pf-product-summary .product_title {
  max-width: 12ch;
  margin: 0 0 var(--pf-space-sm);
  font-size: clamp(2.25rem, 3.4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.pf-product-summary .price {
  margin-block: var(--pf-space-md) var(--pf-space-lg);
  font-size: 1.125rem;
  font-weight: 600;
}

.pf-product-summary .woocommerce-product-details__short-description {
  max-width: 34rem;
  color: var(--pf-color-deep-taupe);
  font-size: 0.9375rem;
  line-height: 1.65;
}

.pf-product-summary form.cart,
.pf-product-summary .variations {
  width: 100%;
}

.pf-product-summary form.cart {
  margin-block: var(--pf-space-xl) var(--pf-space-md);
}

.pf-product-summary .variations th,
.pf-product-summary .variations td {
  display: block;
  padding: 0 0 var(--pf-space-sm);
  text-align: left;
}

.pf-product-summary .variations th {
  padding-top: var(--pf-space-sm);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-product-summary select,
.pf-product-summary input.qty {
  min-height: 2.75rem;
  border: 1px solid var(--pf-color-pale-stone);
  background: var(--pf-color-soft-white);
}

.pf-product-summary .pf-variation-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.pf-variation-options {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pf-space-xs);
}

.pf-variation-option {
  display: inline-flex;
  min-width: 2.75rem;
  min-height: 2.75rem;
  padding: 0.6rem 0.8rem;
  border: 1px solid var(--pf-color-pale-stone);
  background: var(--pf-color-soft-white);
  color: var(--pf-color-charcoal);
  font: 500 0.8125rem/1 var(--pf-font-interface);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.pf-variation-option:hover:not(:disabled),
.pf-variation-option.is-selected {
  border-color: var(--pf-color-ink);
}

.pf-variation-option.is-selected {
  background: var(--pf-color-ink);
  color: var(--pf-color-soft-white);
}

.pf-variation-option:disabled {
  color: var(--pf-color-deep-taupe);
  cursor: not-allowed;
  opacity: 0.42;
  text-decoration: line-through;
}

.pf-variation-option--color {
  gap: var(--pf-space-xs);
  min-width: 5.5rem;
  justify-content: flex-start;
}

.pf-variation-option__swatch {
  width: 1.125rem;
  height: 1.125rem;
  border: 1px solid rgb(23 23 23 / 22%);
  border-radius: 50%;
  background: var(--pf-color-warm-stone);
  box-shadow: 0 0 0 2px var(--pf-color-soft-white);
}

.pf-variation-option__swatch[data-color="oat"],
.pf-variation-option__swatch[data-color="oatmeal"] {
  background: #d7cbbb;
}

.pf-variation-option__swatch[data-color="black"] {
  background: #171717;
}

.pf-variation-option__swatch[data-color="ivory"] {
  background: #f3efe5;
}

.pf-variation-option.is-selected .pf-variation-option__swatch {
  box-shadow: 0 0 0 2px var(--pf-color-ink), 0 0 0 3px var(--pf-color-soft-white);
}

.pf-product-summary .reset_variations {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  color: var(--pf-color-deep-taupe);
  font-size: 0.75rem;
}

.pf-product-summary .woocommerce-variation-availability .stock {
  margin-block: var(--pf-space-sm);
  color: var(--pf-color-charcoal);
  font-size: 0.875rem;
  font-weight: 600;
}

.pf-product-summary .woocommerce-variation-add-to-cart {
  display: grid;
  grid-template-columns: 4.5rem minmax(0, 1fr);
  gap: var(--pf-space-sm);
  align-items: stretch;
}

.pf-product-summary input.qty {
  width: 100%;
  min-height: 2.75rem;
  margin: 0;
  text-align: center;
}

.pf-product-summary .single_add_to_cart_button {
  width: 100%;
  min-height: 2.75rem;
}

.pf-product-summary .single_add_to_cart_button.disabled,
.pf-product-summary .single_add_to_cart_button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.pf-variation-message {
  margin: 0 0 var(--pf-space-md);
  color: var(--pf-color-deep-taupe);
  font-size: 0.8125rem;
  line-height: 1.5;
}

.pf-variation-message.is-error {
  color: var(--pf-color-oxblood);
  font-weight: 600;
}

.pf-product-summary .pf-wishlist-form button {
  width: 100%;
  min-height: 2.75rem;
}

.pf-product-summary__shipping-note,
.pf-product-summary__services {
  padding-top: var(--pf-space-md);
  border-top: 1px solid var(--pf-color-pale-stone);
  font-size: 0.8125rem;
}

.pf-product-summary__meta {
  display: grid;
  gap: var(--pf-space-xs);
  padding-block: var(--pf-space-md);
  border-top: 1px solid var(--pf-color-pale-stone);
  font-size: 0.75rem;
}

.pf-product-summary__shipping-returns {
  border-block: 1px solid var(--pf-color-pale-stone);
}

.pf-product-summary__shipping-returns summary {
  min-height: 3rem;
  cursor: pointer;
  font-weight: 600;
  line-height: 3rem;
}

.pf-product-summary__shipping-returns div {
  padding-bottom: var(--pf-space-md);
  font-size: 0.8125rem;
  line-height: 1.6;
}

.pf-mobile-purchase-bar {
  position: fixed;
  z-index: 25;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--pf-space-sm);
  align-items: center;
  padding: var(--pf-space-sm) var(--pf-space-lg) calc(var(--pf-space-sm) + env(safe-area-inset-bottom));
  border-top: 1px solid var(--pf-color-pale-stone);
  background: rgb(252 251 248 / 96%);
  backdrop-filter: blur(12px);
  box-shadow: 0 -0.75rem 2rem rgb(23 23 23 / 7%);
  opacity: 0;
  transform: translateY(105%);
  visibility: hidden;
  transition:
    opacity var(--pf-motion-standard) var(--pf-ease-standard),
    transform var(--pf-motion-standard) var(--pf-ease-standard),
    visibility var(--pf-motion-standard) var(--pf-ease-standard);
}

.pf-mobile-purchase-bar.is-visible {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}

.pf-mobile-purchase-bar__details {
  display: grid;
  gap: 0.15rem;
  min-width: 0;
  font-size: 0.8125rem;
}

.pf-mobile-purchase-bar__price {
  font-weight: 600;
}

.pf-mobile-purchase-bar__selection {
  color: var(--pf-color-deep-taupe);
  line-height: 1.3;
}

.pf-mobile-purchase-bar button {
  min-height: 2.75rem;
  padding-inline: var(--pf-space-md);
  border: 1px solid var(--pf-color-ink);
  background: var(--pf-color-ink);
  color: var(--pf-color-soft-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pf-mobile-purchase-bar button[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.48;
}

body:has(dialog[open]) .pf-mobile-purchase-bar {
  display: none;
}

.pf-product-summary__services {
  display: grid;
  gap: var(--pf-space-xs);
  padding-left: 1.1rem;
}

.pf-product-story__details {
  display: grid;
  gap: var(--pf-space-md);
  margin-top: var(--pf-space-xl);
  padding-left: 1.5rem;
}

.pf-fabric-story dl {
  margin: 0;
}

.pf-fabric-story dl div {
  display: grid;
  grid-template-columns: minmax(7rem, 0.4fr) 1fr;
  gap: var(--pf-space-md);
  padding-block: var(--pf-space-sm);
  border-bottom: 1px solid var(--pf-color-pale-stone);
}

.pf-fabric-story dt {
  font-weight: 600;
}

.pf-fabric-story dd {
  margin: 0;
}

.pf-fit details {
  align-self: start;
}

.pf-fit summary {
  min-height: 3rem;
  cursor: pointer;
  font-weight: 600;
  line-height: 3rem;
}

.pf-measurement-table {
  max-width: 100%;
  overflow-x: auto;
}

.pf-measurement-table table {
  width: 100%;
  min-width: 38rem;
  border-collapse: collapse;
}

.pf-measurement-table th,
.pf-measurement-table td {
  padding: var(--pf-space-sm);
  border-bottom: 1px solid var(--pf-color-pale-stone);
  text-align: left;
}

.pf-styling-notes,
.pf-related-collection {
  margin-block: var(--pf-space-4xl);
  padding: var(--pf-space-2xl) var(--pf-space-lg);
  background: var(--pf-color-warm-ivory);
}

.pf-styling-notes p:last-child,
.pf-related-collection > p:not(.pf-eyebrow) {
  max-width: 42rem;
  line-height: 1.7;
}

.pf-complete-look {
  padding-block: var(--pf-space-4xl);
  border-top: 1px solid var(--pf-color-pale-stone);
}

.pf-complete-look > div {
  margin-bottom: var(--pf-space-xl);
}

.pf-context-block-preview,
.pf-context-notice {
  padding: var(--pf-space-lg);
  border: 1px dashed var(--pf-color-warm-stone);
  background: var(--pf-color-warm-ivory);
}

/* Keep WooCommerce's absolutely positioned count badge inside the viewport. */
.wp-site-blocks .wc-block-mini-cart {
  margin-inline-end: var(--pf-space-xs);
}

/* WooCommerce leaves its closed 30rem drawer off-canvas at tablet widths. */
.wc-block-mini-cart__drawer[aria-hidden="true"] {
  display: none;
}

.pf-lookbook-hero {
  display: grid;
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
  background: var(--pf-color-warm-ivory);
}

.pf-lookbook-hero__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.pf-lookbook-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pf-lookbook-hero__content {
  padding: var(--pf-space-xl) var(--pf-space-lg) var(--pf-space-2xl);
}

.pf-lookbook-hero__content h1 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.75rem, 10vw, 5.75rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.pf-lookbook-hero__content > p:not(.pf-eyebrow) {
  max-width: 38rem;
  line-height: 1.7;
}

.pf-lookbook-hero__content small {
  display: block;
  margin-top: var(--pf-space-xl);
  color: var(--pf-color-deep-taupe);
}

.pf-lookbook-sequence,
.pf-lookbook-products,
.pf-lookbook-empty {
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
}

.pf-shoppable-look {
  display: grid;
  gap: var(--pf-space-xl);
  padding-block: var(--pf-space-4xl);
  border-bottom: 1px solid var(--pf-color-pale-stone);
}

.pf-shoppable-look__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--pf-color-warm-ivory);
}

.pf-shoppable-look__media picture,
.pf-shoppable-look__media img {
  width: 100%;
  height: 100%;
}

.pf-shoppable-look__media img {
  object-fit: cover;
}

.pf-look-hotspot {
  position: absolute;
  top: var(--pf-hotspot-y);
  left: var(--pf-hotspot-x);
  display: grid;
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid var(--pf-color-soft-white);
  border-radius: 50%;
  background: rgb(255 253 250 / 90%);
  color: var(--pf-color-ink);
  place-items: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
}

.pf-shoppable-look__content {
  align-self: center;
}

.pf-shoppable-look__content h2,
.pf-lookbook-products h2,
.pf-lookbook-empty h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.75rem);
  font-weight: 400;
}

.pf-shoppable-look__content > p:not(.pf-eyebrow) {
  max-width: 34rem;
  line-height: 1.7;
}

.pf-shoppable-look__content h3 {
  margin-top: var(--pf-space-2xl);
  font-family: var(--pf-font-interface);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pf-shoppable-look__products {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--pf-color-pale-stone);
  list-style: none;
}

.pf-shoppable-look__products a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: var(--pf-space-xs) var(--pf-space-md);
  min-height: 4rem;
  padding-block: var(--pf-space-sm);
  border-bottom: 1px solid var(--pf-color-pale-stone);
  color: inherit;
  text-decoration: none;
}

.pf-shoppable-look__products small {
  grid-column: 1 / -1;
  color: var(--pf-color-deep-taupe);
}

.pf-shoppable-look__unavailable,
.pf-lookbook-empty {
  padding: var(--pf-space-2xl);
  background: var(--pf-color-warm-ivory);
}

.pf-lookbook-products {
  padding-block: var(--pf-space-4xl);
}

.pf-lookbook-products h2 {
  margin-bottom: var(--pf-space-xl);
}

.pf-wishlist-form {
  margin-top: var(--pf-space-sm);
}

.pf-wishlist-button {
  width: 100%;
  min-height: 3rem;
  padding: 0.85rem 1.4rem;
  border: 1px solid var(--pf-color-ink);
  border-radius: 0;
  background: transparent;
  color: var(--pf-color-ink);
  font: 600 0.8125rem/1 var(--pf-font-interface);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-wishlist-button:disabled {
  border-color: var(--pf-color-pale-stone);
  color: var(--pf-color-deep-taupe);
  cursor: not-allowed;
}

.woocommerce-account main > .wp-block-post-title {
  width: min(100% - (2 * var(--pf-space-lg)), var(--wp--style--global--content-size));
}

.woocommerce-account main > .wp-block-post-content {
  width: 100%;
  max-width: none;
}

.woocommerce-account main .woocommerce {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  min-width: 0;
  margin: var(--pf-space-2xl) auto var(--pf-space-4xl);
}

.woocommerce-account main .woocommerce::before,
.woocommerce-account main .woocommerce::after {
  display: none;
  content: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation,
.woocommerce-account .woocommerce-MyAccount-content {
  float: none;
  width: auto;
  min-width: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: flex;
  gap: var(--pf-space-lg);
  margin: 0 0 var(--pf-space-xl);
  padding: 0 0 var(--pf-space-md);
  overflow-x: auto;
  border-bottom: 1px solid var(--pf-color-pale-stone);
  list-style: none;
  scrollbar-width: thin;
}

.woocommerce-account .woocommerce-MyAccount-navigation a {
  display: block;
  padding-block: var(--pf-space-xs);
  color: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
  border-bottom: 1px solid currentcolor;
}

.woocommerce-account .woocommerce-MyAccount-content {
  min-width: 0;
}

.pf-account-overview,
.pf-account-empty,
.pf-account-wishlist {
  padding: clamp(var(--pf-space-xl), 5vw, var(--pf-space-3xl));
  background: var(--pf-color-warm-ivory);
}

.pf-account-overview h2,
.pf-account-empty h2,
.pf-account-wishlist h2 {
  max-width: 18ch;
  margin: 0;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 400;
}

.pf-account-overview__grid {
  display: grid;
  gap: 1px;
  margin-block: var(--pf-space-xl);
  background: var(--pf-color-pale-stone);
}

.pf-account-overview__grid > * {
  display: grid;
  gap: var(--pf-space-xs);
  min-height: 8rem;
  padding: var(--pf-space-lg);
  background: var(--pf-color-soft-white);
  color: inherit;
  text-decoration: none;
}

.pf-account-overview__grid strong {
  font-family: var(--pf-font-display);
  font-size: 2rem;
  font-weight: 400;
}

.pf-account-overview__grid span {
  align-self: end;
  color: var(--pf-color-deep-taupe);
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pf-account-empty p {
  max-width: 36rem;
  margin-block: var(--pf-space-lg) var(--pf-space-xl);
  line-height: 1.7;
}

.pf-account-wishlist .pf-product-grid {
  margin-top: var(--pf-space-xl);
}

.pf-account-wishlist .pf-text-button {
  padding: var(--pf-space-xs) 0;
  border: 0;
  border-bottom: 1px solid currentcolor;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.woocommerce-account .woocommerce-form-login,
.woocommerce-account .woocommerce-form-register {
  padding: var(--pf-space-xl);
  border: 1px solid var(--pf-color-pale-stone);
  border-radius: 0;
}

.woocommerce-account .woocommerce-form-row input,
.woocommerce-account .woocommerce-form-row select {
  min-height: 3rem;
  border: 1px solid var(--pf-color-pale-stone);
  border-radius: 0;
}

@media (width >= 48rem) {
	.pf-mobile-purchase-bar {
		display: none;
	}

  .pf-collection-hero {
    grid-template-columns: minmax(0, 1.6fr) minmax(20rem, 0.8fr);
    min-height: 42rem;
  }

  .pf-collection-hero__media {
    aspect-ratio: 3 / 2;
  }

  .pf-collection-hero__media img {
    object-position: var(--pf-collection-desktop-x) var(--pf-collection-desktop-y);
  }

  .pf-collection-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--pf-space-2xl);
  }

  .pf-product-grid,
  .pf-complete-look ol {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--pf-space-2xl) var(--pf-space-md);
  }

  .pf-collection-story,
  .pf-product-story,
  .pf-fabric-story,
  .pf-fit {
    grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
    gap: var(--pf-space-4xl);
  }

  .pf-product-above-fold {
		grid-template-columns: minmax(0, 2fr) minmax(21rem, 1fr);
    align-items: start;
  }

  .pf-product-gallery ol {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: visible;
  }

  .pf-product-gallery li {
    aspect-ratio: 3 / 4;
  }

  .pf-product-gallery li:first-child {
    grid-column: 1 / -1;
  }

  .pf-product-summary {
    position: sticky;
    top: calc(clamp(5rem, 8.5vw, 7.5rem) + var(--pf-space-sm));
  }

  .pf-lookbook-hero {
    grid-template-columns: minmax(0, 1.6fr) minmax(20rem, 0.8fr);
  }

  .pf-lookbook-hero__media {
    aspect-ratio: 3 / 2;
  }

  .pf-lookbook-hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--pf-space-2xl);
  }

  .pf-shoppable-look {
    grid-template-columns: minmax(0, 1.4fr) minmax(18rem, 0.6fr);
    gap: var(--pf-space-4xl);
  }

  .pf-shoppable-look:nth-child(even) .pf-shoppable-look__media {
    order: 2;
  }

  .pf-shoppable-look:nth-child(3n + 2) {
    grid-template-columns: minmax(18rem, 0.62fr) minmax(0, 1.38fr);
  }

  .pf-shoppable-look:nth-child(3n + 2) .pf-shoppable-look__media {
    aspect-ratio: 3 / 2;
  }

  .pf-shoppable-look:nth-child(3n) .pf-shoppable-look__media {
    width: min(100%, 48rem);
    margin-inline: auto;
    aspect-ratio: 2 / 3;
  }

  .woocommerce-account main .woocommerce {
    grid-template-columns: minmax(12rem, 0.28fr) minmax(0, 1fr);
    gap: var(--pf-space-3xl);
  }

  .woocommerce-account .woocommerce-MyAccount-navigation ul {
    display: grid;
    gap: var(--pf-space-sm);
    margin: 0;
    border: 0;
  }

  .woocommerce-account .woocommerce-MyAccount-navigation a {
    display: inline-block;
  }

  .pf-account-overview__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pf-checkout-boundary,
.pf-checkout-estimates {
  margin-bottom: var(--pf-space-xl);
  padding: clamp(var(--pf-space-lg), 4vw, var(--pf-space-2xl));
  background: var(--pf-color-warm-ivory);
}

.pf-checkout-intro {
  margin: var(--pf-space-3xl) 0 var(--pf-space-xl);
}

.pf-checkout-intro h1 {
  margin: 0;
  font-family: var(--pf-font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.pf-checkout-boundary h2,
.pf-checkout-estimates h2 {
  max-width: 20ch;
  margin: 0 0 var(--pf-space-md);
  font-family: var(--pf-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 400;
  line-height: 1.08;
}

.pf-checkout-boundary > p:last-child {
  max-width: 48rem;
  margin-bottom: 0;
  color: var(--pf-color-deep-taupe);
  line-height: 1.65;
}

.pf-checkout-experience .wc-block-checkout {
  margin: 0;
}

.pf-checkout-experience :is(input, select, textarea) {
  border-radius: 0;
}

.pf-checkout-experience .wc-block-components-text-input input,
.pf-checkout-experience .wc-block-components-combobox .components-combobox-control__input {
  min-height: 3.5rem;
}

.pf-checkout-experience .wc-block-components-checkout-step {
  padding-bottom: var(--pf-space-xl);
  border-bottom: 1px solid var(--pf-color-pale-stone);
}

.pf-checkout-experience .wc-block-components-checkout-step__heading h2,
.pf-checkout-experience .wc-block-components-title {
  font-family: var(--pf-font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
}

.pf-checkout-experience .wc-block-components-validation-error,
.pf-checkout-experience .wc-block-store-notice--error {
  color: var(--pf-color-oxblood);
  font-weight: 600;
}

.pf-checkout-estimates {
  margin-top: var(--pf-space-3xl);
}

.pf-checkout-estimates dl {
  display: grid;
  gap: var(--pf-space-lg);
  margin: 0;
}

.pf-checkout-estimates dl > div {
  padding-top: var(--pf-space-md);
  border-top: 1px solid var(--pf-color-pale-stone);
}

.pf-checkout-estimates dt {
  margin-bottom: var(--pf-space-xs);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-checkout-estimates dd {
  margin: 0;
  color: var(--pf-color-deep-taupe);
  line-height: 1.6;
}

.pf-sender-paid-assurance {
  margin-block: var(--pf-space-xl);
  padding: var(--pf-space-lg) var(--pf-space-xl);
  border: 1px solid var(--pf-color-pale-stone);
  background: var(--pf-color-warm-ivory);
  color: var(--pf-color-ink);
  font-size: 0.875rem;
  line-height: 1.6;
}

.pf-sender-paid-assurance.is-unavailable {
  border-color: var(--pf-color-oxblood);
}

.pf-sender-paid-assurance dl {
  display: grid;
  gap: var(--pf-space-sm);
  margin: var(--pf-space-md) 0 0;
}

.pf-sender-paid-assurance dl > div {
  display: grid;
  grid-template-columns: minmax(8rem, 0.4fr) 1fr;
  gap: var(--pf-space-md);
}

.pf-sender-paid-assurance dt {
  color: var(--pf-color-deep-taupe);
}

.pf-sender-paid-assurance dd {
  margin: 0;
}

@media (width >= 48rem) {
  .pf-checkout-estimates dl {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (width < 48rem) {
  .woocommerce-checkout main {
    width: min(100% - (2 * var(--pf-space-md)), var(--pf-content-wide));
  }

  .pf-checkout-experience .wc-block-checkout__main,
  .pf-checkout-experience .wc-block-checkout__sidebar {
    padding: 0;
  }

  .pf-checkout-experience .wc-block-components-checkout-place-order-button {
    width: 100%;
    min-height: 3.75rem;
  }
}

@media (width >= 80rem) {
  .pf-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (width < 48rem) {
  .pf-filter-sort__filters[open] form {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    min-width: 0;
    padding: var(--pf-space-xl) var(--pf-space-lg) calc(var(--pf-space-xl) + env(safe-area-inset-bottom));
    border: 0;
    border-top: 1px solid var(--pf-color-pale-stone);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pf-product-card__media img {
    transition: none;
  }
}

.woocommerce-cart main,
.woocommerce-checkout main {
  width: min(100% - (2 * var(--pf-space-lg)), var(--pf-content-wide));
  margin-inline: auto;
}

.woocommerce-cart main > .wp-block-post-title,
.woocommerce-checkout main > .wp-block-post-title {
  margin: var(--pf-space-3xl) 0 var(--pf-space-xl);
  font-family: var(--pf-font-display);
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.pf-cart-intro {
  display: flex;
  flex-wrap: wrap;
  gap: var(--pf-space-md) var(--pf-space-2xl);
  justify-content: space-between;
  margin-bottom: var(--pf-space-xl);
  padding-bottom: var(--pf-space-xl);
  border-bottom: 1px solid var(--pf-color-pale-stone);
}

.pf-cart-intro p {
  margin: 0;
}

.pf-cart-intro > p:last-child {
  max-width: 38rem;
  color: var(--pf-color-deep-taupe);
  line-height: 1.65;
}

.pf-cart-experience .wc-block-cart {
  margin: 0;
}

.pf-cart-experience .wc-block-cart__empty-cart__title {
  margin-block: var(--pf-space-2xl) var(--pf-space-lg);
  font-family: var(--pf-font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 400;
}

.pf-cart-experience .wc-block-cart__empty-cart__title::before,
.pf-cart-experience .is-style-dots {
  display: none;
}

.pf-cart-experience :is(button, input, select, a):focus-visible,
.woocommerce-checkout :is(button, input, select, a):focus-visible {
  outline: 2px solid var(--pf-color-oxblood);
  outline-offset: 3px;
}

.pf-cart-experience .wc-block-components-button,
.woocommerce-checkout .wc-block-components-button {
  min-height: 3.25rem;
  border-radius: 0;
  font-family: var(--pf-font-interface);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pf-cart-experience .wc-block-cart__submit-button,
.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  background: var(--pf-color-ink);
  color: var(--pf-color-soft-white);
}

.pf-cart-experience .wc-block-cart-items {
  border-top: 1px solid var(--pf-color-pale-stone);
}

.pf-cart-experience .wc-block-cart-items__row {
  border-bottom: 1px solid var(--pf-color-pale-stone);
}

.pf-cart-experience .wc-block-cart-item__image img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.pf-cart-experience .wc-block-components-product-name {
  color: inherit;
  font-family: var(--pf-font-display);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  text-decoration: none;
}

.pf-cart-experience .wc-block-components-quantity-selector {
  border-radius: 0;
}

.pf-cart-assurance {
  margin-block: var(--pf-space-3xl);
  padding: clamp(var(--pf-space-xl), 5vw, var(--pf-space-3xl));
  background: var(--pf-color-warm-ivory);
}

.pf-cart-assurance h2 {
  margin: 0 0 var(--pf-space-lg);
  font-family: var(--pf-font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
}

.pf-cart-assurance ul {
  display: grid;
  gap: var(--pf-space-md);
  margin: 0;
  padding: 0;
  list-style: none;
}

.pf-cart-assurance li {
  padding-top: var(--pf-space-md);
  border-top: 1px solid var(--pf-color-pale-stone);
  line-height: 1.6;
}

@media (width >= 48rem) {
  .pf-cart-assurance ul {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: var(--pf-space-xl);
  }
}
