@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600&family=Playfair+Display:wght@700&display=swap');

body {
  background-color: #FDFCF8;
  color: #1A1A1A;
  font-family: 'Montserrat', sans-serif;
  scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6, .h2-style, .h6-style {
  font-family: 'Playfair Display', serif;
}

/* Header Rule: No fixed position */
header {
  position: relative;
  background: #FDFCF8;
  padding: 1.5rem 0;
}

.text-emerald { color: #004D40; }
.btn-emerald {
  background-color: #004D40;
  color: #FFFFFF;
  border: none;
  transition: all 0.3s ease-in-out;
}
.btn-emerald:hover {
  background-color: #00332b;
  color: #FFFFFF;
  transform: translateY(-2px);
}

.modal-content {
  background-color: #FDFCF8;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.modal-body {
  overflow-y: auto;
  padding: 2rem;
  scrollbar-width: thin;
  scrollbar-color: #C5A059 transparent;
}

.form-control:focus {
  border-color: #C5A059;
  box-shadow: 0 0 0 0.25rem rgba(197, 160, 89, 0.25);
}

[data-cart-indicator] {
  background-color: #C5A059;
  color: #1A1A1A;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 2px 6px;
  border-radius: 50%;
  vertical-align: top;
  margin-left: -5px;
}

.ri-delete-bin-line {
  font-size: 1.2rem;
  transition: color 0.3s;
}

.ri-delete-bin-line:hover {
  color: #C5A059 !important;
}

@media (max-width: 768px) {
  .modal-body {
    padding: 1rem;
  }
}