.product-archive {
  background: #fff;
  color: #111;
}

.product-archive__hero {
  padding: 150px 0 70px;
}

.product-archive__hero h1 {
  margin: 0;
  color: #8a652f;
  font-size: clamp(42px, 7vw, 96px);
  line-height: 1.25;
  font-weight: 700;
}

.product-list {
  padding: 30px 0 120px;
}

.product-list__items {
  display: grid;
  gap: 110px;
}

.product-list__item {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 80px;
  align-items: center;
}

.product-list__gallery {
  min-width: 0;
}

.product-list__thumb {
  position: relative;
  display: block;
  overflow: hidden;
  background: #f5f1eb;
  border-radius: 15px;
}

.product-list__thumb img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  display: block;
}

.product-gallery-slider {
  position: relative;
  overflow: hidden;
  background: #f5f1eb;
  border-radius: 15px;
}

.product-gallery-slider__viewport {
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.product-gallery-slider__viewport::-webkit-scrollbar {
  display: none;
}

.product-gallery-slider__viewport.is-dragging {
  cursor: grabbing;
}

.product-gallery-slider__track {
  display: flex;
}

.product-gallery-slider__slide {
  flex: 0 0 100%;
}

.product-gallery-slider__slide img {
  width: 100%;
  aspect-ratio: 1.1 / 1;
  object-fit: cover;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.product-gallery-slider__dots {
  position: absolute;
  left: 34px;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
}

.product-gallery-slider__dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: transparent;
  opacity: 1;
}

.product-gallery-slider__dots button.active {
  background: #fff;
}

.product-list__content {
  max-width: 520px;
}

.product-list__eyebrow {
  margin-bottom: 16px;
  color: #8a652f;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-list__title {
  margin: 0 0 24px;
  color: #111;
  font-size: clamp(32px, 4.5vw, 64px);
  line-height: 1.02;
  font-weight: 600;
}

.product-list__desc {
  margin-bottom: 32px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 17px;
  line-height: 1.8;
}

.product-list__price {
  margin-bottom: 32px;
  color: #111;
  font-size: 22px;
  font-weight: 600;
}

.product-list__price span {
  font-size: 14px;
  font-weight: normal;
}

.product-list__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 30px;
  border-radius: 999px;
  background: #8a652f;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, background 0.25s ease;
}

.product-list__button:hover {
  background: #b8874f;
  color: #fff;
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .product-archive__hero {
    padding: 130px 0 55px;
  }

  .product-list__items {
    gap: 80px;
  }

  .product-list__item {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .product-list__content {
    max-width: 100%;
  }
}

@media (max-width: 575px) {
  .product-archive__hero {
    padding: 110px 0 42px;
  }

  .product-list {
    padding-bottom: 80px;
  }

  .product-list__items {
    gap: 64px;
  }

  .product-gallery-slider__dots {
    left: 22px;
    bottom: 22px;
  }

  .product-list__title {
    margin-bottom: 18px;
  }

  .product-list__desc {
    margin-bottom: 24px;
  }
}

input[name="individual-size-thickness"][readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
    opacity: 0.75;
}