/** Shopify CDN: Minification failed

Line 395:2 Unexpected "@media"
Line 402:0 Unexpected "}"
Line 416:0 Unexpected "}"

**/
.page-width:has(.collection-product-container) {
  max-width: unset;
  padding: 0;
}

/* ── Filters bar ── */
.filters-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-bottom: 1px solid #c7c7c7;
}

#products-count {
  font-size: clamp(14px, 1.5vw, 16px);
  color: #43475c;
}

.filters-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  background: none;
  color: #43475c;
  padding: 6px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.filters-active-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  background: #43475c;
  color: #fff5dc;
  border-radius: 50%;
  font-size: 11px;
}

/* ── Overlay ── */
.filters-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 300ms ease;
}

.filters-overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* ── Drawer ── */
.filters-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: #faf9f7;
  z-index: 201;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 300ms ease;
}

.filters-drawer.is-open {
  transform: translateX(0);
}

.filters-drawer-header {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 24px;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: #43475c;
}

.filters-drawer-close {
  position: absolute;
  left: 24px;
  background: none;
  border: 1px solid #43475c;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  color: #43475c;
  display: flex;
  align-items: center;
  justify-content: center;
}

.filters-drawer-body {
  flex: 1;
  overflow-y: auto;
}

/* ── Filter groups (accordion) ── */
.filter-group {
  border-bottom: 1px solid #e0e0e0;
}

.filter-group-header {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  background: none;
  border: none;
  font-size: 15px;
  color: #43475c;
  cursor: pointer;
  text-align: left;
}

.filter-chevron {
  width: 10px;
  height: 10px;
  border-right: 2px solid #43475c;
  border-bottom: 2px solid #43475c;
  transform: rotate(45deg);
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.filter-group.is-open .filter-chevron {
  transform: rotate(-135deg);
}

.filter-group-body {
  display: none;
  flex-direction: column;
  gap: 14px;
  padding: 4px 24px 20px;
}

.filter-group.is-open .filter-group-body {
  display: flex;
}

/* ── Filter options ── */
.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #43475c;
  cursor: pointer;
}

.filter-option input[type="checkbox"],
.filter-option input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: #43475c;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Toggle (boolean filter) ── */
.filter-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  color: #43475c;
  cursor: pointer;
}

.toggle-wrapper {
  position: relative;
  display: inline-block;
}

.toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-track {
  display: block;
  width: 44px;
  height: 24px;
  background: #d0d0d0;
  border-radius: 12px;
  position: relative;
  transition: background 200ms;
}

.toggle-track::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  top: 2px;
  left: 2px;
  transition: transform 200ms;
}

.toggle-input:checked ~ .toggle-track {
  background: #43475c;
}

.toggle-input:checked ~ .toggle-track::after {
  transform: translateX(20px);
}

/* ── Price range ── */
/* ── Price slider ── */
.price-slider-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 4px;
}

.price-slider-track {
  position: relative;
  height: 2px;
  background: #d0d0d0;
  border-radius: 2px;
  margin: 10px 0;
}

.price-slider-fill {
  position: absolute;
  height: 100%;
  background: #43475c;
  border-radius: 2px;
  top: 0;
}

.price-range-input {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  pointer-events: none;
  height: 2px;
  margin: 0;
  outline: none;
}

.price-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  pointer-events: all;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 2px solid #43475c;
  border-radius: 50%;
  cursor: pointer;
}

.price-range-input::-moz-range-thumb {
  pointer-events: all;
  width: 14px;
  height: 14px;
  background: #fff;
  border: 2px solid #43475c;
  border-radius: 50%;
  cursor: pointer;
}

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

.price-field {
  display: flex;
  align-items: center;
  flex: 1;
  border: 1px solid #c7c7c7;
  padding: 6px 10px;
  gap: 4px;
}

.price-field-symbol {
  font-size: 13px;
  color: #43475c;
  flex-shrink: 0;
}

.price-field-input {
  width: 100%;
  border: none;
  outline: none;
  font-size: 14px;
  color: #43475c;
  background: transparent;
  min-width: 0;
}

.price-to {
  font-size: 13px;
  color: #43475c;
  flex-shrink: 0;
}

/* ── Footer ── */
.filters-drawer-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 24px;
  border-top: 1px solid #e0e0e0;
}

.filters-clear-btn {
  flex: 1;
  text-align: center;
  padding: 12px;
  border: 1px solid #43475c;
  border-radius: 50px;
  font-size: 14px;
  color: #43475c;
  text-decoration: none;
}

.filters-apply-btn {
  flex: 1;
  padding: 12px;
  background: #43475c;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  color: #fff5dc;
  cursor: pointer;
  font-weight: 600;
}

.collection-product-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid #c7c7c7;
  border-bottom: none;

  @media screen and (width >= 1024px) {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(5, 700px);
  }

  @media screen and (width >= 1280px) {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media screen and (width < 1024px) {
  .collection-product-container .product-card-container:not(.is-lifestyle) {
    grid-column: span 2;
  }
}

.collection-product-container
  /* .product-card-container:nth-child(3 of .product-card-container) {
  grid-column: span 2 / span 2;
  overflow: hidden; */

  @media screen and (width >= 1024px) {
    grid-column: span 1 / span 1;
  }

  @media screen and (width >= 1280px) {
    grid-column: span 2 / span 2;
  }
}

.collection-product-container
  /* .product-card-container:nth-child(8 of .product-card-container) {
  grid-column: span 2 / span 2;
  overflow: hidden; */

  @media screen and (width >= 1024px) {
    grid-column: span 1 / span 1;
  }

  @media screen and (width >= 1280px) {
    grid-column: span 2 / span 2;
  }
}

.badges-container {
  position: absolute;
  top: 10px;
  left: 10px;
  display: flex;
  flex-direction: column;
  row-gap: 5px;
  text-align: center;
  z-index: 10;
}

.new-badge {
  background: #43475c;
  padding: 0 18px;
  color: #fff5dc;
  font-size: clamp(10px, 1.25vw, 18px);
}

.final-sale-badge {
  background: #c77646;
  padding: 0 18px;
  color: #fff5dc;
  font-size: clamp(10px, 1.25vw, 18px);
}

.product-card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  border-right: 1px solid #c7c7c7;
  border-bottom: 1px solid #c7c7c7;
  padding-bottom: 20px;

  @media screen and (width >= 1024px) {
    padding-bottom: 0px;
  }
}


.product-card-container.is-lifestyle {
  display: flex;
  flex-direction: column;

  @media screen and (width >= 1280px) {
    justify-content: space-between;
  }
}

.lifestyle-card-link {
  width: 100%;
}

.lifestyle-card-link img {
  max-height: 600px;
  object-fit: cover;
  object-position: bottom;
}

.product-card-container.is-lifestyle .product-info {
  align-self: flex-start;
  width: 50%;
  margin-top: 10px;

  @media screen and (width >= 1024px) {
    width: fit-content;
  }
}

.card-image-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.card-hover-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  row-gap: 11px;
  width: 100%;
}

@media (hover: hover) {
  .product-card-container:hover .card-hover-overlay {
    display: flex;
  }
}

.product-info .size-swatches {
  display: none;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px;
  margin-bottom: 10px;
}

@media (hover: none) {
  .card-image-wrapper {
    cursor: pointer;
  }

  .product-info .size-swatches,
  .card-hover-overlay {
    display: flex;
  }
}

@media (hover: hover) {
  .product-card-container:hover .product-info .size-swatches {
    display: flex;
  }
}

.product-info .size-swatch {
  width: 40px;
  height: 40px;
  border: 1px solid #43475c;
  background-color: transparent;
  border-radius: 50%;
  color: #43475c;
  font-size: 14px;
  font-weight: 600;
}

.product-info .size-swatch.is-selected {
  background-color: #43475c;
  color: #fff5dc;
  border: 1px solid #43475c;
}

.product-info .size-swatch.is-soldout {
  border-color: #a2938f;
  color: #a2938f;
  position: relative;

  &::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 100%;
    transform: translate(-50%, -50%) rotate(45deg);
    background-color: #a2938f;
  }
}

.add-to-cart-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 11;
  width: 100%;

  @media screen and (width >= 1024px) {
    flex-direction: row;
    column-gap: 11px;
  }
}

.add-to-cart-form .add-to-cart-button,
.add-to-cart-form .collection-product-redirect {
  width: 90%;
  text-align: center;
  background: #a2938f;
  border: 1px solid #fff5dc;
  color: #fff5dc;
  padding: 8px 0;
  font-size: 17px;
  font-weight: 600;
  text-transform: capitalize;
}

.add-to-cart-button.is-loading {
  color: transparent;
  cursor: wait;
  pointer-events: none;
  position: relative;
}

.add-to-cart-button.is-loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  border: 2px solid #fff5dc;
  border-top-color: transparent;
  border-radius: 50%;
  animation: atc-spin 0.6s linear infinite;
  transform: translate(-50%, -50%);
}

@keyframes atc-spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 300ms ease-in-out,
    visibility 300ms ease-in-out;

  @media screen and (width >= 1024px) {
    padding: 0 50px 20px;
  }
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5px;
  margin-bottom: 10px;
}


.product-info .color-swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 1px solid #e8e8e8;
  border-radius: 50%;
  margin: 0;
}

.product-info .color-swatch.is-selected {
  border: 1px solid #43475c;
}

.collection-product-image {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 300ms ease-in-out,
    visibility 300ms ease-in-out;
  display: block;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
  aspect-ratio: 3 / 2;
  max-height: 500px;
}

.product-price {
  display: flex;
  color: #43475c;
  font-size: 14px;

  @media screen and (width >= 1024px) {
    font-size: 16px;
  }
}

.price-compared {
  text-decoration: line-through;
  opacity: 0.5;
}

.product-info a {
  font-size: 14px;
  font-weight: 600;
  color: #43475c;
  text-align: center;

  @media screen and (width >= 1024px) {
    font-size: 17px;
  }
}
