body {
  font-family: "Poppins", sans-serif;
}
.cart-panel {
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
}
.cart-panel.open {
  transform: translateX(0);
}
.overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease-in-out;
}
.overlay.open {
  opacity: 1;
  visibility: visible;
}
.tour-card {
  position: relative;
  border: 1px solid #e5e7eb;
  background: linear-gradient(145deg, #ffffff 0%, #f9fafb 100%);
}
.tour-card:hover {
  border-color: #C89B52;
  box-shadow: 0 25px 50px -12px rgba(200, 155, 82, 0.25), 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}
.tour-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(200, 155, 82, 0.1) 0%, rgba(200, 155, 82, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  border-radius: inherit;
}
.tour-card:hover::before {
  opacity: 1;
}
.tour-image {
  height: 160px;
  object-fit: cover;
  width: 100%;
  transition: transform 0.5s ease;
}
.tour-card:hover .tour-image {
  transform: scale(1.1);
}

/* Text truncation utilities */
.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Button enhancements */
.tour-card button {
  transition: all 0.2s ease;
}

.tour-card button:hover {
  transform: translateY(-1px);
}
.toast {
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
}
.toast-visible {
  visibility: visible;
  opacity: 1;
}
