@import './main.css';
@import './shop.css';

.checkout-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.checkout-summary-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h, 72px) + 1.5rem);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .checkout-summary-box {
    position: static;
    order: -1; /* Resumen arriba en mobile */
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .checkout-topbar {
    margin-bottom: 1.25rem;
  }
  .checkout-summary-box {
    padding: 1.1rem 1.25rem;
    border-radius: var(--radius-sm);
  }
}