.shop {
  padding: 100px clamp(24px, 6vw, 90px);
  background: var(--navy);
  color: white;
}

.shop-heading,
.product-card {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}

.shop-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 48px;
}

.shop-heading h2 {
  max-width: 760px;
  margin-top: 16px;
  font-size: clamp(42px, 5vw, 72px);
  line-height: 1.05;
}

.shop-heading > p {
  max-width: 390px;
  margin: 0;
  color: #cbd5df;
  line-height: 1.7;
}

.product-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, .95fr);
  overflow: hidden;
  background: white;
  color: var(--ink);
  box-shadow: 0 28px 80px #0005;
}

.product-image {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #edf3f8;
}

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

.shipping {
  position: absolute;
  top: 24px;
  left: 24px;
  padding: 10px 14px;
  border-radius: 3px;
  background: var(--copper);
  color: var(--navy);
  box-shadow: 0 8px 20px #0b1d3233;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
}

.product-details {
  padding: clamp(38px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-kicker {
  color: #50718f;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .13em;
}

.product-details h3 {
  margin: 14px 0 20px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
}

.price-row {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}

.price-row strong {
  color: var(--navy);
  font-family: Oswald, Arial, sans-serif;
  font-size: 48px;
}

.price-row span {
  padding: 8px 11px;
  border-radius: 999px;
  background: #e8f4ec;
  color: #23653b;
  font-size: 13px;
  font-weight: 800;
}

.product-summary {
  margin: 0 0 20px;
  color: var(--muted);
  line-height: 1.7;
}

.product-features {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-left: 26px;
  line-height: 1.5;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #168653;
  font-weight: 900;
}

.product-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.buy-button {
  min-width: 230px;
}

.product-call {
  padding: 12px 2px;
  border-bottom: 2px solid var(--copper);
  font-weight: 800;
}

.product-note {
  margin: 22px 0 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.secure-checkout {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #4d6074;
  font-size: 13px;
  font-weight: 700;
}

.secure-checkout span:first-child {
  color: #168653;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 14px;
}

.contact-email {
  padding: 8px 2px;
  border-bottom: 2px solid var(--navy);
  font-weight: 800;
  text-align: center;
}

footer {
  gap: 18px;
}

footer a:hover {
  color: var(--copper);
}

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

  .product-image {
    min-height: 520px;
  }

  .shop-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .shop-heading > p {
    max-width: 650px;
  }
}

@media (max-width: 560px) {
  .shop {
    padding: 72px 24px;
  }

  .shop-heading {
    margin-bottom: 30px;
  }

  .product-image {
    min-height: 360px;
  }

  .product-details {
    padding: 34px 24px;
  }

  .product-details h3 {
    font-size: 36px;
  }

  .price-row strong {
    font-size: 42px;
  }

  .product-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .product-call {
    text-align: center;
  }
}
