* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #1f2933;
  background: #eef2f3;
}

.page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.product {
  width: min(920px, 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid #d6dee3;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
}

.product-media {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: #ffffff;
  background:
    linear-gradient(rgba(23, 35, 43, 0.2), rgba(23, 35, 43, 0.2)),
    linear-gradient(135deg, #0f766e, #334155 55%, #111827);
}

.product-media span {
  padding: 16px 22px;
  border: 2px solid rgba(255, 255, 255, 0.8);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
}

.product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 48px;
}

.eyebrow,
.description,
.status {
  margin: 0;
  color: #52616b;
}

h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.1;
  letter-spacing: 0;
}

.price {
  margin: 8px 0;
  font-size: 32px;
  font-weight: 700;
}

button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 6px;
  color: #ffffff;
  background: #009ee3;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

button:disabled {
  cursor: not-allowed;
  opacity: 0.7;
}

.status {
  min-height: 22px;
  font-size: 14px;
}

.result {
  width: min(560px, 100%);
  padding: 40px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(16, 24, 40, 0.12);
}

.result h1 {
  font-size: 30px;
}

.result a {
  color: #007eb5;
  font-weight: 700;
}

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

  .product-media {
    min-height: 220px;
  }

  .product-info {
    padding: 28px;
  }

  h1 {
    font-size: 30px;
  }
}
