.product-hero {
  grid-template-columns: minmax(20rem, 1fr) minmax(28rem, 34rem);
  gap: clamp(2.5rem, 6vw, 5rem);
}

.product-art {
  width: 100%;
}

.product-art > .book-object {
  width: 100%;
}

.product-summary {
  width: 100%;
  min-width: 0;
  max-width: 34rem;
}

.product-summary h1 {
  max-width: none;
  margin-top: 0.45rem;
}

.product-description {
  max-width: none;
  font-size: 1rem;
  line-height: 1.55;
  text-wrap: balance;
}

.product-summary > .release-status,
.delivery-details {
  display: none;
}

.purchase {
  margin-top: 1.5rem;
  padding: 1.25rem;
  border: 1px solid #deddd8;
  border-radius: 10px;
  background: #fafaf8;
}

.purchase-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.purchase-price {
  display: block;
  color: var(--ink);
  font: 400 2.25rem/1 var(--sans);
  letter-spacing: -0.065em;
}

.purchase-unit {
  display: block;
  margin-top: 0.45rem;
  color: var(--mute);
  font: 400 0.6875rem/1.5 var(--mono);
}

.purchase-badge {
  flex: 0 0 auto;
  padding: 0.3rem 0.5rem;
  border-radius: 4px;
  background: #eaeae5;
  font: 400 0.6875rem/1.5 var(--mono);
  white-space: nowrap;
}

.purchase-includes {
  margin: 1rem 0 0.75rem;
  color: var(--ink);
  font: 400 0.8125rem/1.5 var(--sans);
}

.delivery-grid {
  display: inline-flex;
  flex-wrap: wrap;
  vertical-align: middle;
}

.delivery-tile {
  display: flex;
  align-items: center;
  padding: 0.35rem 0.55rem;
  border: 1px solid #e0dfda;
  border-radius: 4px;
  background: #fff;
}

.delivery-tile:first-child {
  display: none;
}

html[data-pricing-region="IN"] .delivery-tile:first-child {
  display: flex;
}

html[data-pricing-region="IN"] .delivery-tile:last-child {
  display: none;
}

.delivery-tile dt {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  border: 0;
  white-space: nowrap;
}

.delivery-tile dd {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin: 0;
  text-align: left;
}

.delivery-tile strong,
.delivery-tile span {
  color: var(--mute);
  font: 400 0.6875rem/1.5 var(--mono);
}

.delivery-tile strong::before {
  content: "+ ";
}

.delivery-tile strong::after {
  content: " shipping";
}

.delivery-tile span::before {
  content: "· ";
}

.purchase .delivery-caption {
  display: inline-block;
  margin: 0.5rem 0 0.5rem 0.5rem;
  color: var(--mute);
  font: 400 0.6875rem/1.5 var(--mono);
}

.purchase .purchase-action {
  width: 100%;
  max-width: none;
  min-height: 48px;
  margin: 0.75rem 0 0;
  justify-content: center;
  border-radius: 5px;
  font-size: 0.8125rem;
}

.purchase .purchase-action:disabled,
.purchase .purchase-action:disabled:hover {
  border: 1px solid #deddd8;
  background: #e5e5df;
  color: #62625c;
}

.purchase .purchase-status {
  margin: 0.65rem 0 0;
  color: var(--mute);
  font: 400 0.6875rem/1.55 var(--mono);
  text-align: center;
}

@media (max-width: 899px) {
  .product-hero {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }

  .product-art {
    width: min(100%, 30rem);
    margin-inline: auto;
  }

  .product-summary {
    margin-inline: auto;
  }
}

@media (max-width: 379px) {
  .purchase {
    padding: 1rem;
  }

  .purchase-top {
    gap: 0.5rem;
  }

  .purchase-price {
    font-size: 2rem;
  }

  .purchase-badge {
    font-size: 0.625rem;
  }

  .purchase .delivery-caption {
    display: block;
    margin-left: 0;
  }
}
