/* LAVI v1.11 — desktop single-product alignment
   Keeps the mobile layout unchanged. */
@media (min-width: 901px) {
  .product-detail.section {
    padding-top: 42px;
    padding-bottom: 74px;
  }

  .product-detail-grid {
    grid-template-columns: minmax(0, 1.04fr) minmax(390px, .96fr);
    gap: clamp(42px, 5vw, 72px);
    align-items: start;
  }

  .product-stage {
    height: clamp(500px, 60vh, 590px);
    align-self: start;
  }

  .product-stage.has-image img {
    object-position: center top;
  }

  .product-copy {
    align-self: start;
    max-width: 560px;
    padding-top: 2px;
  }

  .product-copy .eyebrow {
    margin-top: 0;
    margin-bottom: 10px;
  }

  .product-copy h1 {
    font-size: clamp(40px, 4.2vw, 62px);
    line-height: 1.24;
    margin: 0 0 14px;
    text-wrap: balance;
  }

  .product-copy .lead {
    font-size: 18px;
    line-height: 1.82;
    margin: 0 0 10px;
  }

  .product-copy > p:not(.lead) {
    font-size: 15px;
    line-height: 1.95;
    margin-top: 0;
  }

  .product-copy .specs {
    margin: 22px 0;
  }

  .product-copy .specs div {
    padding: 12px 0;
  }

  .product-copy .hero-actions {
    margin-top: 22px;
  }
}

/* Short laptop screens receive a slightly tighter composition. */
@media (min-width: 901px) and (max-height: 800px) {
  .product-detail.section {
    padding-top: 28px;
    padding-bottom: 56px;
  }

  .product-stage {
    height: clamp(470px, 64vh, 530px);
  }

  .product-copy h1 {
    font-size: clamp(38px, 3.9vw, 56px);
  }
}
