/* =============================== */
/* 🛒 INDIVIDUAL CART ITEM STYLES */
/* =============================== */

/* Container for cart item list */
.cart-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* 🛍 Individual Cart Item */
.cart-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #444;
  padding: 8px;
  border-radius: 5px;
  color: white;
}

/* 🖼 Cart Item Image */
.cart-item-image {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 5px;
  margin-right: 10px;
}

/* 🏷 Cart Item Text */
.cart-item-text {
  flex: 1;
  font-size: 0.95rem;
}

/* ❌ Delete Button (optional, if used outside the sidebar) */
.cart-delete {
  background: #ff4444;
  color: white;
  border: none;
  font-size: 16px;
  padding: 5px 10px;
  cursor: pointer;
  border-radius: 5px;
  transition: background 0.3s;
}

.cart-delete:hover {
  background: #cc0000;
}

/* ✅ Utility: Adjust width in scrollable or wrapped areas */
.cart-item-wrapper {
  width: 100%;
  max-width: 100%;
}
