/* ===============================
   CEMENT CLASSIFIEDS – COMMON
================================ */
/* ===============================
   BREADCRUMB
================================ */

.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: none;
  color: #0d6efd;
}

.breadcrumb-item.active {
  color: #6c757d;
}

/* ===============================
   CATEGORY CARDS
================================ */

.category-card {
  cursor: pointer;
  transition: all 0.25s ease;
  border-radius: 10px;
  min-height: 90px;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
  background: #fff7ed; /* light cement orange */
}

.category-card h6 {
  font-size: 15px;
  line-height: 1.4;
}

@media (max-width: 576px) {
  .category-card {
    min-height: 70px;
  }
}


/* ===============================
   SUPPLIER CARDS
================================ */

.supplier-card {
  border-radius: 14px;
  transition: all 0.3s ease;
}

.supplier-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.supplier-card h6 {
  font-size: 1rem;
}

.supplier-card p {
  font-size: 0.9rem;
}

.supplier-card a {
  text-decoration: none;
  color: #0d6efd;
}

.supplier-card a:hover {
  text-decoration: underline;
}

/* ===============================
   ALERT
================================ */

.alert-warning {
  border-radius: 10px;
  font-size: 0.95rem;
}

/* ===============================
   RESPONSIVE ADJUSTMENTS
================================ */

@media (max-width: 768px) {
  .category-card h6 {
    font-size: 0.9rem;
  }

  .icon-box {
    width: 48px;
    height: 48px;
  }

  .icon-box i {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  h2 {
    font-size: 1.4rem;
  }

  h4 {
    font-size: 1.1rem;
  }
}
.supplier-link {
  color: #212529;
  text-decoration: none;
}

.supplier-link:hover {
  color: #f4b400; /* Cement theme accent */
  text-decoration: underline;
}
