[data-product-page] {
  background: #fbfaf8;
}

.product-breadcrumb {
  display: flex;
  gap: 8px;
  padding: 24px 40px;
  color: var(--muted);
  font-size: 13px;
}

.product-breadcrumb a {
  text-decoration: underline;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 58%) minmax(420px, 42%);
  min-height: calc(100vh - 105px);
  border-bottom: 1px solid var(--line);
}

.product-gallery {
  min-width: 0;
  padding: 20px 36px 60px;
  border-right: 1px solid var(--line);
}

.product-main-image {
  display: grid;
  place-items: center;
  min-height: 620px;
}

.product-main-image img {
  width: min(680px, 92%);
  height: 600px;
  object-fit: contain;
}

.product-thumbnails {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  overflow-x: auto;
}

.product-thumb {
  flex: 0 0 76px;
  width: 76px;
  height: 76px;
  padding: 6px;
  background: #fff;
  border: 1px solid transparent;
  cursor: pointer;
}

.product-thumb.is-active {
  border-color: var(--ink);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-information {
  align-self: start;
  padding: 55px clamp(38px, 5vw, 76px) 70px;
}

.product-brand {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.product-information h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.06;
}

.product-price {
  margin: 18px 0;
  font-size: 23px;
}

.product-description {
  max-height: 155px;
  margin-bottom: 24px;
  overflow: hidden;
  color: #303030;
  line-height: 1.55;
}

.product-description > *:first-child {
  margin-top: 0;
}

.product-option {
  margin: 0 0 24px;
  padding: 0;
  border: 0;
}

.product-option legend {
  width: 100%;
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.option-value {
  min-width: 48px;
  min-height: 40px;
  padding: 8px 13px;
  background: transparent;
  border: 1px solid #a9a7a2;
  cursor: pointer;
}

.option-value.is-selected {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.option-value.color-value {
  position: relative;
  width: 34px;
  min-width: 34px;
  height: 34px;
  min-height: 34px;
  padding: 0;
  background: var(--swatch, #c7b8a2);
  border: 3px solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 1px #a9a7a2;
}

.option-value.color-value.is-selected {
  box-shadow: 0 0 0 2px var(--ink);
}

.product-add {
  width: 100%;
  min-height: 54px;
  margin-top: 4px;
}

.product-help {
  margin: 14px 0 27px;
  font-size: 14px;
  text-align: center;
}

.product-help a {
  text-decoration: underline;
}

.product-service-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.product-service-links a {
  display: flex;
  flex-direction: column;
  min-height: 92px;
  padding: 16px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.product-service-links span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.product-details-band {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 70px;
  padding: 90px max(40px, 8vw);
}

.product-details-band > div:first-child > p,
.product-story > div > p {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
}

.product-details-band h2,
.product-story h2,
.product-cta h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
}

.product-accordions details {
  border-top: 1px solid var(--line);
}

.product-accordions details:last-child {
  border-bottom: 1px solid var(--line);
}

.product-accordions summary {
  padding: 20px 4px;
  font-weight: 700;
  cursor: pointer;
}

.product-accordions details > div,
.product-accordions details > p {
  padding: 0 4px 23px;
  line-height: 1.55;
}

.product-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
  background: #fff;
}

.product-story > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-story > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 70px max(40px, 7vw);
}

.product-story > div > p:not(:first-child) {
  margin: 24px 0 32px;
  font-size: 18px;
  line-height: 1.5;
}

.product-cta {
  padding: 100px 24px;
  text-align: center;
}

.product-cta p {
  margin: 20px auto 30px;
  font-size: 18px;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  padding: 30px 40px;
  background: #111;
  color: #fff;
}

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

  .product-gallery {
    padding: 12px 16px 28px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .product-main-image {
    min-height: 390px;
  }

  .product-main-image img {
    height: 380px;
  }

  .product-information {
    padding: 35px 20px 48px;
  }

  .product-information h1 {
    font-size: 39px;
  }

  .product-details-band,
  .product-story {
    grid-template-columns: 1fr;
  }

  .product-details-band {
    gap: 38px;
    padding: 60px 20px;
  }

  .product-story > img {
    height: 420px;
  }

  .product-story > div {
    padding: 55px 24px 62px;
  }
}

@media (max-width: 520px) {
  .product-breadcrumb {
    padding: 18px 16px;
  }

  .product-main-image {
    min-height: 330px;
  }

  .product-main-image img {
    height: 320px;
  }

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

  .product-footer {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }
}
