body {
  background-color: #fdfbf7;
  color: #2c241e;
  scroll-behavior: smooth;
}

.modal-content {
  background-color: #fdfbf7;
  border: none;
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 20px 20px;
}

.modal-header {
  border-bottom: 1px solid #e8e1d5;
  background: #e8e1d5;
  color: #4a3f35;
}

.btn-primary {
  background-color: #8b4513 !important;
  border-color: #8b4513 !important;
  color: #ffffff !important;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.btn-primary:hover {
  background-color: #5d2e0d !important;
  border-color: #5d2e0d !important;
}

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

.shop-toast {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #556b2f;
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 4px;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  animation: slideIn 0.4s ease forwards;
}

@keyframes slideIn {
  from { transform: translateY(100px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.fade-out {
  opacity: 0;
  transition: opacity 0.5s ease;
}

.form-control, .form-select {
  border: 1px solid #e8e1d5;
  border-radius: 4px;
  background-color: #ffffff;
}

.form-control:focus {
  border-color: #556b2f;
  box-shadow: 0 0 0 0.25rem rgba(85, 107, 47, 0.1);
}

@media (max-width: 576px) {
  .modal-dialog {
    margin: 0.5rem;
  }
  .modal-content {
    max-height: 95vh;
  }
}