.wrap {
  max-width: 920px;
  margin: 0 auto;
  padding: 48px 24px 96px;
}

.layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

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

  .wrap {
    padding: 32px 18px 64px;
  }
}

.cover {
  aspect-ratio: 4 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 18px 40px -20px rgba(28, 26, 23, 0.45);
  background: var(--paper-dim);
}

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

.eyebrow {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 12px;
  color: var(--accent);
  margin: 0 0 10px;
}

h1 {
  font-size: 34px;
  margin: 0 0 14px;
  line-height: 1.15;
}

.desc {
  font-size: 16px;
  color: #47433c;
  margin-bottom: 24px;
}

.price {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 28px;
}

.row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-primary {
  background: var(--ink);
  color: var(--paper);
}

.btn-primary:hover { background: #33302a; }
.btn-primary:disabled { background: #b8b2a4; cursor: not-allowed; }

.rates { margin: 8px 0 22px; }

.rate-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 13px 14px;
  margin-bottom: 8px;
  cursor: pointer;
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.rate-option.selected {
  border-color: var(--ink);
  box-shadow: inset 0 0 0 1px var(--ink);
}

.rate-option .carrier { font-weight: 600; font-size: 14px; text-transform: capitalize; }
.rate-option .service { font-size: 12.5px; color: #74705f; }
.rate-option .rprice { font-weight: 600; font-size: 15px; white-space: nowrap; }

.total-line {
  display: flex;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 15px;
  padding: 6px 0;
  border-top: 1px solid var(--line);
  margin-top: 4px;
}

.total-line.grand {
  font-weight: 700;
  font-size: 18px;
  border-top: 2px solid var(--ink);
  padding-top: 12px;
  margin-top: 8px;
}

.turnstile-box {
  margin: 12px 0 18px;
  min-height: 65px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.step-label {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #948d7c;
  margin: 0 0 8px;
}
