/* cart-styles.css - Honda JDM Imports Cart & Purchase Styles
 * Generated by patch4.py — 2026-04-15
 */

/* Cart Badge */
.cart-badge, #cart-badge, .cart-count, #cart-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  background: #c41e1e;
  border-radius: 50%;
  position: relative;
  top: -8px;
  right: -2px;
}

/* Cart Items */
.cart-item {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 12px;
  margin-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: box-shadow 0.2s;
}
.cart-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Deposit Display */
.deposit-amount, #deposit-amount {
  font-size: 1.4em;
  font-weight: 700;
  color: #c41e1e;
}

/* Buy Now Button Feedback */
.buy-now-btn.btn-success,
.btn-buy-now.btn-success,
[data-action="buy-now"].btn-success {
  background-color: #28a745 !important;
  border-color: #28a745 !important;
  color: #fff !important;
}

/* Form Validation */
.is-invalid {
  border-color: #dc3545 !important;
  box-shadow: 0 0 0 0.2rem rgba(220,53,69,.25) !important;
}

/* Cart Summary */
.cart-summary {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 20px;
}

/* Purchase Form */
.purchase-form label, #purchase-form label, #checkout-form label {
  font-weight: 600;
  margin-bottom: 4px;
}

/* Agreement Generate Button */
.btn-generate-agreement, #generate-agreement {
  background: #c41e1e;
  color: #fff;
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-generate-agreement:hover, #generate-agreement:hover {
  background: #a01818;
}
