
/* ================= PAGE ================= */
.dairy-list-page {
  background: #f8fbff;
}

/* ================= SEARCH ================= */
.search-box {
  display: flex;
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
}

/* Desktop size */
.desktop-box {
  width: 300px;
}

/* Mobile full width */
.mobile-box {
  width: 100%;
}

.search-box input {
  border: none;
  padding: 10px 15px;
  flex: 1;
  outline: none;
}

.search-box button {
  border: none;
  background: #1976d2;
  color: #fff;
  padding: 0 15px;
}

/* ================= FILTER ================= */
.filter-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.filter-section {
  background: #ffffff;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.form-select {
  border-radius: 8px;
  padding: 8px;
}

.form-select:focus {
  border-color: #0d6efd;
  box-shadow: none;
}
/* Alphabet */
.alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}

.alphabet a {
  text-decoration: none;
  font-size: 12px;
  padding: 5px 8px;
  border-radius: 4px;
  background: #e3f2fd;
  color: #0d47a1;
}

.alphabet a:hover {
  background: #1976d2;
  color: #fff;
}

/* REMOVE GREY BACKGROUND */
.doodh-breadcrumb {
  background: transparent !important;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

/* ================= BREADCRUMB ================= */
.breadcrumb {
  background: transparent !important;
}

/* LINK STYLE */
.doodh-breadcrumb .breadcrumb-item a {
  color: #1976d2;
  text-decoration: none;
  font-weight: 500;
}

/* HOVER */
.doodh-breadcrumb .breadcrumb-item a:hover {
  text-decoration: underline;
}

/* ACTIVE TEXT */
.doodh-breadcrumb .breadcrumb-item.active {
  color: #555;
}

/* CUSTOM SEPARATOR */
.doodh-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #999;
  padding: 0 6px;
}

/* ================= CARDS ================= */
.dairy-list-card {
  display: block;
  background: #fff;
  padding: 15px;
  border-radius: 10px;
  text-decoration: none;
  color: #333;
  box-shadow: 0 5px 12px rgba(0,0,0,0.07);
  transition: 0.3s;
}

.dairy-list-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

.dairy-list-card h6 {
  color: #0d47a1;
}

.dairy-list-card span {
  color: #1976d2;
}

/* ================= PAGINATION ================= */
.pagination .active .page-link {
  background: #1976d2;
  border-color: #1976d2;
}

/* ================= RESPONSIVE ================= */
.mobile-search {
  display: none;
}

@media (max-width: 991px) {

  .desktop-search {
    display: none;
  }

  .mobile-search {
    display: block;
  }

  .desktop-only {
    display: none;
  }
}