@charset "UTF-8";

/* ============================================================
   style.css — transylvaniaforyou.com
   Gothic Edition — basiert auf pflanzenfreunde.com CSS-System 02.07.2026 14Uhr21
   ============================================================ */

/* === 1. CSS CUSTOM PROPERTIES === */
:root {
  /* Gothic Farbpalette */
  --color-primary:       #9b1c1c;   /* Blutrot — CTAs, aktiver Nav-Link */
  --color-primary-dark:  #6b0f0f;   /* Tiefes Blutrot — Hover */
  --color-bg-body:       #0e0505;   /* Fast-Schwarz — äußerer Hintergrund */
  --color-bg-page:       #160808;   /* Dunkelrot-Schwarz — Seitenfläche */
  --color-bg-sidebar:    #1e0a0a;   /* Etwas heller — Karten-Hintergrund */
  --color-bg-card-hover: #2a0e0e;   /* Card Hover */
  --color-text:          #d4c4b0;   /* Warmes Pergament — Fließtext */
  --color-text-muted:    #8a7a68;   /* Gedämpftes Pergament */
  --color-link:          #c8803a;   /* Bernsteingelb — Links */
  --color-link-hover:    #e09a50;   /* Helles Bernstein — Link Hover */
  --color-border:        #3a1010;   /* Dunkler Rotrand */
  --color-border-light:  #250a0a;   /* Subtiler Rand */
  --color-btn-grad-top:  #2a0a0a;
  --color-btn-grad-mid:  #1e0707;
  --color-btn-grad-end:  #130404;
  --color-shadow:        rgba(0, 0, 0, 0.65);
  --color-header-text:   #e8d5a8;   /* Gold-Pergament — Header-Text */
  --color-header-bg:     #080202;   /* Fast-Schwarz — Header */
  --color-icon-svg:      #9b1c1c;   /* Icon-Farbe = Primary */

  /* Abstände */
  --spacing-xs:  0.25rem;
  --spacing-sm:  0.5rem;
  --spacing-md:  1rem;
  --spacing-lg:  1.5rem;
  --spacing-xl:  2rem;
  --spacing-xxl: 3rem;

  /* Schriften */
  --font-family:         Georgia, 'Times New Roman', serif;
  --font-family-ui:      Arial, Helvetica, sans-serif;
  --font-family-heading: Georgia, 'Times New Roman', serif;
  --font-size-sm:   clamp(0.8rem, 1.5vw, 0.875rem);
  --font-size-base: clamp(0.95rem, 2vw, 1rem);
  --font-size-lg:   clamp(1.1rem, 2.5vw, 1.25rem);
  --font-size-h1:   clamp(1.6rem, 5vw, 2.4rem);
  --font-size-h2:   clamp(1.25rem, 3.5vw, 1.75rem);
  --font-size-h3:   clamp(1.1rem, 2.5vw, 1.35rem);
  --line-height:    1.7;

  /* Layout */
  --max-width:        1440px;
  --page-max-width:   1000px;
  --border-radius:    4px;
  --border-radius-lg: 6px;
  --transition:       0.2s ease;
  --box-shadow-page:  0 0 12px 4px rgba(0,0,0,0.8);
}

/* === 2. RESET & BASE === */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--color-bg-body);
  padding-bottom: var(--spacing-xl);
}

body {
  color: var(--color-text);
  background-color: var(--color-bg-body);
  font-family: var(--font-family);
  line-height: var(--line-height);
  font-size: var(--font-size-base);
  max-width: 100%;
  margin: 0;
  overflow-x: hidden;
}

main, section, nav, header, footer, aside, article { display: block; }

h1 { font-size: var(--font-size-h1); margin: 0.5em 0; }
h2 { font-size: var(--font-size-h2); margin: 0.5em 0; }
h3 { font-size: var(--font-size-h3); margin: 0.5em 0; }
h1, h2, h3 { font-family: var(--font-family-heading); color: var(--color-header-text); }
h4 { font-size: var(--font-size-base); font-weight: bold; margin: 0.4em 0; }

p  { margin: 0 0 var(--spacing-sm); line-height: var(--line-height); }
ul, ol { margin-top: 0; margin-bottom: var(--spacing-md); }
li { margin: 5px 10px; line-height: var(--line-height); }

a {
  color: var(--color-link);
  text-decoration: none;
}
a:hover, a:focus {
  color: var(--color-link-hover);
  text-decoration: underline;
}

/* Artikel-Text-Links immer unterstrichen (WCAG 1.4.1) */
article p a,
article li a,
main p a,
main li a {
  text-decoration: underline;
}
main p a:hover,
main li a:hover {
  text-decoration: underline;
  color: var(--color-link-hover);
}

img {
  margin: 2px 8px;
  border: 0;
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}

hr {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: var(--spacing-md) 0;
}

/* === 3. SKIP LINK === */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--color-primary-dark);
  color: #e8d5a8;
  padding: 8px 16px;
  z-index: 2000;
  border-radius: 0 0 var(--border-radius) 0;
  font-weight: 600;
  transition: top var(--transition);
  text-decoration: none;
  font-family: var(--font-family-ui);
}
.skip-link:focus {
  top: 0;
  text-decoration: none;
  color: #e8d5a8;
}

/* === 3b. VISUALLY HIDDEN (screen-reader only) === */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

/* === 4. PAGE WRAPPER === */
.page-wrapper {
  width: 100%;
  background-color: var(--color-bg-page);
}

/* === 5. SITE HEADER — immer dunkel === */
.site-header {
  background-color: var(--color-header-bg);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.6em 2rem;
  flex-wrap: nowrap;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 2.5rem;   /* Abstand Logo → erster Nav-Link */
}
.site-logo img {
  height: 70px;
  width: auto;
  margin: 0;
}
.site-logo:hover, .site-logo:focus {
  opacity: 0.85;
  text-decoration: none;
}


/* === 6. HAMBURGER TOGGLE === */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 7px;
  background: transparent;
  border: 1px solid rgba(232, 213, 168, 0.35);
  border-radius: var(--border-radius);
  flex-shrink: 0;
}
.nav-toggle:focus-visible {
  outline: 3px solid rgba(232, 213, 168, 0.7);
  outline-offset: 2px;
}

.nav-toggle__line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-header-text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* Hamburger → X Animation */
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* === 7. MAIN NAVIGATION === */
.main-nav {
  flex: 0 1 auto;    /* nimmt nur so viel Platz wie nötig */
}

.main-nav__list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;  /* Links bleiben in einer Zeile */
  gap: 4px;
  margin: 0;
  padding: 0;
}

.main-nav__list li { margin: 0; }

.main-nav__link {
  display: inline-block;
  padding: 8px 16px;
  border: none;
  border-radius: var(--border-radius);
  background: transparent;
  color: var(--color-header-text);
  font-family: var(--font-family-ui);
  font-size: 15px;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color var(--transition), background var(--transition);
}
.main-nav__link:hover,
.main-nav__link:focus {
  text-decoration: none;
  color: #fff;
  background: rgba(155, 28, 28, 0.35);
}

.main-nav__link[aria-current="page"] {
  color: #e8d5a8;
  background: var(--color-primary-dark);
  font-weight: 600;
}

/* === 8. BREADCRUMB === */
.breadcrumb-nav {
  padding-bottom: 0.3em;
}

.breadcrumb {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  margin: 2px 1px 3px;
  padding: 0 var(--spacing-sm);
  background-color: var(--color-bg-page);
  border-radius: var(--border-radius);
  font-size: var(--font-size-sm);
  font-family: var(--font-family-ui);
}

.breadcrumb li { display: inline; margin: 0; }
.breadcrumb li + li::before {
  content: "›";
  padding: 0 6px;
  color: var(--color-text-muted);
}

.breadcrumb a {
  display: inline-block;
  padding: 9px 4px;
  color: var(--color-text-muted);
}
.breadcrumb a:hover { color: var(--color-link-hover); }
.breadcrumb [aria-current="page"] { color: var(--color-text); font-weight: 500; }

@media (max-width: 768px) {
  .breadcrumb { flex-wrap: nowrap; overflow: hidden; }
  .breadcrumb li { white-space: nowrap; flex-shrink: 0; }
  .breadcrumb li:last-child { flex-shrink: 1; overflow: hidden; min-width: 0; }
  .breadcrumb [aria-current="page"] {
    display: block; overflow: hidden;
    text-overflow: ellipsis; white-space: nowrap;
  }
}

/* === 9. CONTENT LAYOUT (ohne Sidebar) === */
.content-layout {
  display: flex;
  flex-wrap: wrap;
  max-width: 1140px;
  margin: 0 auto;
}

.content-main {
  flex: 1 1 100%;
  min-width: 0;
  padding: var(--spacing-xl) var(--spacing-md);
}

/* === 10. HERO SECTION === */
.hero-section {
  position: relative;
  min-height: 60vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('../bilder/transylvania-castle.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8, 2, 2, 0.45) 0%,    /* Vorher 0.55 */
    rgba(8, 2, 2, 0.25) 40%,   /* Vorher 0.35 */
    rgba(8, 2, 2, 0.60) 100%   /* Vorher 0.70 */
);
}

.hero-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: var(--spacing-xl) var(--spacing-lg);
  max-width: 800px;
  margin: 0 auto;
}

.hero-section__eyebrow {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-lg);
  color: rgba(232, 213, 168, 0.85);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.4em;
}

.hero-section__title {
  font-family: var(--font-family-heading);
  font-size: clamp(2.8rem, 8vw, 5rem);
  color: #e8d5a8;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
  margin: 0.1em 0 0.4em;
}

.hero-section__subtitle {
  font-size: var(--font-size-lg);
  color: rgba(232, 213, 168, 0.9);
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.9);
}

/* === 11. CONTENT SECTIONS === */
.content-section {
  padding: var(--spacing-xl) 0;
  border-bottom: 1px solid var(--color-border-light);
  clear: both;
  scroll-margin-top: 100px;
}

.content-section:last-of-type {
  border-bottom: none;
}

.intro-section {
  text-align: center;
  padding: var(--spacing-xxl) var(--spacing-md);
  background-color: var(--color-bg-sidebar);
  width: 100%;
}

.intro-section__inner {
  max-width: 800px;
  margin: 0 auto;
}

.intro-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  color: var(--color-link);   /* Gold/Amber wie im Original */
  margin-bottom: var(--spacing-md);
}

.intro-section p {
  font-size: var(--font-size-lg);
  margin: 0 auto var(--spacing-sm);
  color: var(--color-text);
}

/* === 12. CTA BANNER === */
.cta-banner {
  position: relative;
  background-image: url('../bild/transylvania-mountains.webp');
  background-size: cover;
  background-position: center;
  width: 100%;
  padding: var(--spacing-xxl) var(--spacing-lg);
  text-align: center;
  clear: both;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(8, 2, 2, 0.72);
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}

.cta-banner__title {
  font-family: var(--font-family-heading);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #e8d5a8;
  margin-bottom: var(--spacing-lg);
  text-shadow: 0 2px 10px rgba(0,0,0,0.9);
}

/* === 13. BUTTONS === */
.btn {
  padding: 10px 20px;
  display: inline-block;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px 0 var(--color-shadow);
  background-color: var(--color-btn-grad-mid);
  background-image: linear-gradient(
    180deg,
    var(--color-btn-grad-top),
    var(--color-btn-grad-mid) 2px,
    var(--color-btn-grad-end)
  );
  cursor: pointer;
  margin: 4px;
  color: var(--color-header-text);
  text-decoration: none;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-base);
  transition: box-shadow var(--transition);
}
.btn:hover, .btn:focus {
  text-decoration: none;
  color: #fff;
  box-shadow: 0 0 6px 3px var(--color-primary);
}

.btn--cta {
  background-color: var(--color-primary-dark);
  background-image: none;
  border-color: var(--color-primary);
  color: #e8d5a8;
  font-size: var(--font-size-lg);
  padding: 14px 32px;
  letter-spacing: 0.03em;
}
.btn--cta:hover, .btn--cta:focus {
  color: #fff;
  box-shadow: 0 0 12px 4px var(--color-primary);
}

/* === 14. ARTIKEL-BILD (Float-Bild mit Rahmen) === */
.artikel-bild {
  float: right;
  clear: right;
  margin: 0 0 1.5rem 1.5rem;
  max-width: 400px;
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  overflow: hidden;
  background: var(--color-bg-sidebar);
  padding: 8px 8px 0 8px;
  box-sizing: border-box;
}

.artikel-bild--left {
  float: left;
  margin: 0 1.5rem 1.5rem 0;
}

.artikel-bild img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  border-radius: calc(var(--border-radius) - 2px);
}

.artikel-bild:first-of-type {
  margin-top: 0;
}

.artikel-bild__caption {
  background: var(--color-bg-sidebar);
  color: var(--color-text-muted);
  padding: 0.5rem 0.6rem;
  font-size: 0.8rem;
  font-family: var(--font-family-ui);
}

.artikel-bild__license {
  color: var(--color-text-muted);
  margin: 0 0 0.3rem;
  line-height: 1.4;
}

/* Kein clear bei Überschriften — verhindert Leerraum neben Floats */
h2, h3 { clear: none; }

/* === 15. VOLLBREITE-BILDER === */
.full-img {
  display: block;
  width: 100%;
  height: auto;
  margin: var(--spacing-lg) 0 var(--spacing-sm);
  border-radius: var(--border-radius);
  border: 1px solid var(--color-border);
}

.full-img__caption {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-family: var(--font-family-ui);
  margin-bottom: var(--spacing-lg);
}

/* === 16. LINK-GRUPPEN === */
.link-group {
  margin: 0;
  padding: 0;
  display: inline;
  list-style: none;
}

.link-group li {
  display: inline;
  margin: 0;
}

.link-group a {
  padding: 10px 13px;
  display: inline-block;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  box-shadow: 0 1px 3px 0 var(--color-shadow);
  background-color: var(--color-btn-grad-mid);
  background-image: linear-gradient(
    180deg,
    var(--color-btn-grad-top),
    var(--color-btn-grad-mid) 2px,
    var(--color-btn-grad-end)
  );
  cursor: pointer;
  margin: 4px;
  color: var(--color-header-text);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-family: var(--font-family-ui);
}
.link-group a:hover, .link-group a:focus {
  box-shadow: 0 0 5px 2px var(--color-primary);
  text-decoration: none;
  color: #fff;
}

/* === 17. SOCIAL SHARING === */
.social-share {
  margin: var(--spacing-xl) 0;
  clear: both;
}

.social-share__label {
  font-weight: 500;
  margin-bottom: 0.75rem;
  font-family: var(--font-family-ui);
  color: var(--color-text-muted);
}

.social-share nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
}

.social-share__btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0.45rem 1rem;
  border-radius: var(--border-radius-lg);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition), transform var(--transition);
  white-space: nowrap;
  color: #fff;
}
.social-share__btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  text-decoration: none;
  color: #fff;
}
.social-share__btn svg { flex-shrink: 0; }

.social-share__btn--whatsapp  { background: #25D366; color: #1a1a1a; }
.social-share__btn--whatsapp:hover { color: #1a1a1a; }
.social-share__btn--facebook  { background: #1668dc; }
.social-share__btn--pinterest { background: #E60023; }
.social-share__btn--x         { background: #e0e0e0; color: #000; }
.social-share__btn--x:hover   { color: #000; }
.social-share__btn--email     { background: #6b0f0f; }

/* === 18. SITE FOOTER === */
.site-footer {
  padding: var(--spacing-lg) var(--spacing-md);
  background-color: var(--color-header-bg);
  border-top: 1px solid var(--color-border);
  clear: both;
  font-family: var(--font-family-ui);
}

.footer-links {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
  align-items: center;
}

.site-footer a {
  color: var(--color-link);
  text-decoration: underline;
}
.site-footer a:hover, .site-footer a:focus {
  color: var(--color-link-hover);
}

.footer-copy {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--spacing-sm);
}

/* === 19. FAQ SECTION === */
.faq-section {
  margin-top: var(--spacing-xl);
  clear: both;
}

.faq-item {
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--spacing-md) 0;
}

.faq-item__question {
  font-weight: 600;
  font-family: var(--font-family-ui);
  color: var(--color-header-text);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--spacing-md);
  transition: color var(--transition);
}
.faq-item__question::-webkit-details-marker {
  display: none;
}
.faq-item__question::after {
  content: "+";
  flex-shrink: 0;
  font-size: 1.3em;
  line-height: 1;
  color: var(--color-link);
  transition: transform var(--transition);
}
.faq-item[open] .faq-item__question::after {
  content: "\2212";
}
.faq-item__question:hover,
.faq-item__question:focus-visible {
  color: var(--color-link-hover);
}

.faq-item__answer {
  color: var(--color-text);
  line-height: var(--line-height);
  padding-top: var(--spacing-sm);
}
.faq-item__answer p {
  margin-bottom: var(--spacing-sm);
}
.faq-item__answer p:last-child {
  margin-bottom: 0;
}

/* === 20. PRODUKT-KARTEN (Shop-Übersicht) === */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.product-card-item {
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: var(--border-radius-lg);
  background: #241010;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card-item:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .product-card-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
  }
}

.product-card-item__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-item__link:hover { text-decoration: none; color: inherit; }

.product-card-item__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0;
  background: #f4ede0;
}

.product-card-item__body {
  padding: var(--spacing-md);
  border-top: 1px solid rgba(232, 213, 168, 0.12);
}

.product-card-item__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  color: var(--color-header-text);
  margin-bottom: var(--spacing-sm);
}

.product-card-item__price {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-base);
  color: var(--color-link);
  font-weight: 600;
}

/* === 20b. SHOP CATEGORY TABS === */
.shop-tabs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 0 var(--spacing-lg);
  padding: 0 var(--spacing-md);
}

.shop-tabs a {
  display: inline-block;
  padding: 8px 20px;
  border: 1px solid var(--color-border);
  border-radius: 20px;
  background: var(--color-bg-sidebar);
  color: var(--color-header-text);
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  text-decoration: none;
  transition: border-color var(--transition), color var(--transition);
}
.shop-tabs a:hover,
.shop-tabs a:focus-visible {
  border-color: var(--color-primary);
  color: var(--color-link-hover);
  text-decoration: none;
}

/* === 20c. COMPACT HERO (Shop & other listing pages) === */
.hero-section--compact {
  min-height: 38vh;
}
@media (max-width: 768px) {
  .hero-section--compact { min-height: 32vh; }
}

/* === 21. FOCUS VISIBLE === */
:focus-visible {
  outline: 3px solid var(--color-primary);
  outline-offset: 3px;
}

/* Ausnahmen — keine Unterstreichung bei Nav und UI-Elementen */
.main-nav a,
.main-nav__link,
.breadcrumb a,
.social-share__btn,
.link-group a,
.skip-link,
.site-logo,
.btn {
  text-decoration: none;
}

/* === 22. QUICK FACTS BOX === */
.quick-facts {
  background: var(--color-bg-sidebar);
  border: 1px solid var(--color-border);
  border-left: 3px solid var(--color-primary);
  border-radius: var(--border-radius);
  padding: var(--spacing-md) var(--spacing-lg);
  margin: var(--spacing-lg) 0;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  clear: both;
}

.quick-facts ul {
  margin: 0;
  padding-left: var(--spacing-lg);
}

.quick-facts li {
  margin: 4px 0;
  color: var(--color-text);
}

.quick-facts strong {
  color: var(--color-header-text);
}

/* === 23. TEXT UTILITIES === */
.text-sm    { font-size: var(--font-size-sm); }
.text-muted { color: var(--color-text-muted); }
.mt-lg      { margin-top: var(--spacing-xl); }
.no-print   {}
.clearfix   { clear: both; }
.text-center { text-align: center; }

/* === 24. RESPONSIVE BREAKPOINTS === */

/* Tablets / große Smartphones (< 768px) */
@media (max-width: 768px) {

  /* Bar: Logo links, Hamburger rechts */
  .site-header__bar {
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0.5em 1rem;
  }

  /* Logo-Abstand auf Mobile zurücksetzen */
  .site-logo {
    margin-right: 0;
  }

  .site-logo img {
    height: 52px;
  }

  /* Hamburger einblenden */
  .nav-toggle { display: flex; }

  /* Nav klappt unter die Bar — volle Breite */
  .main-nav {
    order: 10;
    flex: 0 0 100%;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    transition: max-height 0.35s ease, visibility 0s 0.35s;
  }

  .main-nav.main-nav--open {
    max-height: 600px;
    visibility: visible;
    transition: max-height 0.35s ease, visibility 0s 0s;
  }

  .main-nav__list {
    flex-direction: column;
    gap: 3px;
    padding: 0.4rem 0;
  }

  .main-nav__link { display: block; width: 100%; }

  /* Bilder unter Text (kein Float) */
  .artikel-bild,
  .artikel-bild--left {
    float: none;
    max-width: 100%;
    margin: var(--spacing-md) 0;
  }

  .content-main { padding: var(--spacing-md); }

  .hero-section { min-height: 55vh; }

  .hero-section__title { font-size: clamp(2rem, 10vw, 3.5rem); }
}

/* Kleine Smartphones (< 480px) */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
  }
  .footer-links { flex-direction: column; gap: 0.4rem; text-align: center; }
}

/* === 25. PRINT === */
@media print {
  .site-header,
  .main-nav,
  .nav-toggle,
  .skip-link,
  .social-share,
  .cta-banner,
  .site-footer,
  .no-print { display: none !important; }

  body {
    font-size: 12pt;
    color: #000;
    background: #fff;
    max-width: 100%;
  }

  a::after {
    content: " (" attr(href) ")";
    font-size: 10pt;
    color: #555;
  }

  .content-main { width: 100%; padding: 0; }
  .page-wrapper { box-shadow: none; border: none; }
}

/* === 27. PRODUCT DETAIL PAGE === */

.product-tagline {
  font-family: var(--font-family-ui);
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin: 0 0 var(--spacing-lg);
}

.product-detail {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-xl);
  align-items: flex-start;
  margin-bottom: var(--spacing-xl);
}

.product-detail__gallery {
  flex: 1 1 380px;
}

.product-detail__info {
  flex: 1 1 320px;
  min-width: 0;
}

/* --- Gallery / carousel --- */
.product-gallery {
  position: relative;
  max-width: 430px;
  margin: 0 auto;
}

.product-gallery__track {
  position: relative;
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  background: #f4ede0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.product-gallery__slide {
  display: none;
}
.product-gallery__slide.is-active {
  display: block;
  animation: galleryFade 0.4s ease;
}

.product-gallery__slide img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0;
}

.product-gallery__caption {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  font-family: var(--font-family-ui);
  padding: 8px 12px;
  background: var(--color-bg-sidebar);
  margin: 0;
}

@keyframes galleryFade {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

.product-gallery__prev,
.product-gallery__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(8, 2, 2, 0.55);
  color: #e8d5a8;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.product-gallery__prev:hover,
.product-gallery__next:hover,
.product-gallery__prev:focus-visible,
.product-gallery__next:focus-visible {
  background: rgba(155, 28, 28, 0.8);
}
.product-gallery__prev { left: 10px; }
.product-gallery__next { right: 10px; }

.product-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-sm);
}

.product-gallery__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 1px solid rgba(232, 213, 168, 0.4);
  background: transparent;
  padding: 0;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition);
}
.product-gallery__dot.is-active {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

/* --- Price block --- */
.product-price {
  margin: var(--spacing-md) 0;
}
.product-price__old {
  display: block;
  text-decoration: line-through;
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  margin-bottom: 4px;
}
.product-price__badge {
  display: inline-block;
  background: var(--color-primary-dark);
  color: #e8d5a8;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  padding: 2px 10px;
  border-radius: 12px;
  margin-right: 8px;
  vertical-align: middle;
}
.product-price__current {
  font-family: var(--font-family-heading);
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  color: var(--color-link);
  font-weight: 700;
  vertical-align: middle;
}

/* --- Feature checklist --- */
.product-features {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: 0;
}
.product-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  color: var(--color-text);
}
.product-features li::before {
  content: "✓";
  color: var(--color-link);
  font-weight: 700;
  flex-shrink: 0;
}

/* --- Motif credit line --- */
.product-motif {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-base);
  color: var(--color-text-muted);
  margin: var(--spacing-md) 0;
}

.product-buy-btn {
  width: 100%;
  max-width: 320px;
  text-align: center;
}

/* --- Trust strip (real facts only, no fabricated reviews) --- */
.product-trust {
  list-style: none;
  margin: var(--spacing-md) 0;
  padding: var(--spacing-sm) 0 0;
  border-top: 1px solid rgba(232, 213, 168, 0.12);
}
.product-trust li {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 0;
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}
.product-trust svg {
  flex-shrink: 0;
  color: var(--color-link);
}

@media (max-width: 600px) {
  .product-gallery { max-width: 100%; }
}

/* === 28. BLOG CARD GRID (blog.html overview page) === */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: var(--spacing-md);
  margin: var(--spacing-lg) 0;
}

.blog-card {
  border: 1px solid rgba(232, 213, 168, 0.18);
  border-radius: var(--border-radius-lg);
  background: #241010;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.blog-card:focus-within {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
  border-color: var(--color-primary);
}

@media (hover: hover) {
  .blog-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.6);
    border-color: var(--color-primary);
  }
}

.blog-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.blog-card__link:hover,
.blog-card__link:focus {
  text-decoration: none;
  color: inherit;
}

.blog-card__img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0;
  border-radius: 0;
  background: #f4ede0;
}

.blog-card__body {
  padding: var(--spacing-md);
  border-top: 1px solid rgba(232, 213, 168, 0.12);
}

.blog-card__title {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  color: var(--color-header-text);
  margin-bottom: var(--spacing-sm);
}

.blog-card__excerpt {
  color: var(--color-text);
  font-size: var(--font-size-base);
  line-height: var(--line-height);
  margin-bottom: var(--spacing-sm);
}

.blog-card__more {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--color-link);
  font-weight: 600;
}
.blog-card:hover .blog-card__more,
.blog-card:focus-within .blog-card__more {
  color: var(--color-link-hover);
}

/* === 29. LEGAL PAGES (terms, privacy, legal notice) === */
.legal-meta {
  font-family: var(--font-family-ui);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--spacing-lg);
}

.legal-content h2 {
  margin-top: var(--spacing-xl);
  padding-bottom: 0.3em;
  border-bottom: 1px solid var(--color-border-light);
}

.legal-content h3 {
  margin-top: var(--spacing-lg);
  color: var(--color-header-text);
}

.legal-content h4 {
  margin-top: var(--spacing-md);
  color: var(--color-header-text);
  font-size: var(--font-size-base);
}

.legal-content ul,
.legal-content ol {
  margin: 0 0 var(--spacing-md) var(--spacing-lg);
}

.legal-content li {
  margin: 6px 0;
  line-height: var(--line-height);
}

.legal-content dl {
  margin: 0 0 var(--spacing-md);
}
.legal-content dt {
  font-weight: 600;
  color: var(--color-header-text);
  margin-top: var(--spacing-sm);
}
.legal-content dd {
  margin: 2px 0 0 var(--spacing-md);
  color: var(--color-text);
}
