.custom-cart-modal .modal-dialog {
  max-height: 90vh;
  margin: 1.75rem auto;
}

.custom-cart-modal .modal-content {
  background-color: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.16);
  max-height: 90vh;
  display: flex;
  flex-direction: column;
}

.custom-cart-modal .modal-body {
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  flex: 1 1 auto;
}

.cart-title-accent {
  display: inline-block;
  width: 4px;
  height: 18px;
  background-color: #E15B2D;
  border-radius: 2px;
}

.text-accent-primary {
  color: #E15B2D !important;
}

.btn-accent-primary {
  background-color: #E15B2D;
  color: #FFFFFF;
  border: 1px solid #E15B2D;
  transition: all 0.2s ease;
}

.btn-accent-primary:hover,
.btn-accent-primary:focus {
  background-color: #C8491C;
  border-color: #C8491C;
  color: #FFFFFF;
  box-shadow: 0 0 0 3px rgba(225, 91, 45, 0.25);
}

.btn-accent-primary:active {
  background-color: #A83C14;
  border-color: #A83C14;
  color: #FFFFFF;
}

.cart-item-img-wrapper {
  width: 54px;
  height: 54px;
  overflow: hidden;
  background-color: #F3F4F6;
}

.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-img-placeholder {
  width: 100%;
  height: 100%;
  background-color: #E5E7EB;
}

.cart-qty-control {
  background-color: #F9FAFB;
  border-color: #E5E7EB !important;
}

.custom-cart-toast {
  background-color: #121212 !important;
  border-radius: 8px;
  border-left: 4px solid #E15B2D !important;
}

.toast-accent-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #E15B2D;
}

@media (max-width: 576px) {
  .custom-cart-modal .modal-dialog {
    max-height: 96vh;
    margin: 0.5rem;
  }
  .custom-cart-modal .modal-content {
    max-height: 96vh;
  }
  .cart-item-img-wrapper {
    width: 44px;
    height: 44px;
  }
}