/* ######  Breadcrumb ###### */

/* Container */
.woocommerce-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 25px;
  font-size: 1.4rem !important;
}

/* Prefix */
.woocommerce-breadcrumb .breadcrumb-prefix {
  font-weight: 600;
  margin-right: 10px;
  color: #222;
}

/* Links als Pills */
.woocommerce-breadcrumb a {
  background: #f5f5f5;
  padding: 6px 12px;
  border-radius: 20px;
  color: #007fe0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce-breadcrumb a:hover {
  background: #0da0c5;
  color: #fff;
}

/* Auch letzter Crumb als Link */
.woocommerce-breadcrumb .breadcrumb_last a {
  background: #e0e0e0;
  font-weight: 500;
  color: #333;
}




/* Breadcrumb sticky oben */
/* Basis-Styling für Sticky Breadcrumb 
.woocommerce-breadcrumb {
  will-change: top, left;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
  padding: 8px 14px;
  border-radius: 6px;
}
*/

