/** Shopify CDN: Minification failed

Line 949:0 Unexpected "}"

**/
/* ============================================================
   section-collection.css
   Editorial Collection Page — PLP
   ============================================================ */

/* ── Header — full-width, 80px top offset for fixed navbar ── */

.collection-editorial__header {
  width: 100%;
  /* padding-block-start: 90px; reserved for fixed navbar */
  padding-block-end: 0;
}

/* No container here — heading-wrap is full-bleed */
.collection-editorial__heading-wrap {
  position: relative;
  width: 100%;
}

.collection-editorial__hero-image {
  position: relative;
  width: 100%;
  aspect-ratio: 5 / 1;
  overflow: hidden;
}

.collection-editorial__hero-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.collection-editorial__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 30%,
    rgba(42, 33, 24, 0.35) 100%
  );
}

.collection-editorial__heading-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  /* No image case: give text breathing room */
  padding: var(--space-10) var(--container-pad-x) var(--space-8);
}

/* When text sits over the hero image */
.collection-editorial__heading-text--over-image {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-10) var(--container-pad-x);
  color: var(--color-bg-primary);
  /* Gradient lifts text off image */
  background: linear-gradient(
    to bottom,
    transparent 0%,
    rgba(42, 33, 24, 0.6) 100%
  );
}

.collection-editorial__heading-text--over-image .collection-editorial__title,
.collection-editorial__heading-text--over-image .collection-editorial__eyebrow,
.collection-editorial__heading-text--over-image .collection-editorial__description {
  color: var(--color-bg-primary);
}

.collection-editorial__eyebrow {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-widest);
  text-transform: uppercase;
  color: var(--color-text-secondary);
}

.collection-editorial__title {
  font-family: var(--font-heading);
  font-size: var(--font-size-h1);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  line-height: var(--leading-tight);
  margin: 0;
}

.collection-editorial__description {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  line-height: var(--leading-relaxed);
  max-width: var(--container-narrow);
  color: var(--color-text-secondary);
}

/* ── Toolbar ── */

.collection-editorial__toolbar {
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background-color: var(--color-bg-primary);
}

.collection-editorial__toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-4);
}

.collection-editorial__toolbar-left,
.collection-editorial__toolbar-right {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.collection-toolbar__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color var(--duration-micro) var(--ease-editorial);
}

.collection-toolbar__btn:hover {
  color: var(--color-accent);
}

.collection-toolbar__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: var(--color-bg-primary);
  font-size: 10px;
  line-height: 1;
}

.collection-editorial__count {
  color: var(--color-text-secondary);
}

.collection-toolbar__sort-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.collection-toolbar__sort-select {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-primary);
  background: none;
  border: none;
  cursor: pointer;
  padding-inline-end: var(--space-5);
  appearance: none;
  -webkit-appearance: none;
}

.collection-toolbar__sort-select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-toolbar__sort-icon {
  position: absolute;
  right: 0;
  pointer-events: none;
  color: var(--color-text-secondary);
}

/* ── Active Filters ── */

.collection-editorial__active-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2);
  padding-block: var(--space-4);
}

.active-filter-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.35em 0.75em;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
  color: var(--color-text-primary);
  border: 1px solid var(--color-border);
  background: none;
  text-decoration: none;
  transition:
    background-color var(--duration-micro) var(--ease-editorial),
    border-color var(--duration-micro) var(--ease-editorial);
}

.active-filter-pill:hover {
  background-color: var(--color-bg-secondary);
}

.active-filter-clear {
  margin-inline-start: var(--space-2);
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.active-filter-clear:hover {
  color: var(--color-text-primary);
}

/* ── Editorial Grid ── */

.collection-editorial__grid {
  list-style: none;
  margin: 0;
  padding-block: var(--space-10) var(--space-20);
}

/* Standard uniform grid */
.collection-editorial__grid--standard {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8) var(--space-6);
}

/* Editorial rhythm grid — CSS Grid named areas for varied sizing */
.collection-editorial__grid--editorial {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-8) var(--space-4);
  align-items: start;
}

/* Every item defaults to 4 columns */
.collection-editorial__grid--editorial .collection-editorial__item {
  grid-column: span 4;
}

/* Large cards — 6 columns */
.collection-editorial__grid--editorial .collection-editorial__item--large {
  grid-column: span 6;
}

/* Tall cards — still 4 columns but image is taller via card modifier */
.collection-editorial__grid--editorial .collection-editorial__item--tall {
  grid-column: span 4;
}

.collection-editorial__grid--editorial .collection-editorial__item--tall .pce__media {
  aspect-ratio: 3 / 5;
}

/* ── Product Card (pce = product-card-editorial) ── */

.pce {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

/* ── Media link wrapper ── */

.pce__media-link {
  display: block;
  text-decoration: none;
  outline: none;
}

.pce__media-link:focus-visible .pce__media {
  box-shadow: var(--focus-ring);
}

/* ── Media container — hover scoped here, not on card root ── */

.pce__media {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background-color: var(--color-bg-secondary);
}

.collection-editorial__item--large .pce__media {
  aspect-ratio: 4 / 5;
}

/* ── Images — stacked, crossfade on media hover ── */

.pce__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  will-change: opacity;
}

.pce__img--mobile {
  display: none;
}

.pce__img--primary {
  z-index: 2;
  opacity: 1;
  transition:
    opacity   var(--duration-cinematic) var(--ease-editorial),
    transform var(--duration-cinematic)     var(--ease-atmospheric);
}

.pce__img--hover {
  z-index: 1;
  opacity: 1;
  transition:
    opacity   var(--duration-cinematic) var(--ease-editorial),
    transform var(--duration-cinematic)     var(--ease-atmospheric);
}

/*
  Hover trigger is on .pce__media only — not the card root.
  This isolates the image crossfade from swatch row interaction.
*/
.pce__media:hover .pce__img--primary,
.pce__media-link:focus-visible .pce__img--primary {
  opacity: 0;
  /* transform: scale(1.018); */
}

.pce__media:hover .pce__img--hover,
.pce__media-link:focus-visible .pce__img--hover {
  opacity: 1;
  /* transform: scale(1.018); */
}

/* ── Sold-out badge ── */

.pce__badge {
  position: absolute;
  top: var(--space-4);
  left: var(--space-4);
  z-index: 4;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-regular);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-text-primary);
  background-color: var(--color-bg-primary);
  padding: 0.3em 0.65em;
  pointer-events: none;
}

/* ── Low-stock bar — matches screenshot frosted band ── */

.pce__stock-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-3) var(--space-4);
  background-color: rgba(42, 33, 24, 0.52);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  pointer-events: none;
}

.pce__stock-icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.pce__stock-text {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  letter-spacing: var(--tracking-wider);
  text-transform: uppercase;
  color: var(--color-bg-primary);
}

/* ── Placeholder ── */

.pce__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-bg-secondary);
}

.pce__placeholder-svg {
  width: 58%;
  height: 58%;
  opacity: 0.18;
}

/* ── Info block ── */

.pce__info {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.pce__meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: var(--space-3);
}

.pce__title-link {
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.pce__title {
  font-family: var(--font-primary);
  font-size: var(--text-md);
  font-weight: var(--weight-light);
  letter-spacing: var(--tracking-tight);
  margin: 0;
  transition: color var(--duration-micro) var(--ease-editorial);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pce__title-link:hover .pce__title {
  color: var(--color-accent);
}

.pce__price {
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  white-space: nowrap;
  margin: 0;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  flex-shrink: 0;
}

.pce__price-compare {
  text-decoration: line-through;
  opacity: 0.5;
}

/* ── Swatches ── */

.pce__swatches {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  padding-block-start: var(--space-1);
}

/*
  Swatch button — contains two stacked images.
  Default image visible at rest.
  Hover image crossfades in on button :hover.
*/
.pce__swatch {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  padding: 0;
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  transition: border-color var(--duration-micro) var(--ease-editorial);
}

/* Active ring */
.pce__swatch::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1.5px solid transparent;
  transition: border-color var(--duration-micro) var(--ease-editorial);
  pointer-events: none;
  z-index: 2;
}

.pce__swatch:hover::after,
.pce__swatch.is-active::after {
  border-color: var(--color-text-primary);
}

.pce__swatch:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 3px;
}

/* ── Swatch images — crossfade on button hover ── */

.pce__swatch-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
}

.pce__swatch-img--default {
  z-index: 2;
  opacity: 1;
  transition: opacity 0.6s ease;
}

.pce__swatch-img--hover {
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* On swatch button hover: fade default out, hover in */
.pce__swatch:hover .pce__swatch-img--default {
  opacity: 0;
}

.pce__swatch:hover .pce__swatch-img--hover {
  opacity: 1;
}

/* ── Swatch color dot fallback (no images) ── */

.pce__swatch-dot {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

/* ── Filter Drawer ── */

.filter-drawer {
  position: fixed;
  inset: 0;
  z-index: var(--z-drawer);
  pointer-events: none;
}

.filter-drawer.is-open {
  pointer-events: auto;
}

.filter-drawer__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(42, 33, 24, 0.3);
  opacity: 0;
  transition: opacity var(--duration-standard) var(--ease-editorial);
  cursor: pointer;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.filter-drawer.is-open .filter-drawer__overlay {
  opacity: 1;
}

.filter-drawer__panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background-color: var(--color-bg-primary);
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform var(--duration-standard) var(--ease-atmospheric);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.filter-drawer.is-open .filter-drawer__panel {
  transform: translateX(0);
}

.filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-8) var(--space-8) var(--space-6);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background-color: var(--color-bg-primary);
  z-index: 2;
}

.filter-drawer__title {
  color: var(--color-text-primary);
  letter-spacing: var(--tracking-widest);
}

.filter-drawer__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--color-text-primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--duration-micro) var(--ease-editorial);
}

.filter-drawer__close:hover {
  color: var(--color-accent);
}

.filter-drawer__body {
  flex: 1;
  padding: var(--space-6) var(--space-8);
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Filter Groups ── */

.filter-group {
  border-bottom: 1px solid var(--color-border);
}

.filter-group__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-5) 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-text-primary);
  text-align: left;
}

.filter-group__label {
  letter-spacing: var(--tracking-wider);
}

.filter-group__chevron {
  transition: transform var(--duration-micro) var(--ease-editorial);
  flex-shrink: 0;
  color: var(--color-text-secondary);
}

.filter-group__toggle[aria-expanded="false"] .filter-group__chevron {
  transform: rotate(-90deg);
}

.filter-group__values {
  padding-block-end: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.filter-group__toggle[aria-expanded="false"] + .filter-group__values {
  display: none;
}

/* ── Filter Options ── */

.filter-option {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  cursor: pointer;
}

.filter-option__input {
  width: 16px;
  height: 16px;
  border: 1px solid var(--color-border);
  border-radius: 0;
  background: none;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  transition: background-color var(--duration-micro) var(--ease-editorial);
}

.filter-option__input:checked {
  background-color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.filter-option__input:checked::after {
  content: '';
  position: absolute;
  inset: 2px;
  background-color: var(--color-bg-primary);
  mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 6L5 9L10 3' stroke='white' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.filter-option__input:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.filter-option__input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.filter-option__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
}

.filter-option__count {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
}

/* ── Price Range ── */

.filter-price-range__inputs {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.filter-price-range__field {
  flex: 1;
}

.filter-price-range__label {
  display: block;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  color: var(--color-text-secondary);
  margin-block-end: var(--space-2);
  letter-spacing: var(--tracking-wide);
  text-transform: uppercase;
}

.filter-price-range__input-wrap {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  padding: var(--space-2) var(--space-3);
}

.filter-price-range__currency {
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-secondary);
}

.filter-price-range__input {
  flex: 1;
  width: 100%;
  border: none;
  background: none;
  font-family: var(--font-secondary);
  font-size: var(--text-sm);
  color: var(--color-text-primary);
  min-width: 0;
}

.filter-price-range__separator {
  color: var(--color-text-secondary);
  font-size: var(--text-sm);
  flex-shrink: 0;
}

/* ── Drawer Actions ── */

.filter-drawer__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-block-start: auto;
  padding-block-start: var(--space-8);
  gap: var(--space-4);
}

.filter-drawer__clear {
  color: var(--color-text-secondary);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.filter-drawer__clear:hover {
  color: var(--color-text-primary);
}

.filter-drawer__apply {
  flex: 1;
  max-width: 160px;
  justify-content: center;
}

/* ── Pagination ── */

.collection-editorial__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding-block: var(--space-16);
}

.pagination-btn,
.pagination-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  font-family: var(--font-secondary);
  font-size: var(--text-xs);
  letter-spacing: var(--tracking-wide);
  color: var(--color-text-primary);
  text-decoration: none;
  border: 1px solid transparent;
  transition: border-color var(--duration-micro) var(--ease-editorial);
}

.pagination-btn:hover,
.pagination-num:hover {
  border-color: var(--color-border);
}

.pagination-num--current {
  border-color: var(--color-text-primary);
  cursor: default;
}

.pagination-ellipsis {
  color: var(--color-text-secondary);
  font-size: var(--text-xs);
  padding-inline: var(--space-2);
}

/* ── Empty State ── */

.collection-editorial__empty {
  padding-block: var(--space-24);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-4);
}

/* ── Responsive — Tablet ── */

@media (max-width: 1024px) {
  .collection-editorial__grid--editorial {
    grid-template-columns: repeat(8, 1fr);
  }

  .collection-editorial__grid--editorial .collection-editorial__item {
    grid-column: span 4;
  }

  .collection-editorial__grid--editorial .collection-editorial__item--large {
    grid-column: span 4;
  }

  .collection-editorial__grid--editorial .collection-editorial__item--tall {
    grid-column: span 4;
  }

  .collection-editorial__grid--standard {
    grid-template-columns: repeat(1, 1fr);
  }
    .pce__img--primary,
  .pce__img--hover {
    display: none;
  }

  .pce__img--mobile {
    display: block;
  }
}
}

/* ── Responsive — Mobile ── */

@media (max-width: 768px) {
  .collection-editorial__header {
    padding-block: var(--space-8) var(--space-6);
  }

  .collection-editorial__hero-image {
    aspect-ratio: 4 / 3;
  }

  .collection-editorial__heading-text--over-image {
    bottom: var(--space-6);
    left: 1.25rem;
  }

  .collection-editorial__grid--editorial,
  .collection-editorial__grid--standard {
    grid-template-columns: repeat(1, 1fr);
    gap: var(--space-6) var(--space-3);
  }

  .collection-editorial__grid--editorial .collection-editorial__item,
  .collection-editorial__grid--editorial .collection-editorial__item--large,
  .collection-editorial__grid--editorial .collection-editorial__item--tall {
    grid-column: span 1;
  }

  /* First item in editorial gets full width on mobile */
  .collection-editorial__grid--editorial .collection-editorial__item:first-child {
    grid-column: span 2;
  }

  .collection-editorial__grid--editorial .collection-editorial__item--tall .pce__media {
    aspect-ratio: 3 / 4;
  }

  .collection-editorial__toolbar-inner {
    padding-block: var(--space-3);
  }

  .collection-editorial__count {
    display: none;
  }

  .filter-drawer__panel {
    width: 100%;
  }

  .filter-drawer__header {
    padding: var(--space-6) 1.25rem var(--space-5);
  }

  .filter-drawer__body {
    padding: var(--space-4) 1.25rem;
  }
}

/* ── Reduced Motion ── */

@media (prefers-reduced-motion: reduce) {
  .pce__img--primary,
  .pce__img--hover,
  .pce__swatch-img--default,
  .pce__swatch-img--hover,
  .filter-drawer__panel,
  .filter-drawer__overlay {
    transition: none;
  }
}