.cart-modal-content {
  max-width: 500px;
}

.cart-items-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
  max-height: 400px;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 12px;
}

.cart-item img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.cart-item-info {
  flex: 1;
}

.cart-item-name {
  font-weight: 600;
  font-size: 14px;
}

.cart-item-price {
  color: var(--accent-orange);
  font-size: 13px;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 6px;
}

.cart-item-controls button {
  width: 26px;
  height: 26px;
  border: 1px solid #ccc;
  background: #fff;
  border-radius: 4px;
  cursor: pointer;
}

.cart-item-remove {
  background: #ffe5e5 !important;
  color: var(--accent-orange);
  border: none;
  border-radius: 4px;
  padding: 6px 10px;
  cursor: pointer;
  font-size: 12px;
}

.cart-summary {
  border-top: 2px solid var(--accent-orange-bright);
  padding-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cart-summary p {
  font-size: 18px;
  font-weight: bold;
}

.empty-cart-text {
  color: #888;
  text-align: center;
  padding: 20px 0;
}

/* ===== BUYURTMALARIM ===== */
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 12px;
  max-height: 500px;
  overflow-y: auto;
}

.order-card {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 14px;
}

.order-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.order-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
}

.order-status-text {
  font-weight: 600;
  font-size: 14px;
}

.order-card-items {
  font-size: 14px;
  color: #444;
  margin-bottom: 4px;
}

.order-card-total {
  font-weight: bold;
  color: var(--accent-orange);
  margin-bottom: 8px;
}

.cancel-timer {
  display: block;
  font-size: 12px;
  color: #888;
  margin-bottom: 8px;
}

.cancel-order-btn {
  background: #ffe5e5;
  color: var(--accent-orange);
  border: none;
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}

.cancel-order-btn:hover {
  background: #ffd0d0;
}
