:root {
  color: #121113;
  background: #e0e1f6;
  font-family: Montserrat, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 255, 255, 0.7), transparent 34rem),
    #e0e1f6;
}

a {
  color: inherit;
}

.product-page-shell {
  min-height: 100vh;
  padding: 1.25rem;
}

.product-page-header,
.product-page-main,
.product-page-footer {
  width: min(1080px, 100%);
  margin: 0 auto;
}

.product-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.5rem 0 2rem;
}

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  text-decoration: none;
}

.product-brand img {
  width: 3.5rem;
  height: 3.5rem;
  object-fit: contain;
}

.product-page-nav {
  display: flex;
  gap: 1rem;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-page-nav a,
.product-breadcrumb a {
  text-decoration-thickness: 0.12em;
  text-underline-offset: 0.2em;
}

.product-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1rem;
  color: rgba(18, 17, 19, 0.68);
  font-size: 0.85rem;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  overflow: hidden;
  border: 1px solid rgba(18, 13, 49, 0.12);
  border-radius: 2rem;
  background: #fff;
  box-shadow: 0 1.5rem 3rem rgba(18, 13, 49, 0.13);
}

.product-image {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 5vw, 4.5rem);
}

.product-kicker {
  margin: 0 0 0.75rem;
  color: #d90f0f;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-title {
  margin: 0;
  font-size: clamp(2.25rem, 5vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.product-description {
  max-width: 34rem;
  margin: 1.5rem 0 0;
  color: rgba(18, 17, 19, 0.76);
  font-size: 1.1rem;
  line-height: 1.65;
}

.product-price-block {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin: 2rem 0 0.35rem;
}

.product-price {
  font-size: 2rem;
  font-weight: 900;
}

.product-price-label {
  color: rgba(18, 17, 19, 0.58);
  font-size: 0.85rem;
}

.product-note,
.product-delivery {
  margin: 0.35rem 0;
  color: rgba(18, 17, 19, 0.62);
  font-size: 0.85rem;
  line-height: 1.5;
}

.product-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 1.75rem;
  padding: 0.95rem 1.5rem;
  border-radius: 999px;
  background: #ff1f1f;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 0.75rem 1.5rem rgba(255, 31, 31, 0.2);
}

.product-order-button:hover {
  background: #d90f0f;
}

.product-supporting-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1rem 0 3rem;
}

.product-supporting-card {
  padding: 1.25rem;
  border: 1px solid rgba(18, 13, 49, 0.1);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.72);
}

.product-supporting-card h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.product-supporting-card p {
  margin: 0;
  color: rgba(18, 17, 19, 0.68);
  font-size: 0.88rem;
  line-height: 1.55;
}

.product-page-footer {
  padding: 1.25rem 0 0.5rem;
  border-top: 1px solid rgba(18, 13, 49, 0.14);
  color: rgba(18, 17, 19, 0.62);
  font-size: 0.8rem;
  line-height: 1.6;
}

@media (max-width: 760px) {
  .product-page-shell {
    padding: 0.75rem;
  }

  .product-page-header {
    align-items: flex-start;
    padding-bottom: 1.25rem;
  }

  .product-brand span {
    max-width: 9rem;
    line-height: 1.1;
  }

  .product-page-nav {
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  .product-card {
    grid-template-columns: 1fr;
    border-radius: 1.5rem;
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 1;
  }

  .product-copy {
    padding: 2rem 1.5rem 2.25rem;
  }

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