:root {
  --forest: #17231d;
  --paper: #fbf9f4;
  --bone: #f5f1e8;
  --citron: #d7ee78;
  --terra: #bf7356;
  --muted: #6e746e;
  --line: rgba(23, 35, 29, 0.14);
}
.product-page {
  width: min(1180px, calc(100% - 48px));
  margin: auto;
}
.product-breadcrumbs {
  padding: 24px 0;
  color: var(--muted);
  font-size: 14px;
}
.product-breadcrumbs a {
  text-decoration: underline;
}
.product-hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 54px;
  align-items: stretch;
  padding: 12px 0 70px;
}
.product-gallery {
  position: relative;
  min-height: 620px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--bone);
}
.product-gallery img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.product-gallery small {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 11px 13px;
  border-radius: 12px;
  background: #17231dd9;
  color: white;
  font-size: 13px;
  line-height: 1.5;
}
.product-info {
  align-self: center;
}
.product-info .eyebrow {
  color: var(--terra);
}
.product-info h1 {
  font-size: clamp(48px, 5vw, 74px);
  line-height: 0.96;
  margin: 16px 0 20px;
}
.product-lead {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.product-status {
  margin: 24px 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--bone);
}
.product-status b,
.product-status span {
  display: block;
}
.product-status b {
  margin-bottom: 5px;
}
.product-status span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}
.product-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.product-price span {
  color: var(--muted);
  font-size: 14px;
}
.product-price strong {
  color: #773721;
  font-size: 22px;
}
.product-cta {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}
.product-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 70px;
}
.product-facts article {
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--bone);
}
.product-facts small {
  color: var(--terra);
  font-weight: 800;
  letter-spacing: 0.09em;
}
.product-facts h2 {
  font-size: 26px;
  margin: 22px 0 10px;
}
.product-facts p,
.product-facts li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}
.product-facts ul {
  padding-left: 20px;
}
.launch-ready {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  margin-bottom: 80px;
  padding: 42px;
  border-radius: 28px;
  background: var(--forest);
  color: white;
}
.launch-ready h2 {
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1;
  margin: 0;
}
.launch-ready p {
  color: #ffffffb3;
  line-height: 1.7;
}
.launch-ready ul {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}
.launch-ready li {
  padding: 7px 0;
}
.launch-ready li:before {
  content: "✓";
  color: var(--citron);
  margin-right: 10px;
}
.product-related {
  margin-bottom: 90px;
}
.product-related h2 {
  font-size: 40px;
}
.product-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-related-grid a {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
  font-weight: 800;
}
.product-related-grid a:hover {
  background: var(--bone);
}
@media (max-width: 850px) {
  .product-hero,
  .launch-ready {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    min-height: 500px;
  }
  .product-facts {
    grid-template-columns: 1fr;
  }
  .product-related-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .product-page {
    width: calc(100% - 28px);
  }
  .product-hero {
    gap: 26px;
    padding-bottom: 48px;
  }
  .product-gallery {
    min-height: 360px;
  }
  .product-info h1 {
    font-size: 46px;
  }
  .product-facts {
    margin-bottom: 55px;
  }
  .launch-ready {
    padding: 30px 22px;
    gap: 20px;
  }
  .product-price {
    align-items: flex-start;
    flex-direction: column;
  }
}
a:focus-visible,
.product-cta:focus-visible {
  outline: 3px solid var(--terra);
  outline-offset: 3px;
}
.product-cta {
  align-items: center;
  text-align: center;
  min-height: 52px;
}
.product-gallery img {
  aspect-ratio: 1 / 1;
}
