#cart-items { margin-top: 10px; }

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 10px 0;
  border-bottom: 1px solid rgba(247,211,122,.16);
}

.cart-item-name { flex: 2; }

.cart-item-qty {
  flex: 0 0 110px;
  display: flex;
  align-items: center;
  gap: 4px;
}

.cart-item-qty button {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  border: 1px solid rgba(247,211,122,.18);

  background: linear-gradient(180deg, rgba(36,24,18,.95), rgba(18,12,16,.92));
  color: #f1eadc;

  cursor: pointer;

  box-shadow:
    0 8px 18px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.06);
}

.cart-item-qty button:hover {
  filter: brightness(1.06);
  border-color: rgba(247,211,122,.32);
}

.cart-item-qty span {
  min-width: 24px;
  text-align: center;
  color: #f1eadc;
  font-weight: 700;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.cart-item-price {
  flex: 0 0 90px;
  text-align: right;
  font-weight: 700;
  color: #f7d37a;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.cart-item-remove {
  flex: 0 0 60px;
  text-align: right;
}

.cart-item-remove button {
  border: 1px solid rgba(255,255,255,.14);

  background: linear-gradient(180deg, #ff8c8c, #9f1d1d);
  color: #2b0a0a;

  border-radius: 999px;
  padding: 4px 8px;
  cursor: pointer;

  box-shadow:
    0 10px 22px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.10);

  font-weight: 800;
}

.cart-item-remove button:hover {
  filter: brightness(1.06);
}

/* ===== ÖSSZEG + CTA ===== */

#cart-summary {
  margin-top: 10px;
  font-weight: 700;
  color: #f1eadc;
}

#cart-summary button {
  margin-top: 8px;
  padding: 8px 14px;

  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);

  background: linear-gradient(180deg, #f7d37a, #b8892e);
  color: #2b160c;

  cursor: pointer;
  font-weight: 800;

  box-shadow:
    0 12px 26px rgba(0,0,0,.35),
    inset 0 0 0 1px rgba(255,255,255,.10);
}

#cart-summary button:hover {
  filter: brightness(1.06);
}

/* ===== CHECKOUT PANEL ===== */

.checkout {
  margin-top: 16px;
  padding: 12px;

  border-radius: 14px;

  background: linear-gradient(180deg, rgba(40,22,18,.92), rgba(22,14,20,.90));
  border: 1px solid rgba(247,211,122,.18);

  box-shadow:
    0 18px 50px rgba(0,0,0,.55),
    inset 0 0 0 1px rgba(255,255,255,.04);
}

.checkout.hidden { display: none; }

#checkout-message { margin-top: 8px; }
