
.offer-modal-content {
  border-radius: 15px;
  border: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

.offer-modal-content .modal-header {
  background: linear-gradient(90deg, #d4af37, #f1e3a0);
  color: #1a150a;
  border: none;
}

.offer-modal-content .modal-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  text-transform: capitalize;
}

.offer-modal-content .modal-body {
  background: #fffdf8;
  padding: 1.5rem;
}


.offer-modal-content label {
  color: #1a150a;
  font-weight: 600;
  font-size: 0.9rem;
}

.offer-modal-content input.form-control {
  background: #fff;
  color: #111;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.9rem;
}

.offer-modal-content input.form-control::placeholder {
  color: #777;
}


.offer-img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

.offer-name {
  font-weight: 600;
  font-size: 1rem;
  color: #111;
}


.offer-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: #8b6b1f; 
  font-weight: 600;
  margin-top: 4px;
}


.offer-toast {
  position: fixed;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  background: #c5a253;
  color: #fff;
  padding: 12px 24px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 9999;
}


.offer-toast {
  pointer-events: none;
}


.offer-toast.show {
  opacity: 1;
  pointer-events: auto;
}


.offer-toast.show {
  opacity: 1;
}
