/* ============================================================
   cart.css - Shopping Cart Styles
   ============================================================ */
.cart-badge {
  display: none;
  background: #c0392b;
  color: #fff;
  border-radius: 50%;
  padding: 2px 7px;
  font-size: 0.7rem;
  font-weight: 700;
  position: relative;
  top: -8px;
  margin-left: 3px;
}
.cart-section {
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 25px;
}
.cart-section h3 {
  color: #fff;
  margin-bottom: 15px;
}
.cart-item {
  display: flex;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
}
.cart-item:last-child { border-bottom: none; }
.cart-item-info {
  flex: 1;
  color: #ccc;
}
.cart-item-info strong { color: #fff; }
.cart-item-price {
  color: #c0392b;
  font-weight: 700;
  font-size: 1.05rem;
}
.cart-remove-btn {
  background: none;
  border: 1px solid #555;
  color: #999;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-left: 12px;
}
.cart-remove-btn:hover {
  border-color: #c0392b;
  color: #c0392b;
}
.cart-total {
  text-align: right;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  padding-top: 12px;
  margin-top: 8px;
  border-top: 2px solid #c0392b;
}
.cart-empty-msg {
  color: #999;
  text-align: center;
  padding: 30px;
}
#deposit-display {
  display: none;
  background: #1a2e1a;
  border: 1px solid #27ae60;
  border-radius: 6px;
  padding: 12px 18px;
  color: #27ae60;
  font-weight: 700;
  font-size: 1.05rem;
  margin: 15px 0;
  text-align: center;
}
#vehicle-summary-card {
  display: none;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 18px;
  margin-bottom: 20px;
  overflow: hidden;
}
