/** Shopify CDN: Minification failed

Line 1063:18 Unexpected "{"
Line 1063:27 Expected ":"
Line 1063:34 Unexpected "{"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:bh-anwendung-cta (INDEX:3) */
.bh-anw-cta {
    font-family: 'Raleway', sans-serif;
    text-align: center;
    color: var(--bh-cta-text, #1a1a1a);
  }
  .bh-anw-cta__inner {
    max-width: 640px;
    margin: 0 auto;
  }
  .bh-anw-cta__title {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 14px;
    color: var(--bh-cta-text, #1a1a1a);
  }
  .bh-anw-cta__text {
    font-size: 1.02rem;
    line-height: 1.65;
    margin: 0 0 28px;
    color: var(--bh-cta-text, #1a1a1a);
    opacity: 0.85;
  }
  .bh-anw-cta__btn {
    display: inline-block;
    padding: 14px 32px;
    background: var(--bh-cta-accent, #c8951a);
    color: var(--bh-cta-btn-text, #ffffff);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }
  .bh-anw-cta__btn:hover {
    background: #b08217;
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(200, 149, 26, 0.25);
  }
  @media (max-width: 600px) {
    .bh-anw-cta__title { font-size: 1.4rem; }
    .bh-anw-cta__text { font-size: 0.95rem; }
    .bh-anw-cta__btn { width: 100%; box-sizing: border-box; }
  }
/* END_SECTION:bh-anwendung-cta */

/* START_SECTION:bh-anwendung-faq (INDEX:4) */
.bh-anwendung-faq {
    font-family: 'Raleway', sans-serif;
    background: var(--bh-faq-bg, #faf5ed);
    color: var(--bh-faq-text, #333);
    padding: 70px 20px;
  }
  .bh-anwfaq__inner {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
  }
  .bh-anwfaq__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .bh-anwfaq__eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--bh-faq-accent, #c8951a);
    display: block;
  }
  .bh-anwfaq__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bh-faq-text, #1a1a1a);
    margin: 0 0 14px;
    line-height: 1.25;
  }
  .bh-anwfaq__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 720px;
    margin: 0 auto 36px;
  }
  .bh-anwfaq__list {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .bh-anwfaq__item {
    background: var(--bh-faq-card-bg, #ffffff);
    border: 1px solid #eaddc7;
    border-radius: 10px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.2s ease;
    position: relative;
  }
  .bh-anwfaq__item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--bh-faq-accent, #c8951a);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bh-anwfaq__item:hover {
    box-shadow: 0 6px 18px rgba(200, 149, 26, 0.08);
    border-color: #e2cea5;
  }
  .bh-anwfaq__item[open] {
    box-shadow: 0 8px 24px rgba(200, 149, 26, 0.12);
    border-color: var(--bh-faq-accent, #c8951a);
  }
  .bh-anwfaq__item[open]::before {
    transform: scaleY(1);
  }
  .bh-anwfaq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--bh-faq-text, #1a1a1a);
    list-style: none;
    gap: 16px;
    transition: color 0.2s ease;
    user-select: none;
  }
  .bh-anwfaq__question:hover {
    color: var(--bh-faq-accent, #c8951a);
  }
  .bh-anwfaq__question::-webkit-details-marker,
  .bh-anwfaq__question::marker {
    display: none;
    content: '';
  }
  .bh-anwfaq__question-text {
    flex: 1;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bh-anwfaq__item[open] .bh-anwfaq__question-text {
    color: var(--bh-faq-accent, #c8951a);
  }
  .bh-anwfaq__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    position: relative;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bh-anwfaq__item[open] .bh-anwfaq__icon {
    transform: rotate(135deg);
  }
  .bh-anwfaq__icon-bar {
    position: absolute;
    background: var(--bh-faq-accent, #c8951a);
    border-radius: 2px;
    transition: background 0.3s ease;
  }
  .bh-anwfaq__icon-bar--h {
    width: 100%;
    height: 2px;
    top: 50%;
    left: 0;
    margin-top: -1px;
  }
  .bh-anwfaq__icon-bar--v {
    width: 2px;
    height: 100%;
    left: 50%;
    top: 0;
    margin-left: -1px;
  }
  .bh-anwfaq__answer-wrap {
    overflow: hidden;
    height: 0;
    transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bh-anwfaq__answer {
    padding: 4px 24px 22px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.3s ease 0.05s, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
  }
  .bh-anwfaq__item[open] .bh-anwfaq__answer {
    opacity: 1;
    transform: translateY(0);
  }
  .bh-anwfaq__answer p:first-child { margin-top: 0; }
  .bh-anwfaq__answer p:last-child { margin-bottom: 0; }
  .bh-anwfaq__answer a {
    color: var(--bh-faq-accent, #c8951a);
    text-decoration: underline;
  }
  .bh-anwfaq__answer strong { color: var(--bh-faq-text, #1a1a1a); }
  @media (max-width: 600px) {
    .bh-anwendung-faq { padding: 50px 15px; }
    .bh-anwfaq__title { font-size: 1.5rem; }
    .bh-anwfaq__question { padding: 18px 20px; font-size: 0.95rem; }
    .bh-anwfaq__answer { padding: 4px 20px 18px; }
  }
/* END_SECTION:bh-anwendung-faq */

/* START_SECTION:bh-anwendung-hero (INDEX:5) */
.bh-anw-hero {
    position: relative;
    background-color: var(--bh-anw-hero-bg, #fdfaf3);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--bh-anw-hero-text, #1a1a1a);
    overflow: hidden;
    font-family: 'Raleway', sans-serif;
  }
  .bh-anw-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--bh-anw-hero-overlay, #1a1a1a);
    opacity: var(--bh-anw-hero-overlay-opacity, 0.35);
    pointer-events: none;
  }
  .bh-anw-hero__inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
  }
  .bh-anw-hero__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bh-anw-hero-accent, #c8951a);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 20px;
    margin-bottom: 22px;
  }
  .bh-anw-hero__title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 18px;
    color: var(--bh-anw-hero-text, #1a1a1a);
  }
  .bh-anw-hero__subtitle {
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--bh-anw-hero-text, #1a1a1a);
    opacity: 0.9;
    margin: 0 auto;
    max-width: 720px;
  }
  .bh-anw-hero__subtitle p { margin: 0 0 0.5em; }
  .bh-anw-hero__subtitle p:last-child { margin-bottom: 0; }
  @media (max-width: 768px) {
    .bh-anw-hero__title { font-size: 1.8rem; }
    .bh-anw-hero__subtitle { font-size: 1rem; }
    .bh-anw-hero__badge { font-size: 11px; padding: 5px 12px; margin-bottom: 14px; }
  }
/* END_SECTION:bh-anwendung-hero */

/* START_SECTION:bh-anwendung-produkte (INDEX:6) */
.bh-anwendung-produkte {
    font-family: 'Raleway', sans-serif;
    background: var(--bh-prod-bg, #ffffff);
    color: var(--bh-prod-text, #333);
    padding: 70px 20px;
  }
  .bh-anwprod__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .bh-anwprod__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .bh-anwprod__eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--bh-prod-accent, #c8951a);
    display: block;
  }
  .bh-anwprod__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bh-prod-text, #1a1a1a);
    margin: 0 0 14px;
    line-height: 1.25;
  }
  .bh-anwprod__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 720px;
    margin: 0 auto 40px;
  }
  .bh-anwprod__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 360px));
    gap: 24px;
    text-align: left;
    justify-content: center;
  }
  .bh-anwprod__card {
    background: var(--bh-prod-card-bg, #faf5ed);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eaddc7;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }
  .bh-anwprod__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(200, 149, 26, 0.08);
  }
  .bh-anwprod__image {
    aspect-ratio: 1 / 1;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
  }
  .bh-anwprod__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.25s ease;
  }
  .bh-anwprod__card:hover .bh-anwprod__image img {
    transform: scale(1.03);
  }
  .bh-anwprod__image--placeholder {
    color: #bbb;
    font-size: 14px;
  }
  .bh-anwprod__body {
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }
  .bh-anwprod__tag {
    align-self: flex-start;
    background: #fff;
    color: var(--bh-prod-accent, #c8951a);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid #eaddc7;
  }
  .bh-anwprod__name-link {
    text-decoration: none;
    color: inherit;
  }
  .bh-anwprod__name {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bh-prod-text, #1a1a1a);
    margin: 4px 0 0;
    line-height: 1.3;
    transition: color 0.2s;
  }
  .bh-anwprod__name-link:hover .bh-anwprod__name {
    color: var(--bh-prod-accent, #c8951a);
  }
  .bh-anwprod__desc {
    font-size: 0.9rem;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }
  .bh-anwprod__footer {
    margin-top: auto;
    padding-top: 12px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .bh-anwprod__price {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--bh-prod-text, #1a1a1a);
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    min-height: 1.4em;
  }
  .bh-anwprod__price-prefix {
    font-weight: 500;
    font-size: 0.9rem;
    color: #777;
  }
  .bh-anwprod__price-compare {
    font-size: 0.9rem;
    font-weight: 500;
    color: #999;
    text-decoration: line-through;
  }
  .bh-anwprod__btn {
    background: var(--bh-prod-accent, #c8951a);
    color: #fff;
    text-align: center;
    text-decoration: none;
    padding: 11px 16px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background 0.2s;
  }
  .bh-anwprod__btn:hover {
    background: #b07f10;
  }
  @media (max-width: 600px) {
    .bh-anwendung-produkte { padding: 50px 15px; }
    .bh-anwprod__title { font-size: 1.5rem; }
    .bh-anwprod__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .bh-anwprod__body { padding: 14px 14px 18px; }
  }
/* END_SECTION:bh-anwendung-produkte */

/* START_SECTION:bh-anwendung-routine (INDEX:7) */
.bh-anw-routine {
    background: var(--bh-anw-routine-bg, #fdfaf3);
    color: var(--bh-anw-routine-text, #1a1a1a);
    font-family: 'Raleway', sans-serif;
  }
  .bh-anw-routine__inner {
    max-width: 1100px;
    margin: 0 auto;
  }
  .bh-anw-routine__header {
    text-align: center;
    margin-bottom: 36px;
  }
  .bh-anw-routine__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bh-anw-routine-accent, #c8951a);
    margin-bottom: 10px;
  }
  .bh-anw-routine__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 12px;
    line-height: 1.2;
  }
  .bh-anw-routine__sub {
    font-size: 1.05rem;
    line-height: 1.55;
    margin: 0 auto;
    max-width: 640px;
    opacity: 0.85;
  }
  .bh-anw-routine__sub p { margin: 0; }
  .bh-anw-routine__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
  }
  .bh-anw-routine__col {
    background: var(--bh-anw-routine-card-bg, #ffffff);
    border-radius: 14px;
    padding: 32px 28px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee2c8;
  }
  .bh-anw-routine__col-head {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 22px;
    padding-bottom: 18px;
    border-bottom: 1px solid #f0e7d4;
  }
  .bh-anw-routine__icon {
    width: 56px;
    height: 56px;
    background: #fdfaf3;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 2px solid var(--bh-anw-routine-accent, #c8951a);
  }
  .bh-anw-routine__icon img {
    width: 70%;
    height: 70%;
    object-fit: contain;
  }
  .bh-anw-routine__icon--emoji {
    font-size: 26px;
  }
  .bh-anw-routine__title {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 4px;
    line-height: 1.2;
  }
  .bh-anw-routine__subtitle {
    font-size: 0.9rem;
    color: var(--bh-anw-routine-accent, #c8951a);
    margin: 0;
    font-weight: 600;
  }
  .bh-anw-routine__steps {
    font-size: 1rem;
    line-height: 1.7;
    counter-reset: routine-step;
  }
  .bh-anw-routine__steps ol,
  .bh-anw-routine__steps ul {
    list-style: none !important;
    list-style-type: none !important;
    padding: 0;
    margin: 0;
  }
  .bh-anw-routine__steps li {
    counter-increment: routine-step;
    position: relative;
    padding-left: 42px;
    padding-top: 2px;
    margin-bottom: 14px;
    list-style: none !important;
    min-height: 56px;
  }
  .bh-anw-routine__steps li::marker {
    content: '' !important;
    font-size: 0;
    display: none;
  }
  .bh-anw-routine__steps li:last-child {
    margin-bottom: 0;
  }
  .bh-anw-routine__steps li::before {
    content: counter(routine-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 28px;
    height: 28px;
    background: var(--bh-anw-routine-accent, #c8951a);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
  }
  .bh-anw-routine__tipp {
    margin-top: 28px;
    background: linear-gradient(135deg, #fdfaf3 0%, #faf2dc 100%);
    border: 2px solid var(--bh-anw-routine-accent, #c8951a);
    border-radius: 14px;
    padding: 24px 28px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(200, 149, 26, 0.10);
  }
  .bh-anw-routine__tipp::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 30px;
    width: 60px;
    height: 4px;
    background: var(--bh-anw-routine-accent, #c8951a);
    border-radius: 0 0 4px 4px;
  }
  .bh-anw-routine__tipp-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: #fdfaf3;
    border: 2px solid var(--bh-anw-routine-accent, #c8951a);
    color: var(--bh-anw-routine-accent, #c8951a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 12px rgba(200, 149, 26, 0.15);
  }
  .bh-anw-routine__tipp-body { flex: 1; }
  .bh-anw-routine__tipp-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bh-anw-routine-accent, #c8951a);
    margin-bottom: 4px;
  }
  .bh-anw-routine__tipp-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 0 8px;
    line-height: 1.3;
    color: var(--bh-anw-routine-text, #1a1a1a);
  }
  .bh-anw-routine__tipp-content {
    font-size: 0.98rem;
    line-height: 1.65;
    color: var(--bh-anw-routine-text, #1a1a1a);
  }
  .bh-anw-routine__tipp-content p { margin: 0 0 0.5em; }
  .bh-anw-routine__tipp-content p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) {
    .bh-anw-routine__heading { font-size: 1.5rem; }
    .bh-anw-routine__col { padding: 24px 20px; }
    .bh-anw-routine__icon { width: 48px; height: 48px; }
    .bh-anw-routine__tipp {
      flex-direction: column;
      padding: 20px 22px;
      gap: 14px;
    }
    .bh-anw-routine__tipp-title { font-size: 1.1rem; }
  }
/* END_SECTION:bh-anwendung-routine */

/* START_SECTION:bh-anwendung-text (INDEX:8) */
.bh-anw-text {
    background: var(--bh-anw-text-bg, #ffffff);
    color: var(--bh-anw-text-color, #1a1a1a);
    font-family: 'Raleway', sans-serif;
  }
  .bh-anw-text__container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    gap: 50px;
    align-items: center;
  }
  .bh-anw-text--full .bh-anw-text__container {
    grid-template-columns: 1fr;
    max-width: 760px;
  }
  .bh-anw-text--image-left .bh-anw-text__container {
    grid-template-columns: 1fr 1.3fr;
  }
  .bh-anw-text--image-right .bh-anw-text__container {
    grid-template-columns: 1.3fr 1fr;
  }
  .bh-anw-text--image-right .bh-anw-text__media {
    order: 2;
  }
  .bh-anw-text__media {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  }
  .bh-anw-text__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 4 / 3;
  }
  .bh-anw-text__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bh-anw-text-accent, #c8951a);
    margin-bottom: 12px;
  }
  .bh-anw-text__heading {
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 22px;
    line-height: 1.2;
    color: var(--bh-anw-text-color, #1a1a1a);
  }
  .bh-anw-text__content {
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--bh-anw-text-color, #1a1a1a);
  }
  .bh-anw-text__content p { margin: 0 0 1em; }
  .bh-anw-text__content p:last-child { margin-bottom: 0; }
  .bh-anw-text__content strong { color: var(--bh-anw-text-accent, #c8951a); }
  .bh-anw-text__content a { color: var(--bh-anw-text-accent, #c8951a); }
  @media (max-width: 768px) {
    .bh-anw-text--image-left .bh-anw-text__container,
    .bh-anw-text--image-right .bh-anw-text__container {
      grid-template-columns: 1fr;
      gap: 24px;
    }
    .bh-anw-text--image-right .bh-anw-text__media { order: 0; }
    .bh-anw-text__heading { font-size: 1.5rem; }
    .bh-anw-text__content { font-size: 1rem; line-height: 1.7; }
  }
/* END_SECTION:bh-anwendung-text */

/* START_SECTION:bh-anwendung-tipp (INDEX:9) */
.bh-anw-tipp {
    background: var(--bh-anw-tipp-bg, #ffffff);
    font-family: 'Raleway', sans-serif;
  }
  .bh-anw-tipp__inner {
    max-width: 880px;
    margin: 0 auto;
  }
  .bh-anw-tipp__box {
    position: relative;
    background: var(--bh-anw-tipp-box-bg, #fdfaf3);
    border: 2px solid var(--bh-anw-tipp-accent, #c8951a);
    border-radius: 16px;
    padding: 36px 40px;
    display: flex;
    align-items: flex-start;
    gap: 24px;
    box-shadow: 0 12px 36px rgba(200, 149, 26, 0.10);
  }
  .bh-anw-tipp__box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 30px;
    width: 60px;
    height: 4px;
    background: var(--bh-anw-tipp-accent, #c8951a);
    border-radius: 0 0 4px 4px;
  }
  .bh-anw-tipp__icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: var(--bh-anw-tipp-accent, #c8951a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(200, 149, 26, 0.3);
  }
  .bh-anw-tipp__icon img {
    width: 60%;
    height: 60%;
    object-fit: contain;
  }
  .bh-anw-tipp__icon-emoji {
    font-size: 28px;
  }
  .bh-anw-tipp__body {
    flex: 1;
    color: var(--bh-anw-tipp-text, #1a1a1a);
  }
  .bh-anw-tipp__label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--bh-anw-tipp-accent, #c8951a);
    margin-bottom: 6px;
  }
  .bh-anw-tipp__title {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.25;
  }
  .bh-anw-tipp__content {
    font-size: 1.05rem;
    line-height: 1.65;
  }
  .bh-anw-tipp__content p { margin: 0 0 0.6em; }
  .bh-anw-tipp__content p:last-child { margin-bottom: 0; }
  @media (max-width: 600px) {
    .bh-anw-tipp__box {
      flex-direction: column;
      padding: 28px 24px;
      gap: 16px;
    }
    .bh-anw-tipp__title { font-size: 1.2rem; }
    .bh-anw-tipp__content { font-size: 1rem; }
  }
/* END_SECTION:bh-anwendung-tipp */

/* START_SECTION:bh-blog-intro (INDEX:10) */
.bh-blog-intro {
    background: var(--bh-intro-bg, #fdfaf3);
    color: var(--bh-intro-color, #1a1a1a);
    font-family: 'Raleway', sans-serif;
  }
  .bh-blog-intro__container {
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  /* Hero */
  .bh-blog-intro__hero {
    text-align: center;
    padding: 0 8px;
  }
  .bh-blog-intro__eyebrow {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--bh-intro-accent, #c8951a);
    margin-bottom: 12px;
    padding: 4px 14px;
    background: rgba(200, 149, 26, 0.10);
    border-radius: 999px;
  }
  .bh-blog-intro__heading {
    font-size: clamp(24px, 3.6vw, 34px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.25;
    color: var(--bh-intro-color, #1a1a1a);
  }
  .bh-blog-intro__lead {
    font-size: 16px;
    line-height: 1.7;
    color: #444;
    max-width: 720px;
    margin: 0 auto;
  }
  .bh-blog-intro__lead p {
    margin: 0 0 12px;
  }
  .bh-blog-intro__lead p:last-child { margin-bottom: 0; }

  /* Mission Card */
  .bh-blog-intro__mission {
    display: flex;
    gap: 20px;
    padding: 28px 28px 28px 24px;
    background: linear-gradient(135deg, #fff9eb 0%, #fdfaf3 100%);
    border-left: 4px solid var(--bh-intro-accent, #c8951a);
    border-radius: 10px;
    box-shadow: 0 4px 18px rgba(200, 149, 26, 0.06);
  }
  .bh-blog-intro__mission-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    color: var(--bh-intro-accent, #c8951a);
  }
  .bh-blog-intro__mission-icon svg { width: 100%; height: 100%; }
  .bh-blog-intro__mission-body { flex: 1; }
  .bh-blog-intro__mission-title {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 8px;
    color: var(--bh-intro-color, #1a1a1a);
  }
  .bh-blog-intro__mission-text {
    font-size: 15px;
    line-height: 1.65;
    color: #444;
  }
  .bh-blog-intro__mission-text p { margin: 0 0 10px; }
  .bh-blog-intro__mission-text p:last-child { margin-bottom: 0; }
  .bh-blog-intro__mission-text strong {
    color: var(--bh-intro-accent, #c8951a);
    font-weight: 700;
  }

  /* CTA */
  .bh-blog-intro__cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 24px 28px;
    background: var(--bh-intro-card-bg, #ffffff);
    border: 1.5px dashed var(--bh-intro-accent, #c8951a);
    border-radius: 12px;
    flex-wrap: wrap;
  }
  .bh-blog-intro__cta-content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex: 1;
    min-width: 250px;
  }
  .bh-blog-intro__cta-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
  }
  .bh-blog-intro__cta-title {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 4px;
    color: var(--bh-intro-color, #1a1a1a);
  }
  .bh-blog-intro__cta-text {
    font-size: 14px;
    line-height: 1.55;
    color: #555;
    margin: 0;
  }
  .bh-blog-intro__cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: var(--bh-intro-accent, #c8951a);
    color: #ffffff !important;
    text-decoration: none !important;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: transform 0.15s, box-shadow 0.2s, background 0.2s;
    white-space: nowrap;
  }
  .bh-blog-intro__cta-btn:hover {
    background: #b08217;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(200, 149, 26, 0.25);
  }
  .bh-blog-intro__cta-btn svg {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
  }
  .bh-blog-intro__cta-btn:hover svg { transform: translateX(3px); }

  /* Health-Claims Info-Box */
  .bh-blog-intro__info-box {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    background: #fff5f3;
    border: 1px solid #f5d4cb;
    border-left: 4px solid #d97757;
    border-radius: 10px;
  }
  .bh-blog-intro__info-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    color: #d97757;
    margin-top: 2px;
  }
  .bh-blog-intro__info-icon svg { width: 100%; height: 100%; }
  .bh-blog-intro__info-body { flex: 1; }
  .bh-blog-intro__info-title {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 6px;
    color: #8b3a1f;
  }
  .bh-blog-intro__info-text {
    font-size: 13.5px;
    line-height: 1.6;
    color: #5a4034;
  }
  .bh-blog-intro__info-text p { margin: 0 0 8px; }
  .bh-blog-intro__info-text p:last-child { margin-bottom: 0; }
  .bh-blog-intro__info-text strong { color: #8b3a1f; }

  /* Rechtlicher Hinweis (collapsible) */
  .bh-blog-intro__legal {
    background: #ffffff;
    border: 1px solid #e8e4d6;
    border-radius: 10px;
    overflow: hidden;
  }
  .bh-blog-intro__legal-summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: #666;
    letter-spacing: 0.2px;
    user-select: none;
    transition: background 0.2s;
  }
  .bh-blog-intro__legal-summary:hover { background: #faf7ef; }
  .bh-blog-intro__legal-summary::-webkit-details-marker { display: none; }
  .bh-blog-intro__legal-icon {
    width: 16px;
    height: 16px;
    display: inline-flex;
    color: #999;
    transition: transform 0.2s;
  }
  .bh-blog-intro__legal-icon svg { width: 100%; height: 100%; }
  .bh-blog-intro__legal[open] .bh-blog-intro__legal-icon { transform: rotate(180deg); }
  .bh-blog-intro__legal-content {
    padding: 0 18px 18px;
    font-size: 12.5px;
    line-height: 1.65;
    color: #777;
  }
  .bh-blog-intro__legal-content p { margin: 0 0 10px; }
  .bh-blog-intro__legal-content p:last-child { margin-bottom: 0; }

  /* Mobile */
  @media (max-width: 600px) {
    #BhBlogIntro-{{ section.id }} { padding-left: 16px; padding-right: 16px; }
    .bh-blog-intro__container { gap: 22px; }
    .bh-blog-intro__mission,
    .bh-blog-intro__cta,
    .bh-blog-intro__info-box {
      padding: 20px 18px;
    }
    .bh-blog-intro__mission { flex-direction: column; gap: 12px; }
    .bh-blog-intro__mission-icon { width: 36px; height: 36px; }
    .bh-blog-intro__cta { flex-direction: column; align-items: stretch; }
    .bh-blog-intro__cta-btn {
      justify-content: center;
      width: 100%;
    }
    .bh-blog-intro__lead { font-size: 15px; }
  }
/* END_SECTION:bh-blog-intro */

/* START_SECTION:bh-blog (INDEX:11) */
.bh-blog {
    font-family: 'Raleway', sans-serif;
    padding-left: 20px;
    padding-right: 20px;
  }
  .bh-blog__inner {
    max-width: 1200px;
    margin: 0 auto;
  }
  .bh-blog__head {
    text-align: center;
    margin-bottom: 40px;
  }
  .bh-blog__eyebrow {
    margin: 0 0 10px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--bh-blog-accent, #c8951a);
  }
  .bh-blog__heading {
    margin: 0;
    font-size: clamp(26px, 4vw, 34px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.5px;
    color: var(--bh-blog-heading, #232323);
  }
  .bh-blog__accent {
    color: var(--bh-blog-accent, #c8951a);
  }

  .bh-blog__grid {
    display: grid;
    grid-template-columns: repeat(var(--bh-blog-cols, 3), minmax(0, 1fr));
    gap: 34px 30px;
    align-items: stretch;
  }

  .bh-blog__card {
    display: flex;
    flex-direction: column;
    min-width: 0;
  }
  .bh-blog__media {
    display: block;
    overflow: hidden;
    border-radius: var(--bh-blog-radius, 12px);
    background: #f4f2ed;
  }
  .bh-blog__img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform .4s ease;
  }
  .bh-blog__media:hover .bh-blog__img {
    transform: scale(1.04);
  }

  .bh-blog__title {
    margin: 18px 0 8px;
    font-size: clamp(19px, 2vw, 23px);
    font-weight: 700;
    line-height: 1.3;
  }
  .bh-blog__title a {
    color: var(--bh-blog-heading, #232323);
    text-decoration: none;
  }
  .bh-blog__title a:hover {
    color: var(--bh-blog-accent, #c8951a);
  }

  .bh-blog__date {
    margin: 0 0 12px;
    font-size: 13px;
    color: var(--bh-blog-muted, #777777);
  }
  .bh-blog__text {
    margin: 0 0 16px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--bh-blog-text, #444444);
  }

  .bh-blog__more {
    align-self: flex-start;
    margin-top: auto;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--bh-blog-accent, #c8951a);
    text-decoration: none;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity .2s ease;
  }
  .bh-blog__more:hover {
    opacity: .7;
  }

  .bh-blog__cta {
    text-align: center;
    margin-top: 44px;
  }
  .bh-blog__btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    background: var(--bh-blog-accent, #c8951a);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(200, 149, 26, .22);
    transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  }
  .bh-blog__btn:hover {
    background: #d9a528;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(200, 149, 26, .34);
  }

  .bh-blog__hint {
    grid-column: 1 / -1;
    padding: 22px;
    border: 1px dashed rgba(0, 0, 0, .2);
    border-radius: 10px;
    text-align: center;
    font-size: 14px;
    color: #777777;
  }
  .bh-blog__card--empty .bh-blog__hint {
    grid-column: auto;
    width: 100%;
    margin: 0;
  }

  @media (max-width: 1023px) {
    .bh-blog__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  }
  @media (max-width: 700px) {
    .bh-blog__grid { grid-template-columns: 1fr; gap: 30px; }
    .bh-blog__head { margin-bottom: 28px; }
  }
/* END_SECTION:bh-blog */

/* START_SECTION:bh-inhaltsstoffe (INDEX:13) */
.bh-anwendung-inhalt {
    font-family: 'Raleway', sans-serif;
    background: var(--bh-inh-bg, #ffffff);
    color: var(--bh-inh-text, #333);
    padding: 80px 20px;
  }
  .bh-anwinh__inner {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .bh-anwinh__eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #555;
    margin: 0 0 12px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }
  .bh-anwinh__eyebrow-line {
    width: 30px;
    height: 1px;
    background: var(--bh-inh-accent, #c8951a);
    display: block;
  }
  .bh-anwinh__title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--bh-inh-text, #1a1a1a);
    margin: 0 0 14px;
    line-height: 1.25;
  }
  .bh-anwinh__subtitle {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    max-width: 720px;
    margin: 0 auto 48px;
  }
  /* Kacheln immer gleich groß: Flexbox + feste Maximalbreite + zentriert.
     Eine allein stehende Kachel streckt sich NICHT mehr auf volle Breite. */
  .bh-anwinh__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 28px;
    text-align: left;
  }
  .bh-anwinh__card {
    flex: 1 1 300px;
    max-width: 380px;
    width: 100%;
    background: var(--bh-inh-card-bg, #ffffff);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee2c8;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
  }
  .bh-anwinh__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--bh-inh-accent, #c8951a), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
  }
  .bh-anwinh__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(200, 149, 26, 0.12);
    border-color: var(--bh-inh-accent, #c8951a);
  }
  .bh-anwinh__card:hover::before {
    opacity: 1;
  }
  .bh-anwinh__visual {
    position: relative;
    aspect-ratio: 4 / 3;
    background: var(--bh-inh-visual-bg, #fdfaf3);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-bottom: 1px solid #f0e7d4;
  }
  .bh-anwinh__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .bh-anwinh__card:hover .bh-anwinh__visual img {
    transform: scale(1.05);
  }
  .bh-anwinh__visual-emoji {
    font-size: 80px;
    line-height: 1;
    z-index: 2;
    position: relative;
    filter: drop-shadow(0 4px 12px rgba(200, 149, 26, 0.2));
    transition: transform 0.3s ease;
  }
  .bh-anwinh__card:hover .bh-anwinh__visual-emoji {
    transform: scale(1.08);
  }
  .bh-anwinh__visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(200, 149, 26, 0.18) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }
  .bh-anwinh__visual-placeholder {
    color: #bbb;
    font-size: 14px;
  }
  .bh-anwinh__body {
    padding: 26px 26px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
  }
  .bh-anwinh__name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--bh-inh-text, #1a1a1a);
    margin: 0 0 12px;
    line-height: 1.2;
    letter-spacing: 0.2px;
  }
  .bh-anwinh__claim {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--bh-inh-claim, var(--bh-inh-accent, #c8951a));
    font-weight: 600;
    font-style: italic;
    margin: 0 0 16px;
    padding-left: 14px;
    border-left: 3px solid var(--bh-inh-claim, var(--bh-inh-accent, #c8951a));
  }
  .bh-anwinh__claim p { margin: 0 0 0.3em; }
  .bh-anwinh__claim p:last-child { margin-bottom: 0; }
  .bh-anwinh__reason {
    font-size: 0.92rem;
    line-height: 1.7;
    color: #555;
    padding-top: 16px;
    border-top: 1px solid #f0e7d4;
    flex: 1;
  }
  .bh-anwinh__reason p { margin: 0 0 0.5em; }
  .bh-anwinh__reason p:last-child { margin-bottom: 0; }
  .bh-anwinh__disclaimer {
    margin: 36px auto 0;
    max-width: 860px;
    font-size: 12px;
    color: #888;
    line-height: 1.6;
    font-style: italic;
    text-align: center;
  }
  @media (max-width: 900px) {
    .bh-anwinh__grid {
      gap: 20px;
    }
    .bh-anwinh__card {
      flex-basis: 280px;
    }
    .bh-anwinh__visual-emoji { font-size: 64px; }
  }
  @media (max-width: 600px) {
    .bh-anwendung-inhalt { padding: 50px 15px; }
    .bh-anwinh__card { max-width: none; flex-basis: 100%; }
    .bh-anwinh__title { font-size: 1.5rem; }
    .bh-anwinh__name { font-size: 1.2rem; }
    .bh-anwinh__body { padding: 22px 22px 24px; }
  }
/* END_SECTION:bh-inhaltsstoffe */

/* START_SECTION:bh-lexikon (INDEX:15) */
.bh-lexikon {
    font-family: 'Raleway', sans-serif;
    background-color: var(--bh-lex-bg, #ffffff);
    color: var(--bh-lex-text, #333333);
    padding: 60px 20px;
  }
  .bh-lexikon__inner {
    max-width: 1100px;
    margin: 0 auto;
  }

  /* HERO */
  .bh-lexikon__hero {
    margin-bottom: 50px;
    text-align: center;
  }
  .bh-lexikon__hero--with-image {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
    text-align: left;
  }
  .bh-lexikon__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--bh-lex-text, #333);
    margin: 0 0 16px 0;
    line-height: 1.2;
  }
  .bh-lexikon__intro {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    max-width: 720px;
    margin: 0 auto;
  }
  .bh-lexikon__hero--with-image .bh-lexikon__intro {
    margin: 0;
  }
  .bh-lexikon__hero-image img {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 8px;
    margin: 0 auto;
    display: block;
  }

  /* A-Z NAV */
  .bh-lexikon__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    padding: 18px 16px;
    background: var(--bh-lex-card-bg, #faf5ed);
    border-radius: 8px;
    margin-bottom: 50px;
    border: 1px solid #eaddc7;
  }
  .bh-lexikon__nav-letter {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.2s ease;
  }
  .bh-lexikon__nav-letter--active {
    background: #ffffff;
    color: var(--bh-lex-accent, #c8951a);
    border: 1px solid #eaddc7;
  }
  .bh-lexikon__nav-letter--active:hover {
    background: var(--bh-lex-accent, #c8951a);
    color: #ffffff;
    transform: translateY(-2px);
  }
  .bh-lexikon__nav-letter--inactive {
    color: #ccc;
    cursor: default;
  }

  /* ENTRIES */
  .bh-lexikon__entries {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
  .bh-lexikon__group {
    scroll-margin-top: 100px;
  }
  .bh-lexikon__letter-heading {
    font-size: 3rem;
    font-weight: 700;
    color: var(--bh-lex-accent, #c8951a);
    margin: 0 0 20px 0;
    border-bottom: 2px solid #eaddc7;
    padding-bottom: 10px;
    line-height: 1;
  }
  .bh-lexikon__entry {
    background: #ffffff;
    padding: 24px 28px;
    border-radius: 8px;
    border: 1px solid #f0e8d8;
    margin-bottom: 16px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
  }
  .bh-lexikon__entry:hover {
    box-shadow: 0 4px 16px rgba(200, 149, 26, 0.08);
    transform: translateY(-1px);
  }
  .bh-lexikon__entry:last-child {
    margin-bottom: 0;
  }
  .bh-lexikon__term {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--bh-lex-text, #333);
    margin: 0 0 12px 0;
    scroll-margin-top: 100px;
  }
  .bh-lexikon__definition {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
  }
  .bh-lexikon__definition p {
    margin: 0 0 12px 0;
  }
  .bh-lexikon__definition p:last-child {
    margin-bottom: 0;
  }
  .bh-lexikon__link {
    display: inline-block;
    margin-top: 14px;
    color: var(--bh-lex-accent, #c8951a);
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.2s ease;
  }
  .bh-lexikon__link:hover {
    transform: translateX(4px);
  }

  /* CTA */
  .bh-lexikon__cta {
    margin-top: 70px;
    padding: 40px 30px;
    background: var(--bh-lex-card-bg, #faf5ed);
    border-radius: 8px;
    text-align: center;
    border: 1px solid #eaddc7;
  }
  .bh-lexikon__cta-text {
    font-size: 1.1rem;
    color: #555;
    margin: 0 0 20px 0;
    line-height: 1.6;
  }
  .bh-lexikon__cta-text p {
    margin: 0;
  }
  .bh-lexikon__cta-btn {
    display: inline-block;
    background: var(--bh-lex-accent, #c8951a);
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .bh-lexikon__cta-btn:hover {
    background: #b07f10;
    transform: translateY(-2px);
  }

  /* RESPONSIVE */
  @media (max-width: 768px) {
    .bh-lexikon {
      padding: 40px 15px;
    }
    .bh-lexikon__hero--with-image {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .bh-lexikon__hero--with-image .bh-lexikon__intro {
      margin: 0 auto;
    }
    .bh-lexikon__title {
      font-size: 1.8rem;
    }
    .bh-lexikon__nav {
      gap: 4px;
      padding: 12px;
    }
    .bh-lexikon__nav-letter {
      width: 30px;
      height: 30px;
      font-size: 0.85rem;
    }
    .bh-lexikon__letter-heading {
      font-size: 2rem;
    }
    .bh-lexikon__entry {
      padding: 18px 20px;
    }
    .bh-lexikon__term {
      font-size: 1.2rem;
    }
  }
/* END_SECTION:bh-lexikon */

/* START_SECTION:bh-product-benefits (INDEX:16) */
.bh-benefits {
    font-family: 'Raleway', sans-serif;
    color: var(--bh-ben-text, #555555);
    font-size: var(--bh-ben-fs, 15px);
  }
  .bh-benefits__heading {
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 12px;
    color: var(--bh-ben-text, #1a1a1a);
  }
  .bh-benefits__list {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .bh-benefits__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    line-height: 1.45;
  }
  .bh-benefits__icon {
    flex-shrink: 0;
    width: var(--bh-ben-icon-size, 14px);
    height: var(--bh-ben-icon-size, 14px);
    margin-top: 3px;
    color: var(--bh-ben-icon, #D1B082);
    line-height: 1;
  }
  .bh-benefits__icon svg {
    fill: var(--bh-ben-icon, #D1B082);
    width: 100%;
    height: 100%;
    display: block;
  }
  .bh-benefits__emoji {
    font-size: var(--bh-ben-icon-size, 14px);
    line-height: 1;
    display: inline-block;
  }
  .bh-benefits__text {
    flex: 1;
  }
/* END_SECTION:bh-product-benefits */

/* START_SECTION:bienenherz-newsletter (INDEX:26) */
.bh-newsletter {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    font-family: 'Raleway', sans-serif;
    color: var(--bh-nl-text, #ffffff);
    overflow: hidden;
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bh-newsletter__overlay {
    position: absolute;
    inset: 0;
    background: var(--bh-nl-overlay, #1a1a1a);
    opacity: var(--bh-nl-overlay-opacity, 0.35);
    pointer-events: none;
  }
  .bh-newsletter__inner {
    position: relative;
    z-index: 2;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .bh-newsletter__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--bh-nl-accent, #eab72c);
    color: #1a1a1a;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
  }
  .bh-newsletter__title {
    font-size: 3.2rem;
    font-weight: 700;
    margin: 0 0 18px;
    line-height: 1.15;
    color: var(--bh-nl-text, #ffffff);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
  }
  .bh-newsletter__subtitle {
    font-size: 1.15rem;
    line-height: 1.6;
    margin: 0 auto 32px;
    color: var(--bh-nl-text, #ffffff);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.3);
    max-width: 600px;
  }
  .bh-newsletter__subtitle p { margin: 0 0 0.5em; }
  .bh-newsletter__subtitle p:last-child { margin-bottom: 0; }
  .bh-newsletter__form {
    display: flex;
    gap: 0;
    max-width: 560px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
  }
  .bh-newsletter__email {
    flex: 1 1 280px;
    min-height: 54px;
    padding: 14px 20px;
    font-size: 16px;
    border: none;
    border-radius: 8px 0 0 8px;
    outline: none;
    color: #1a1a1a;
    background: #ffffff;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .bh-newsletter__email:focus {
    box-shadow: 0 0 0 3px rgba(200, 149, 26, 0.4), 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .bh-newsletter__btn {
    min-height: 54px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 600;
    color: #ffffff;
    background: var(--bh-nl-accent, #eab72c);
    border: none;
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    font-family: inherit;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  }
  .bh-newsletter__btn:hover {
    background: #d6a524;
    transform: translateY(-1px);
  }
  .bh-newsletter__fineprint {
    margin: 16px auto 0;
    font-size: 12px;
    line-height: 1.55;
    opacity: 0.85;
    color: var(--bh-nl-text, #ffffff);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    max-width: 540px;
  }
  .bh-newsletter__success {
    margin: 14px 0 0;
    color: #ffffff;
    background: rgba(34, 139, 34, 0.85);
    padding: 10px 16px;
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
  }
  .bh-newsletter__error {
    margin: 14px 0 0;
    color: #ffffff;
    background: rgba(200, 50, 50, 0.85);
    padding: 10px 16px;
    border-radius: 6px;
    width: 100%;
  }
  @media (max-width: 768px) {
    .bh-newsletter__title { font-size: 2.2rem; }
    .bh-newsletter__subtitle { font-size: 1rem; }
    .bh-newsletter__badge { font-size: 11px; padding: 5px 12px; }
  }
  @media (max-width: 600px) {
    .bh-newsletter {
      padding: 60px 16px;
    }
    .bh-newsletter__title { font-size: 1.8rem; }
    .bh-newsletter__email,
    .bh-newsletter__btn {
      flex: 1 1 100%;
      border-radius: 8px;
    }
    .bh-newsletter__btn { margin-top: 8px; }
  }
/* END_SECTION:bienenherz-newsletter */

/* START_SECTION:premium-hive-section (INDEX:80) */
/* Kein @import von Google Fonts mehr.
     Raleway wird bereits ueber die Theme-Einstellungen von Shopifys CDN geladen.
     Ein zusaetzlicher Google-Fonts-Import wuerde die IP-Adresse jedes Besuchers
     ungefragt an Google uebertragen. */

  .premium-hive-section {
    font-family: 'Raleway', sans-serif;
    background-color: var(--phs-bg, #ffffff);
    padding: 80px 20px;
    text-align: center;
    color: #333333;
    position: relative;
    z-index: 1;
    clear: both;
    overflow: hidden;
  }
  .hive-custom-header {
    max-width: 800px;
    margin: 0 auto 50px auto;
    position: relative;
    display: block;
  }
  .hive-custom-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--phs-title-color, #1a1a1a);
    margin-bottom: 20px;
    display: block;
    line-height: 1.2;
  }
  .hive-custom-subtitle {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--phs-text-color, #555555);
    display: block;
  }
  .hive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 50px auto;
    position: relative;
    z-index: 2;
  }
  .hive-card {
    background-color: var(--phs-card-bg, #ffffff);
    border-radius: 8px;
    padding: 40px 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid #f4f4f4;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  }
  .hive-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
  }

  /* Anklickbare Karte */
  .hive-card--link {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
  }
  .hive-card--link:hover {
    border-color: var(--phs-btn-bg, #eab72c);
    box-shadow: 0 12px 40px rgba(200, 149, 26, 0.14);
  }
  .hive-card--link:focus-visible {
    outline: 3px solid var(--phs-btn-bg, #eab72c);
    outline-offset: 3px;
  }
  .hive-card--link h3,
  .hive-card--link p {
    color: inherit;
  }
  .hive-card--link h3 {
    color: var(--phs-title-color, #1a1a1a);
    transition: color 0.2s ease;
  }
  .hive-card--link:hover h3 {
    color: var(--phs-btn-bg, #eab72c);
  }

  .hive-image {
    width: var(--phs-icon-size, 80px);
    height: var(--phs-icon-size, 80px);
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
  }
  .hive-card h3 {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--phs-title-color, #1a1a1a);
    margin-bottom: 15px;
    line-height: 1.4;
  }
  .hive-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--phs-text-color, #555555);
    margin: 0;
  }

  .hive-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
    padding-top: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.6px;
    color: var(--phs-btn-bg, #eab72c);
  }
  .hive-card__arrow {
    transition: transform 0.2s ease;
  }
  .hive-card--link:hover .hive-card__arrow {
    transform: translateX(4px);
  }

  .hive-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
    z-index: 2;
  }
  .btn-primary {
    background-color: var(--phs-btn-bg, #eab72c);
    color: var(--phs-btn-color, #ffffff);
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
    display: inline-block;
  }
  .btn-primary:hover {
    background-color: var(--phs-btn-bg-hover, #d6a524);
    transform: translateY(-2px);
  }
  .bh-honey-deco {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: var(--phs-deco-size, 260px);
    height: var(--phs-deco-size, 260px);
    transform: rotate(-18deg);
    pointer-events: none;
    z-index: 0;
    opacity: 1;
  }
  @media (max-width: 768px) {
    .premium-hive-section {
      padding: 50px 15px;
    }
    .hive-custom-title {
      font-size: 1.8rem;
    }
    .hive-grid {
      gap: 20px;
    }
    .hive-card {
      padding: 30px 15px;
    }
    .bh-honey-deco {
      width: var(--phs-deco-size-tablet, 140px);
      height: var(--phs-deco-size-tablet, 140px);
      bottom: -20px;
      right: -15px;
      opacity: 0.6;
    }
  }
  @media (max-width: 480px) {
    .bh-honey-deco {
      width: var(--phs-deco-size-mobile, 100px);
      height: var(--phs-deco-size-mobile, 100px);
      bottom: -10px;
      right: -10px;
      opacity: 0.4;
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .hive-card,
    .hive-card__arrow,
    .btn-primary {
      transition: none;
    }
    .hive-card:hover {
      transform: none;
    }
  }
/* END_SECTION:premium-hive-section */