/* Ensure full height layout */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive typography */
@media (max-width: 576px) {
  body {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 1.75rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }
}

/* Heading styles */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #111;
  margin-bottom: 0.5rem;
}

/* Paragraph spacing */
p {
  margin-bottom: 1rem;
}

/* Components using accent font */
.btn,
.badge,
.card-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
}

/* Push footer to bottom */
.main-content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

/* Hover effects */
.hover-shadow:hover {
  transition: 0.3s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border-color: #0d6efd; /* Bootstrap Primary */
}

.hover-glow:hover {
  box-shadow: 0 0 15px rgba(0, 123, 255, 0.4);
  transform: translateY(-5px);
  transition: all 0.3s ease;
}

/* Hide scroll bar for horizontal category scroll */
#categoriesScroller::-webkit-scrollbar {
  display: none;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-img-top {
  border-radius: 0 !important;
}

.card.hover-effect {
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card.hover-effect:hover {
  transform: translateY(-4px) scale(1.01);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
  border-color: #0d6efd; /* Subtle highlight on hover */
}

.pagination .page-link {
  transition: background-color 0.2s ease, color 0.2s ease;
}

.pagination .page-item.active .page-link {
  background-color: #0d6efd;
  border-color: #0d6efd;
  color: #fff;
}

.pagination .page-link:hover {
  background-color: #e9f1ff;
  color: #0d6efd;
}

.search-header {
  background-color: #f8f9fa;
  padding: 8px 12px;
  border-radius: 6px;
}

.search-summary strong {
  color: #212529;
}

.sort-dropdown {
  min-width: 160px;
  background-color: #fff;
  border: 1px solid #ced4da;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.sort-dropdown:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 0 0.15rem rgba(13, 110, 253, 0.25);
}

.wrapper {
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
.content {
  flex: 1;
}

.container {
  flex: 1;
}

@media (max-width: 768px) {
  .search-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .sort-dropdown {
    width: 100%;
  }
}




