.cart-wrapper {
  padding: 6rem 5% 4rem;
  min-height: 80dvh;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}
.cart-left {
  flex: 1;
  min-width: 300px;
}
.cart-right {
  width: 380px;
  background: var(--cream);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-ambient);
  height: fit-content;
  border: 1px solid rgba(44, 36, 32, 0.04);
}
.cart-title {
  font-size: 2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(44, 36, 32, 0.06);
}
.cart-item {
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 1.25rem;
  border-radius: var(--radius-lg);
  margin-bottom: 1rem;
  box-shadow: var(--shadow-soft);
  animation: slideInLeft 0.4s cubic-bezier(0.32, 0.72, 0, 1);
  gap: 1rem;
  border: 1px solid rgba(44, 36, 32, 0.04);
}
.cart-item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: var(--radius-md);
}
.cart-item-info {
  flex: 1;
}
.cart-item-info h4 {
  font-weight: 600;
  font-size: 0.95rem;
}
.item-price {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.25rem;
  font-size: 0.9rem;
}
.qty-controls {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  width: fit-content;
  margin-top: 0.5rem;
  border: 1px solid rgba(44, 36, 32, 0.06);
}
.qty-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--espresso-muted);
  transition: var(--transition-fast);
}
.qty-btn:hover {
  color: var(--espresso);
}
.qty-btn:active {
  transform: scale(0.9);
}
.qty-display {
  font-weight: 600;
  width: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
}
.cart-summary {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(44, 36, 32, 0.06);
  padding-top: 1.25rem;
}
.size-selection select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(44, 36, 32, 0.08);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  outline: none;
  transition: var(--transition-fast);
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--espresso);
  background: var(--white);
}
.size-selection select:focus {
  border-color: rgba(44, 36, 32, 0.2);
}
.required {
  color: var(--accent);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: var(--espresso-muted);
}
.summary-row.total {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  border-top: 1px solid rgba(44, 36, 32, 0.06);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}
@media (max-width: 768px) {
  .cart-wrapper { padding: 5rem 5% 3rem; }
  .cart-right { width: 100%; }
}
