/* Products Section */
h1,h2,h3,h4,h5,h6 {
  font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
.ready-to-go-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
  overflow: hidden;
}

.ready-to-go-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #3b82f6, #8b5cf6, #10b981);
}

/* Product Card */
.product-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  border-radius: 16px;
  background: white;
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.1), 0 0 0 1px rgba(59, 130, 246, 0.1);
  border-color: #3b82f6;
}

/* Product Image Container */
.product-image-container {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.product-image-container img {
  transition: transform 0.6s ease;
}

.product-card:hover .product-image-container img {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .image-overlay {
  opacity: 1;
}

/* Quick Actions */
.quick-actions {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.8);
  transition: all 0.3s ease;
  z-index: 2;
}

.product-card:hover .quick-actions {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.quick-view {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Star Rating */
.star-rating {
  font-size: 0.9rem;
}

/* Filter Buttons */
.filter-btn {
  border-radius: 50px;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: all 0.3s ease;
}

.filter-btn.active {
  background: linear-gradient(135deg, #3b82f6, #8b5cf6);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.filter-btn:hover:not(.active) {
  background-color: #f1f5f9;
  transform: translateY(-2px);
}

/* Quick View Modal */
.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Admin Button */
.btn-outline-secondary:hover {
  background: linear-gradient(135deg, #6b7280, #4b5563);
  color: white;
  border-color: transparent;
}

/* Product Grid Animation */
.product-item {
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

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

/* Responsive Design */
@media (max-width: 768px) {
  .product-card {
    margin: 0 10px;
  }
  
  .filter-btn {
    margin-bottom: 0.5rem;
  }
}

/* Main image zoom */
.zoom-img {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoom-img:hover {
  transform: scale(1.8);
}

/* Keep zoom inside container */
.product-main-img {
  overflow: hidden;
}

/* Thumbnails */
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
}

.thumb-img:hover {
  border-color: #0d6efd;
}

/* Main image container */
.product-main-img {
  width: 100%;
  overflow: hidden;
}

/* Main image zoom */
.zoom-img {
  transition: transform 0.3s ease;
  cursor: zoom-in;
}

.zoom-img:hover {
  transform: scale(1.6);
}

/* Thumbnail container */
.product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* Thumbnail images */
.thumb-img {
  width: 70px;
  height: 70px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  border: 2px solid transparent;
}

.thumb-img:hover {
  border-color: #0d6efd;
}


/* for custom itinary */
.itinerary-card img {
  height: 220px;
  object-fit: cover;
}

.itinerary-card h5 {
  font-weight: 600;
}
