:root {
  --ink: #111;
  --muted: #6f6766;
  --line: #d7d2d0;
  --paper: #fff;
  --soft: #f6f6f6;
  --blush: #f7d7cd;
  --pink: #f0198f;
  --panel: #f9ebe7;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, Arial, sans-serif;
  line-height: 1.5;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 20px 0 18px;
  border-bottom: 1px solid #9e9e9e;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.logo {
  display: inline-flex;
}

.logo img,
.site-footer img {
  width: 136px;
  height: auto;
}

nav {
  display: flex;
  justify-content: center;
  gap: 28px;
  font-size: 15px;
}

nav a {
  text-decoration: none;
}

.quick-links {
  position: absolute;
  right: 0;
  bottom: 17px;
  display: flex;
  gap: 8px;
}

.icon-link {
  width: 38px;
  height: 34px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}

.hero {
  background: var(--paper);
  padding: clamp(58px, 7vw, 104px) 20px 88px;
  text-align: center;
}

.hero-copy {
  width: min(900px, 100%);
  margin: 0 auto 70px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--pink);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2 {
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 6vw, 72px);
}

h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
}

.subhead {
  width: min(640px, 100%);
  margin: 26px auto 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(22px, 2.4vw, 34px);
}

.button {
  min-width: 170px;
  padding: 13px 20px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.button.primary {
  background: var(--ink);
  color: #fff;
}

.button.secondary {
  background: transparent;
}

.hero-slider {
  width: min(1160px, 100%);
  margin: 0 auto;
  position: relative;
}

.hero-slides {
  position: relative;
  overflow: hidden;
  background: #ececec;
  touch-action: pan-y;
}

.hero-image {
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  inset: 0;
  transition: opacity 420ms ease;
}

.hero-image.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.hero-image img {
  width: 100%;
  aspect-ratio: 1160 / 640;
  object-fit: cover;
  background: #ececec;
}

.slider-arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(17, 17, 17, 0.32);
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 30px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.slider-arrow.prev {
  left: 14px;
}

.slider-arrow.next {
  right: 14px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.slider-dots button {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.slider-dots button.is-active {
  background: var(--ink);
}

.product-strip {
  width: min(1280px, calc(100% - 96px));
  margin: 0 auto;
  padding: 92px 0 112px;
}

.section-heading {
  width: min(690px, 100%);
  margin: 0 auto 34px;
  text-align: center;
}

.section-heading h2 {
  font-size: 24px;
}

.compact {
  margin-bottom: 28px;
}

.product-carousel {
  position: relative;
}

.product-grid {
  display: grid;
  grid-auto-columns: calc((100% - 138px) / 4);
  grid-auto-flow: column;
  gap: 46px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-card {
  position: relative;
  text-align: center;
  scroll-snap-align: start;
}

.product-card a {
  display: block;
  text-decoration: none;
}

.product-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f2f2f2;
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-card a:hover img {
  opacity: 0.88;
  transform: translateY(-2px);
}

.product-card span {
  position: absolute;
  top: 0;
  left: 0;
  padding: 7px 16px;
  background: #ff9dae;
  color: #fff;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 17px;
  font-weight: 700;
}

.product-card h3 {
  display: none;
}

.product-arrow {
  width: 38px;
  height: 52px;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 38px;
  line-height: 1;
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 2;
}

.product-arrow.prev {
  left: -64px;
}

.product-arrow.next {
  right: -64px;
}

.product-page {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0 96px;
}

.breadcrumb {
  margin: 0 0 54px;
  color: var(--muted);
  font-size: 15px;
}

.breadcrumb a {
  color: var(--ink);
  text-decoration: none;
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.75fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 28px;
}

.thumbs {
  display: grid;
  align-content: start;
  gap: 12px;
}

.thumbs button {
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
  padding: 0;
}

.thumbs button.is-active {
  border-color: var(--ink);
}

.thumbs img {
  width: 72px;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.main-product-image {
  margin: 0;
}

.main-product-image img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: #f2f2f2;
}

.product-info h1 {
  font-size: clamp(30px, 4vw, 44px);
}

.product-price {
  margin: 28px 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 28px;
}

.product-description {
  color: var(--muted);
  font-size: 17px;
}

.quantity-control {
  margin: 30px 0;
}

.quantity-control label {
  margin-bottom: 10px;
  font-size: 15px;
}

.quantity-stepper {
  width: 138px;
  min-height: 56px;
  border: 1px solid #8e817d;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  text-align: center;
}

.quantity-stepper button {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 28px;
}

.whatsapp-product {
  width: min(300px, 100%);
  display: block;
  background: #ff8f97;
  color: #fff;
  font-weight: 700;
  padding: 16px 18px;
  text-align: center;
  text-decoration: none;
}

.product-notes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 88px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.product-notes h2 {
  font-size: 28px;
}

.product-notes p {
  color: var(--muted);
}

.about {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 54px;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 86px 0;
  border-top: 1px solid var(--line);
}

.about-copy p {
  margin-top: 0;
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 700;
}

.faq {
  background: var(--soft);
  padding: 90px 20px;
}

.faq-list {
  width: min(860px, 100%);
  margin: 0 auto;
}

details {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 19px;
}

details p {
  margin: 14px 0 0;
  color: var(--muted);
}

.contact {
  padding: 78px 20px;
  background-image: linear-gradient(rgba(255,255,255,.45), rgba(255,255,255,.45)), url("assets/1cb1fea41011d293.jpeg");
  background-size: cover;
  background-position: center;
}

.contact-panel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  background: var(--blush);
  padding: clamp(32px, 6vw, 68px);
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
}

.contact-copy address {
  margin-top: 24px;
  font-style: normal;
  color: #312b2a;
}

.contact-copy a {
  display: inline-block;
  margin-top: 12px;
}

.map-link {
  padding: 11px 14px;
  border: 1px solid #8e817d;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
}

input,
textarea {
  width: 100%;
  border: 1px solid #8e817d;
  background: transparent;
  padding: 12px;
  font: inherit;
}

textarea {
  resize: vertical;
}

.wide,
.inquiry-form button {
  grid-column: 1 / -1;
}

.inquiry-form button {
  border: 0;
  background: #000;
  color: #fff;
  min-height: 48px;
  font-weight: 700;
  cursor: pointer;
}

.site-footer {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  padding: 34px 0 52px;
  border-top: 1px solid #9e9e9e;
  text-align: center;
}

.site-footer img {
  margin: 0 auto 16px;
}

.site-footer p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 760px) {
  .site-header {
    padding-top: 18px;
  }

  nav {
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
  }

  .quick-links {
    display: none;
  }

  .hero {
    padding: 58px 12px 74px;
  }

  h1 {
    font-size: clamp(36px, 12vw, 48px);
  }

  .hero-copy {
    margin-bottom: 34px;
  }

  .subhead {
    font-size: 15px;
  }

  .button {
    width: min(100%, 280px);
  }

  .hero-image img {
    aspect-ratio: 940 / 520;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 26px;
  }

  .product-strip {
    padding: 68px 0;
  }

  .product-grid {
    grid-auto-columns: 78%;
    gap: 18px;
  }

  .product-arrow {
    width: 34px;
    height: 44px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid var(--line);
    font-size: 32px;
  }

  .product-arrow.prev {
    left: 6px;
  }

  .product-arrow.next {
    right: 6px;
  }

  .product-page {
    padding: 48px 0 72px;
  }

  .product-detail,
  .product-notes {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    grid-template-columns: 1fr;
  }

  .thumbs {
    display: flex;
    order: 2;
  }

  .about,
  .contact-panel {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about {
    padding: 64px 0;
  }

  .faq {
    padding: 66px 16px;
  }

  .contact {
    padding: 0;
  }

  .contact-panel {
    width: 100%;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}
