/* ===== Base ===== */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    color: #333;
}

/* ===== Breadcrumb ===== */
.breadcrumb-bar {
    font-size: 14px;
    color: #6b6b6b;
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: #8b5e34;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: color 0.2s ease;
}

.breadcrumb-link i {
    font-size: 13px;
}

.breadcrumb-link:hover {
    color: #c47a2c;
    text-decoration: underline;
}

.breadcrumb-current {
    font-weight: 600;
    color: #2c2c2c;
}


/* ===== Page Header ===== */
.directory-header {
    background: linear-gradient(90deg, #fbf3ea, #ffffff);
    border-radius: 12px;
    padding: 28px 24px;
    margin-bottom: 28px;
}

.directory-title {
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 22px;
}

/* ===== Search Bar ===== */
.directory-search {
    background: #fff;
    border-radius: 40px;
    padding: 12px 18px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
}

.directory-search input {
    border: none;
    outline: none;
    flex: 1;
    font-size: 15px;
}

.directory-search button {
    background: #e68a1f;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 10px 26px;
    font-size: 14px;
}

/* ===== Factory Card ===== */
.cement-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.cement-card:hover {
   transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
}

.cement-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.cement-card-body {
    padding: 16px 18px 18px;
}

.cement-name {
     font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1f2937;
}

.cement-info {
     font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.icon-highlight {
    color: #e68a1f;
    margin-right: 6px;
}

/* ===== Units ===== */
.unit-row {
     display: flex;
    justify-content: space-between;
    margin-top: 10px;
    font-size: 13px;
    color: #444;
}

.unit-row span {
    background: #f7efe6;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 600;
}

.unit-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #5a3e2b;
    text-decoration: none;
    padding: 6px 10px;
    border-radius: 6px;
    background: #f6efe6;
    transition: all 0.2s ease;
}

.unit-link i {
    font-size: 14px;
    color: #c47a2c;
}

.unit-link:hover {
    background: #e9ddcf;
    color: #000;
    text-decoration: none;
}


/* ===== Button ===== */
.details-btn {
   display: inline-block;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 20px;
    background: #c47a2c;
    color: #fff;
    text-decoration: none;
}

.details-btn:hover {
    background: #a9641f;
    color: #fff;
}

/* ===== Pagination ===== */
.pagination .page-link {
    color: #444;
}

.pagination .active .page-link {
    background-color: #e68a1f;
    border-color: #e68a1f;
}

/* Filters */
.filter-box {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.search-input {
  position: relative;
}

.search-input i {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #999;
}

.search-input input {
  padding-left: 40px;
}

.btn-search {
  background: #e4874b;
  color: #fff;
  font-weight: 600;
  height: 38px;           /* Same as input/select */
  padding: 0 18px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-search:hover {
  background: #cf6f36;
}