/* Checkout Page */
.checkout-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 1rem 1.5rem;
}

.checkout-summary, .checkout-form {
  background-color: #fff;
  padding: 0;
}

.checkout-page h2 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.checkout-page h2.checkout-section-heading {
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.checkout-summary h3 {
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.checkout-items-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.checkout-items-list li {
  padding: 0.5rem 0;
}

.checkout-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
}

.checkout-item-image {
  width: 50px;
  height: 65px;
  object-fit: cover;
  flex-shrink: 0;
}

.checkout-item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}

.checkout-item-meta {
  font-size: 0.875rem;
  color: #666;
}

.checkout-item-side-note {
  display: grid;
  gap: 0.25rem;
  justify-items: end;
  text-align: right;
}

.checkout-item-side-note strong {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.checkout-included-accessories {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid #e0e0e0;
}

.checkout-prueba-note {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000;
}

.checkout-prueba-note h3 {
  font-family: 'Cinzel', serif;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  margin: 0 0 0.5rem;
}

.checkout-prueba-note p {
  margin-bottom: 0.75rem;
}

.checkout-submit-help {
  max-width: 18rem;
  font-size: 0.9rem;
  line-height: 1.4;
}

.checkout-submit-help a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.checkout-form .form-actions {
  align-items: center;
  flex-wrap: wrap;
}

.checkout-totals {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #000;
}

.checkout-form .form-group {
  margin-bottom: 1rem;
}

.checkout-form .form-help {
  padding: 1rem 0;
  color: #666;
}

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

  .checkout-summary {
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #000;
  }
}
