body {
  font-size: 14px;
  font-family: 'Montserrat', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  text-align: justify;
}
.font-playfair {
  font-family: 'Playfair Display', serif;
}

.page-main-title {
  font-size: 2.25rem;
  text-align: center;
  font-weight: 800;
  line-height: 1.5;
  margin: 0 1.5rem 1rem 1.5rem;
  color: black; /* Fallback color */
  background: linear-gradient(to right, #0a1942, #7589c2);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.addtocart-btn {
  background-color: #0a1942;
  color: white;
  border-color: white;
  margin-top: 1.5rem;    
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
}

@keyframes cart-shake {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(-10deg); }
  50% { transform: rotate(10deg); }
  75% { transform: rotate(-5deg); }
  100% { transform: rotate(0deg); }
}
.shake-cart {
  animation: cart-shake 0.5s ease;
}
.custom-title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #0a1942;
}
.custom-h2 {
  font-weight: bold;
  text-transform: uppercase;
  color: #30416b;
}
.input-search {
  width: 100%;
  background-color: #0a1942;
  color: white;
  border-bottom: 1px solid #f5d57f;
  padding: 0.5rem 0.75rem 0.5rem 2.5rem;
}
.input-search::placeholder {
  color: #d1d5db; /* placeholder-gray-300 */
}

.input-search:focus {
  outline: none;
  border-color: white;
}

.dropdown-search {
  background-color: #f1f4fc;
  color: #0a1942;
  margin-top: 0.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  position: absolute;
  z-index: 50;
  width: 100%;
}

.dropdown-item-wrapper {
  border-bottom: 1px solid #f5d57f;
}

.dropdown-item-wrapper:last-child {
  border-bottom: none;
}

.dropdown-item {
  display: block;
  padding: 0.5rem 1rem;
  transition: background-color 0.2s;
}

.dropdown-item:hover {
  background-color: #0a1942;
  color: white;
}

.available-badge {
  background-color: #d4edda;
  color: #155724;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 500;
  border: 1px solid #c3e6cb;
}
