/* Common Page Title Styles (Extracted from style-products.css) */

/* ==============================================
   Page Title (Default / Category Page)
   ============================================== */
.page-title:not(.detail-banner) {
  position: relative;
  padding: 120px 0 100px;
  background-color: #f4f5f8;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-image: url(../../images/loading_bg.webp);
  /* Default BG */
}

.page-title:not(.detail-banner)::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  /* Overlay */
}

.page-title:not(.detail-banner) .auto-container {
  position: relative;
  z-index: 1;
}

.page-title:not(.detail-banner) h1 {
  color: #fff;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 15px;
}

.page-title:not(.detail-banner) .bread-crumb li,
.page-title:not(.detail-banner) .bread-crumb li a {
  color: #ddd;
  transition: all 0.3s ease;
}

.page-title:not(.detail-banner) .bread-crumb li:last-child {
  color: #fff;
}

.page-title:not(.detail-banner) .bread-crumb li a:hover {
  color: #fff;
}

/* ==============================================
   Breadcrumbs
   ============================================== */
.bread-crumb {
  padding: 0;
  margin: 0;
  list-style: none;
  justify-content: center;
  display: flex;
}

.bread-crumb li {
  display: inline-block;
  font-size: 18px;
  color: #ddd;
  /* Default light for dark bg */
  font-weight: 500;
}

/* Override for light backgrounds (Category page) */
.page-title:not(.detail-banner) .bread-crumb li {
  color: #666;
  font-size: 16px;
}

.bread-crumb li a {
  color: inherit;
  transition: color 0.3s ease;
}

.bread-crumb li a:hover {
  color: #fff;
}

.page-title:not(.detail-banner) .bread-crumb li a:hover {
  color: #337ab7;
}
