.store-section {
  background: white;
  padding: clamp(44px, 6vw, 76px) clamp(18px, 6vw, 96px) clamp(90px, 14vw, 190px);
}

.store-section h1 {
  margin: 0;
  margin-bottom: clamp(40px, 6vw, 82px);
  font-family: "Libre Baskerville", Georgia, serif;
  line-height: 1.1;
  text-align: center;
  font-size: clamp(2.05rem, 4.8vw, 4rem);
}

.product-grid {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  gap: clamp(30px, 5vw, 58px);
}

.product-card {
  padding: clamp(20px, 3.2vw, 38px);
  border: 1px solid #eadfcf;
  border-radius: 8px;
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  background: #fffdf8;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .08);
}

.product-card-header {
  display: grid;
  gap: 6px;
}

.product-card-header p {
  margin: 0;
  color: var(--gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(.92rem, 1.25vw, 1.1rem);
  font-weight: 800;
  text-transform: uppercase;
}

.product-card-header h2 {
  margin: 0;
  color: var(--marsala);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2rem, 4.2vw, 4rem);
  line-height: .98;
  text-transform: uppercase;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(330px, .95fr) minmax(320px, .75fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: start;
}

.carousel {
  position: relative;
  display: grid;
  gap: 14px;
}

.carousel-frame {
  aspect-ratio: 4 / 5;
  width: 100%;
  min-height: 0;
  border-radius: 8px;
  background: #f6eadc;
  overflow: hidden;
  display: grid;
  place-items: center;
}

.carousel-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.carousel-control {
  position: absolute;
  top: calc(50% - 26px);
  width: 48px;
  height: 52px;
  border: 0;
  border-radius: 8px;
  background: rgba(101, 9, 20, .88);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.carousel-control:hover {
  background: var(--marsala);
  transform: translateY(-1px);
}

.carousel-control.prev {
  left: 10px;
}

.carousel-control.next {
  right: 10px;
}

.carousel-dots {
  min-height: 16px;
  display: flex;
  justify-content: center;
  gap: 10px;
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #d7c4ac;
  cursor: pointer;
}

.carousel-dot.active {
  background: var(--marsala);
}

.product-form {
  display: grid;
  align-content: start;
  gap: 18px;
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
}

.product-form label,
.size-row p {
  margin: 0;
  font-size: clamp(1.1rem, 1.8vw, 1.55rem);
  font-weight: 700;
}

.product-form select {
  width: min(520px, 100%);
  border: 2px solid #222;
  border-radius: 0;
  padding: 12px 14px;
  background: white;
  color: black;
  font: inherit;
  font-weight: 800;
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.size-button {
  min-width: 56px;
  min-height: 54px;
  padding: 8px 13px;
  border: 1px solid #777;
  background: white;
  color: black;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease, border-color .18s ease;
}

.size-button:hover,
.size-button.selected {
  border-color: var(--gold);
  background: var(--gold);
  color: white;
  transform: translateY(-1px);
}

.price-box {
  width: min(430px, 100%);
  padding-top: 2px;
}

.price-box span {
  display: block;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.price-box strong {
  display: block;
  min-height: 46px;
  color: var(--gold);
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(2rem, 3.7vw, 3.8rem);
  line-height: 1;
}

.reserve-button {
  width: min(360px, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  padding: 12px 28px;
  border: 0;
  background: var(--green);
  color: white;
  font-family: "Archivo", Arial, sans-serif;
  font-size: clamp(1.3rem, 2vw, 2rem);
  font-weight: 700;
  text-transform: uppercase;
  transition: transform .2s ease, filter .2s ease, box-shadow .2s ease;
}

.reserve-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.04);
  box-shadow: 0 12px 26px rgba(4, 191, 101, .25);
}

.store-note {
  width: min(850px, 100%);
  margin: clamp(56px, 8vw, 110px) auto 0;
  text-align: center;
  font-size: clamp(1.25rem, 2vw, 2rem);
  line-height: 1.3;
}

.store-note p {
  margin: 28px 0;
}

@media (max-width: 960px) {
  .product-layout {
    grid-template-columns: 1fr;
  }

  .carousel {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .product-form {
    width: min(640px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 560px) {
  .store-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .product-card {
    padding: 16px;
  }

  .carousel-control {
    top: calc(50% - 23px);
    width: 40px;
    height: 46px;
    font-size: 2rem;
  }

  .carousel-control.prev {
    left: 6px;
  }

  .carousel-control.next {
    right: 6px;
  }

  .size-button {
    min-width: 50px;
    min-height: 50px;
  }
}
