.checkout-page {
  padding: 120px 0 80px;
  min-height: 70vh;
}

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

.checkout-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
}

.checkout-card h1 {
  font-size: 1.75rem;
  margin-bottom: 8px;
}

.checkout-card h2 {
  font-size: 1.125rem;
  margin-bottom: 20px;
}

.checkout-product {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  background: rgba(0, 212, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.12);
  margin-bottom: 24px;
}

.checkout-product img {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  object-fit: cover;
}

.checkout-price {
  font-size: 1.75rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--accent), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.checkout-form .form-group {
  margin-bottom: 18px;
}

.checkout-form label {
  display: block;
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.checkout-form input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-family: inherit;
}

.checkout-form input:focus {
  outline: none;
  border-color: var(--accent);
}

.checkout-note {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 16px 0;
  line-height: 1.6;
}

#payoneerWidget {
  min-height: 120px;
  margin-top: 16px;
}

.checkout-alt {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.checkout-success {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(16, 185, 129, 0.15);
  color: #10b981;
  font-size: 2rem;
  line-height: 64px;
  margin: 0 auto 20px;
}

.order-ref {
  color: var(--text-secondary);
  margin: 12px 0 24px;
}

.checkout-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

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