.cart-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
}

.cart-card {
  background: white;
  border-radius: 16px;
  padding: 18px;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 18px;
  align-items: center;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
  margin-bottom: 18px;
}

.cart-card img {
  width: 120px;
  height: 100px;
  object-fit: contain;
  background: #f8f8f8;
  border-radius: 12px;
}

.cart-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-controls button {
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 8px;
  background: var(--vino);
  color: white;
  font-weight: bold;
}

.cart-summary {
  background: white;
  padding: 25px;
  border-radius: 16px;
  height: max-content;
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

.btn-whatsapp {
  width: 100%;
  background: #25d366;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 10px;
  font-weight: bold;
  cursor: pointer;
  margin-top: 20px;
}