body {
  font-family:
    "Open Sans", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}

/* ==========================================================
   VARIABLES / BASICS
   ========================================================== */
:root {
  --bt-radius-input-4: 4px;
  --bt-radius-button-7: 7px;
  --bt-radius-contain-12: 12px;

  --bt-accent: #80566d; /* Hauptfarbe */
  --bt-accent-secondary: #c81f79; /* Hauptfarbe secondary */
  --bt-accent-hover: #c81f79; /* Hover */
  --bt-accent-contrast: #ffffff; /* Text auf Accent */
  --bt-accent-link: #e42c8c; /* Link Text */
  --bt-accent-text: #414544; /* Text */

  --bt-border-06: rgba(0, 0, 0, 0.06);
  --bt-border-08: rgba(0, 0, 0, 0.08);
  --bt-border-12: rgba(0, 0, 0, 0.12);
  --bt-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
}

/* =========================================================
   GLOBAL TEXT & LINK BASE STYLES
   Zweck: Einheitliche Grundfarben und Link-Handling
   ========================================================= */

u {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}

/* Grundfarbe für Fließtext */
p {
  color: var(--bt-accent-text);
}

/* ==========================================================
   GLOBAL   ===>   (Buttons, Quantity, allgemeines Woo)
   ========================================================== */

/* Alle Buttons im Shop vereinheitlichen */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce button.single_add_to_cart_button {
  background: var(--bt-accent) !important;
  color: var(--bt-accent-contrast) !important;
  border-radius: var(--bt-radius-4) !important;
  padding: 14.5px 18px !important;
  font-weight: 400 !important;
  text-align: center;

  transition:
    background-color 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;

  box-shadow: var(--bt-shadow);
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce button.single_add_to_cart_button:hover {
  background: var(--bt-accent-hover) !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.16);
}

.woocommerce a.button:active,
.woocommerce button.button:active {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.14);
}

/* Quantity */
.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.woocommerce .quantity input.qty {
  margin-bottom: 10px;
  height: 46px !important;
  border: 1px solid var(--bt-border-08) !important;
  border-radius: var(--bt-radius-4) !important;
  font-weight: 700;
  text-align: center;
}

/* ==========================================================
   Sitewide Themenwelt-Menü
   - natives details/summary
   - eigenes Pfeilsymbol
   - schwebendes Menüpanel
   - Themenwelt-Balken bleibt flach
========================================================== */

.bt-sitewide-themenwelt-menu {
  position: relative;
  flex: 0 0 auto;
}

.bt-sitewide-themenwelt-menu__toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 0;
  padding: 5px 9px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.12);
  color: inherit;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition:
    background-color 0.15s ease,
    border-color 0.15s ease;
}

.bt-sitewide-themenwelt-menu__toggle::-webkit-details-marker {
  display: none;
}

.bt-sitewide-themenwelt-menu__toggle::marker {
  content: "";
}

.bt-sitewide-themenwelt-menu__toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transform-origin: center;
  transition: transform 0.15s ease;
}

.bt-sitewide-themenwelt-menu[open] > .bt-sitewide-themenwelt-menu__toggle {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.7);
}

.bt-sitewide-themenwelt-menu[open] > .bt-sitewide-themenwelt-menu__toggle::after {
  transform: rotate(225deg) translate(-1px, -1px);
}

.bt-sitewide-themenwelt-menu__toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.65);
}

.bt-sitewide-themenwelt-menu__toggle:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

.bt-sitewide-themenwelt-menu__panel {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  z-index: 50;
  width: max-content;
  min-width: 230px;
  max-width: min(320px, calc(100vw - 32px));
  padding: 7px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9px;
  background: #fff;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.16),
    0 2px 7px rgba(0, 0, 0, 0.08);
  color: #222;
}

.bt-sitewide-themenwelt-menu__list {
  display: grid;
  gap: 2px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.bt-sitewide-themenwelt-menu__item {
  margin: 0;
  padding: 0;
}

.bt-sitewide-themenwelt-menu__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px 10px;
  border-radius: 6px;
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.bt-sitewide-themenwelt-menu__link:hover,
.bt-sitewide-themenwelt-menu__link:focus-visible {
  background: rgba(0, 0, 0, 0.06);
  color: inherit;
  text-decoration: none;
  outline: none;
}

.bt-sitewide-themenwelt-menu__link.is-current {
  background: rgba(0, 0, 0, 0.09);
  font-weight: 700;
  pointer-events: none;
}

.bt-sitewide-themenwelt-menu__link.is-current::after {
  content: "✓";
  margin-left: 10px;
  font-size: 12px;
  font-weight: 700;
}
/* ==========================================================
   GLOBAL   ===>   Breadcrumbs
   ========================================================== */

/* Breadcrumb – Grundlayout / Typografie */
.bt-breadcrumbs-wrap.grid-container {
  padding: 40px 0 50px 50px !important;
  font-size: 0.92em;
  color: #767676;
    letter-spacing: 0.035em;

}

/* Woo Breadcrumb selbst */
.bt-breadcrumbs-wrap .woocommerce-breadcrumb {
  color: #767676;
  font-weight: 400;
  line-height: 1.5;
}

/* Verlinkte Breadcrumb-Ebenen bewusst ruhiger als Navigation */
.bt-breadcrumbs-wrap .woocommerce-breadcrumb a {
  color: #767676;
  text-decoration: none;
  font-weight: 400;
  transition: color 0.15s ease;
}

/* Nur beim Hover etwas hervorheben */
.bt-breadcrumbs-wrap .woocommerce-breadcrumb a:hover {
  color: var(--bt-accent);
  text-decoration: none;
}

/* Breadcrumb – Home Icon statt Text */
.bt-breadcrumbs-wrap .woocommerce-breadcrumb a:first-child {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  text-indent: -9999px;
  overflow: hidden;
  vertical-align: middle;
}

.bt-breadcrumbs-wrap .woocommerce-breadcrumb a:first-child::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 14px 14px;

  /* gleiches Icon wie im Hauptmenü */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23767676' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 10L12 4l8 6'/%3E%3Cpath d='M6 10v10h12V10'/%3E%3C/svg%3E");
}

/* ==========================================================
   PATCH 2026-03-26
   Fokus-Styles – global ruhig (SSOT)
   Zweck: Browser-Outline global neutral halten.
   Warum: Aus bt-header.css verschoben – globale Regeln gehören hierher.
   ========================================================== */

/* Global: Browser-Outline nicht roh anzeigen */
:focus {
  outline: none;
}

/* Default: kein globaler harter Fokusrahmen */
:focus-visible {
  outline: none;
}