/* ==========================================================================
   schokoladen.net – Haupt-Stylesheet
   Redesign 2026 — Modern & Clean Food-Magazin (Bon Appétit / NYT Cooking)
   ========================================================================== */

/* ==========================================================================
   1. CSS Custom Properties (Design-System Tokens)
   ========================================================================== */

:root {
  /* ── Farben ──────────────────────────────────────────────────────────── */
  --color-brand:        #2c1503;
  --color-brand-mid:    #7b3f1e;
  --color-accent:       #c8841a;
  --color-accent-hover: #a86c12;
  --color-bg:           #faf9f7;
  --color-bg-alt:       #f3ede4;
  --color-surface:      #ffffff;
  --color-text:         #1a1008;
  --color-text-muted:   #6b5545;
  --color-text-light:   #9c8474;
  --color-border:       #e8ddd0;
  --color-border-light: #f0e8dc;
  --color-focus:        #1a6fc4;
  --color-white:        #ffffff;
  --color-star:         #c8841a;
  --color-error:        #c0392b;
  --color-success:      #2d8a2d;

  /* Akzent-Soft für Hintergründe */
  --color-accent-soft:  #f5e6c8;

  /* ── Typografie ──────────────────────────────────────────────────────── */
  --font-sans:   "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-serif:  "Playfair Display", Georgia, "Times New Roman", serif;

  /* Alias (Abwärtskompatibilität) */
  --font-base:   var(--font-sans);

  /* Schriftgrößen */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;

  /* Alias (Abwärtskompatibilität) */
  --font-size-xs:   var(--text-xs);
  --font-size-sm:   var(--text-sm);
  --font-size-base: var(--text-base);
  --font-size-md:   var(--text-lg);
  --font-size-lg:   var(--text-xl);
  --font-size-xl:   var(--text-2xl);
  --font-size-2xl:  1.875rem;
  --font-size-3xl:  2.25rem;
  --font-size-4xl:  3rem;

  --line-height-tight: 1.2;
  --line-height-snug:  1.4;
  --line-height-base:  1.65;
  --line-height-loose: 1.85;

  --font-weight-normal:   400;
  --font-weight-medium:   500;
  --font-weight-semibold: 600;
  --font-weight-bold:     700;
  --font-weight-black:    900;

  /* ── Abstände ────────────────────────────────────────────────────────── */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ── Radien ──────────────────────────────────────────────────────────── */
  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  12px;
  --radius-xl:  16px;
  --radius-2xl: 24px;
  --radius-full: 9999px;

  /* ── Schatten ────────────────────────────────────────────────────────── */
  --shadow-sm: 0 1px 3px rgba(44,21,3,0.08);
  --shadow-md: 0 4px 16px rgba(44,21,3,0.10);
  --shadow-lg: 0 8px 32px rgba(44,21,3,0.14);
  --shadow-xl: 0 16px 48px rgba(44,21,3,0.18);

  /* ── Übergänge ───────────────────────────────────────────────────────── */
  --transition:      200ms ease;
  --transition-slow: 350ms ease;

  /* ── Layout ──────────────────────────────────────────────────────────── */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 4vw, 2rem);

  /* ── Gradienten ──────────────────────────────────────────────────────── */
  --gradient-hero:   linear-gradient(135deg, #2a1001 0%, #3d1c02 35%, #6b2e08 70%, #8b4a1a 100%);
  --gradient-accent: linear-gradient(90deg, var(--color-accent), var(--color-brand-mid));
}

/* ==========================================================================
   2. Reset & Base
   ========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  font-size: var(--text-base);
  line-height: 1.65;
  color: var(--color-text);
  background-color: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-accent-hover);
}

a:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

button {
  font-family: var(--font-sans);
  cursor: pointer;
}

ul,
ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  font-weight: 700;
}

/* ==========================================================================
   3. Accessibility
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -100%;
  left: var(--space-4);
  background: var(--color-brand);
  color: #fff;
  padding: 0.6em 1.2em;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  z-index: 9999;
  text-decoration: none;
  transition: top var(--transition);
}

.skip-link:focus {
  top: 0;
}

/* Visually hidden (screen-reader only) */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   4. Layout Utilities
   ========================================================================== */

.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.container--narrow {
  max-width: 780px;
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-content {
  min-height: 60vh;
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--space-6);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 900px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* Section */
.section {
  padding-block: var(--space-16);
}

.section + .section {
  padding-top: 0;
}

/* ==========================================================================
   5. Typografie-Utilities
   ========================================================================== */

.lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 65ch;
}

.text-small {
  font-size: var(--text-sm);
}

.text-muted {
  color: var(--color-text-muted);
}

.text-light {
  color: var(--color-text-light);
}

/* ==========================================================================
   6. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 0.65em 1.5em;
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: 600;
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  border: 1px solid transparent;
  text-decoration: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition),
              border-color var(--transition), transform var(--transition),
              box-shadow var(--transition);
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--color-focus);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--secondary {
  background: transparent;
  color: var(--color-brand);
  border-color: var(--color-border);
}

.btn--secondary:hover {
  background: var(--color-bg-alt);
  border-color: var(--color-brand);
  color: var(--color-brand);
}

/* Hero Buttons (auf dunklem Hintergrund) */
.btn--hero-primary {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.8em 1.8em;
  background: var(--color-accent);
  color: #fff;
  font-weight: 600;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(200, 132, 26, 0.4);
  border: none;
}

.btn--hero-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(200, 132, 26, 0.55);
  color: #fff;
}

.btn--hero-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.8em 1.8em;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: var(--text-base);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.25);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition);
  backdrop-filter: blur(6px);
}

.btn--hero-secondary:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

/* ==========================================================================
   7. Badges
   ========================================================================== */

.badge {
  display: inline-flex;
  padding: 0.25em 0.75em;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  vertical-align: middle;
}

.badge--tafel,
.badge--type {
  background: var(--color-brand);
  color: white;
}

.badge--not-bar,
.badge--kein-tafel {
  background: #7b6030;
  color: white;
}

.badge--alcohol,
.badge--alkohol {
  background: #c0392b;
  color: white;
}

.badge--cocoa,
.badge--single-origin {
  background: var(--color-accent);
  color: white;
}

.badge--country,
.badge--brand {
  background: var(--color-bg-alt);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   8. Stars / Rating Display
   ========================================================================== */

.rating-display {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.star {
  font-size: 1rem;
  line-height: 1;
}

.star--filled {
  color: var(--color-star);
}

.star--half {
  color: var(--color-star);
  opacity: 0.7;
}

.star--empty {
  color: var(--color-border);
}

/* ==========================================================================
   9. Site Header / Navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

/* Logo */
.site-logo {
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.site-logo__name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--color-brand);
  letter-spacing: -0.02em;
  text-decoration: none;
  font-weight: 700;
  line-height: 1;
}

.site-logo__tagline {
  display: none; /* auf Desktop ausblenden */
}

/* Main Nav */
.main-nav {
  display: flex;
  align-items: center;
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  list-style: none;
}

.main-nav__item {
  display: flex;
  align-items: center;
}

.main-nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--color-text);
  text-decoration: none;
  padding: 0.4em 0.8em;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--color-accent);
}

/* Nav Toggle (Hamburger) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: var(--space-2);
  background: none;
  border: none;
  cursor: pointer;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.nav-toggle:hover {
  background: var(--color-bg-alt);
}

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

/* Mobile Navigation */
@media (max-width: 767px) {
  .nav-toggle {
    display: flex;
  }

  .main-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--color-surface);
    border-bottom: 1px solid var(--color-border);
    padding: var(--space-4) var(--container-pad);
    box-shadow: var(--shadow-md);
  }

  .main-nav__list {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .main-nav__list--open {
    display: flex;
  }

  .main-nav__item {
    width: 100%;
  }

  .main-nav__link {
    display: block;
    width: 100%;
    padding: var(--space-3) var(--space-2);
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-border-light);
  }

  .main-nav__item:last-child .main-nav__link {
    border-bottom: none;
  }

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

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ==========================================================================
   10. Breadcrumb
   ========================================================================== */

.breadcrumb ol {
  display: flex;
  gap: var(--space-2);
  list-style: none;
  padding: var(--space-6) 0 var(--space-4);
  flex-wrap: wrap;
}

.breadcrumb li {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  display: flex;
  align-items: center;
}

.breadcrumb li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  color: var(--color-border);
}

.breadcrumb a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb a:hover {
  color: var(--color-accent);
}

/* Breadcrumb on dark backgrounds */
.breadcrumb--light ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.35rem;
  list-style: none;
  padding: 0;
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
}

.breadcrumb--light li {
  display: flex;
  align-items: center;
  color: rgba(255, 255, 255, 0.65);
}

.breadcrumb--light li + li::before {
  content: "/";
  margin-right: 0.35rem;
  color: rgba(255, 255, 255, 0.4);
}

.breadcrumb--light a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color var(--transition);
}

.breadcrumb--light a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.breadcrumb--light [aria-current="page"] {
  color: rgba(255, 255, 255, 0.55);
}

/* ==========================================================================
   11. Page Hero (Übersichtsseiten)
   ========================================================================== */

.page-hero {
  background: var(--color-brand);
  color: white;
  padding: var(--space-16) 0 var(--space-12);
}

.page-hero__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.page-hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-3);
  display: block;
}

.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-4);
}

.page-hero__desc {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  max-width: 55ch;
  line-height: 1.6;
}

/* ==========================================================================
   12. Filter Bar (Sorten-Übersicht)
   ========================================================================== */

.filter-bar {
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
  position: sticky;
  top: 64px;
  z-index: 90;
}

.filter-bar__inner {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-wrap: wrap;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}

.filter-bar__label {
  font-size: var(--text-xs);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.35em 0.9em;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

.filter-btn:hover,
.filter-btn--active {
  background: var(--color-brand);
  border-color: var(--color-brand);
  color: #fff;
}

/* ==========================================================================
   13. Product Card
   ========================================================================== */

.product-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.product-card__image-wrap {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-bg-alt);
  flex-shrink: 0;
}

.product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image-wrap img {
  transform: scale(1.03);
}

.product-card__body {
  padding: var(--space-5);
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.product-card__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-1);
  margin-bottom: var(--space-1);
}

.product-card__type-badge {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-accent);
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  padding: 0.15em 0.6em;
  border: 1px solid var(--color-border-light);
}

.product-card__brand {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 600;
}

.product-card__category {
  font-size: var(--text-xs);
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-brand);
  line-height: 1.3;
  flex: 1;
}

.product-card__name a {
  color: inherit;
  text-decoration: none;
}

/* Block-link covering the whole card */
.product-card__link {
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: var(--radius-xl);
}

.product-card__rating {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: auto;
  padding-top: var(--space-2);
  border-top: 1px solid var(--color-border-light);
}

.product-card__rating-value {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-brand);
}

.product-card__cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: var(--space-1);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: var(--space-2);
  transition: color var(--transition);
}

.product-card__cta:hover {
  color: var(--color-accent-hover);
}

/* ==========================================================================
   14. Sorten Card (Alias für product-card)
   ========================================================================== */

.sorten-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}

.sorten-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   15. Brand Card
   ========================================================================== */

.brand-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
  border: 1px solid var(--color-border-light);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.brand-card__header {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-6);
  background: var(--color-bg-alt);
}

.brand-card__body {
  padding: var(--space-5);
}

.brand-card__name {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-brand);
  margin-bottom: var(--space-2);
  line-height: 1.2;
}

.brand-card__type {
  font-size: var(--text-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.brand-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.brand-card__link {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  z-index: 0;
}

/* ==========================================================================
   16. Produkt-Hero (Sortenseiten – Kernstück)
   ========================================================================== */

.product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 420px;
  background: var(--color-surface);
}

.product-hero__image {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-alt);
}

.product-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-hero__info {
  padding: var(--space-10) var(--space-12);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.product-hero__eyebrow {
  font-size: var(--text-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.product-hero__title {
  font-family: var(--font-serif);
  font-size: var(--text-4xl);
  line-height: 1.15;
  color: var(--color-brand);
  letter-spacing: -0.02em;
}

.product-hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.product-hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.product-hero__score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-brand);
  line-height: 1;
}

.product-hero__stars {
  display: flex;
  align-items: center;
  gap: 2px;
}

.product-hero__star {
  font-size: 1.1rem;
  color: var(--color-star);
}

.product-hero__star--empty {
  color: var(--color-border);
}

.product-hero__rating-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.product-hero__lead {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: 1.6;
}

.product-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-accent);
  text-decoration: none;
  margin-top: var(--space-2);
  transition: color var(--transition);
}

.product-hero__cta:hover {
  color: var(--color-accent-hover);
}

@media (max-width: 767px) {
  .product-hero {
    grid-template-columns: 1fr;
  }

  .product-hero__image {
    min-height: 260px;
  }

  .product-hero__info {
    padding: var(--space-8) var(--space-6);
  }

  .product-hero__title {
    font-size: var(--text-3xl);
  }
}

/* ==========================================================================
   17. Produkt-Body / Detail-Body
   ========================================================================== */

.product-body {
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-12) var(--container-pad);
}

.product-body__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
}

@media (max-width: 767px) {
  .product-body__grid {
    grid-template-columns: 1fr;
  }
}

/* Ältere product-detail Klassen (Abwärtskompatibilität) */
.product-detail__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

@media (max-width: 767px) {
  .product-detail__header {
    grid-template-columns: 1fr;
  }
}

.product-detail__image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-bg-alt);
  aspect-ratio: 4/3;
}

.product-detail__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__facts {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-4);
}

.product-detail__strengths-weaknesses {
  margin-top: var(--space-8);
}

/* ==========================================================================
   18. Section Title
   ========================================================================== */

.section-title {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  color: var(--color-brand);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* ==========================================================================
   19. Spec Table (Produktprofil)
   ========================================================================== */

.spec-table {
  width: 100%;
  border-collapse: collapse;
}

.spec-table tr {
  border-bottom: 1px solid var(--color-border-light);
}

.spec-table tr:last-child {
  border-bottom: none;
}

.spec-table div {
  display: flex;
  align-items: baseline;
  border-bottom: 1px solid var(--color-border-light);
  padding: var(--space-3) var(--space-2);
}

.spec-table div:last-child {
  border-bottom: none;
}

.spec-table dt {
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: var(--text-sm);
  width: 45%;
  flex-shrink: 0;
}

.spec-table dd {
  color: var(--color-text);
  font-weight: 600;
  font-size: var(--text-sm);
  flex: 1;
}

/* ==========================================================================
   20. Flavor Bars (Geschmacksprofil)
   ========================================================================== */

.flavor-bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.flavor-bar-row {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  padding: var(--space-2) 0;
}

.flavor-bar-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  width: 90px;
  flex-shrink: 0;
}

.flavor-bar-track {
  flex: 1;
  height: 6px;
  background: var(--color-border);
  border-radius: var(--radius-full);
  overflow: hidden;
}

.flavor-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-accent), var(--color-brand-mid));
  border-radius: var(--radius-full);
  transition: width 0.5s ease;
}

.flavor-bar-value {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  width: 32px;
  text-align: right;
  flex-shrink: 0;
}

/* Flavor-Tags (Aromen-Notizen) */
.flavor-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
  margin: 0;
}

.flavor-tags li {
  display: inline-flex;
  padding: 0.3em 0.85em;
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
}

/* ==========================================================================
   21. Stärken & Schwächen
   ========================================================================== */

.sw-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 600px) {
  .sw-section {
    grid-template-columns: 1fr;
  }
}

/* Alias */
.sw-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
}

@media (max-width: 600px) {
  .sw-grid {
    grid-template-columns: 1fr;
  }
}

.sw-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.sw-list li {
  font-size: var(--text-sm);
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  line-height: 1.5;
}

.sw-list--strengths li::before {
  content: "✓";
  color: var(--color-success);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

.sw-list--weaknesses li::before {
  content: "✗";
  color: var(--color-error);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.1em;
}

/* ==========================================================================
   22. Tags / Occasions
   ========================================================================== */

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
}

.tag {
  display: inline-flex;
  padding: 0.35em 0.9em;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
  transition: background var(--transition), border-color var(--transition);
}

.tag:hover {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.occasion-tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  list-style: none;
  padding: 0;
}

.occasion-tags li {
  display: inline-flex;
  padding: 0.35em 0.9em;
  background: var(--color-bg-alt);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 500;
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}

/* ==========================================================================
   23. Infobox
   ========================================================================== */

.infobox {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
}

.infobox--info {
  background: #eef4fd;
  border-color: #b8d0f0;
}

.infobox__title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: var(--space-3);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

/* ==========================================================================
   24. FAQ Accordion
   ========================================================================== */

.faq-list {
  border-top: 1px solid var(--color-border);
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: var(--space-5) 0;
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--color-brand);
  font-family: var(--font-sans);
  transition: color var(--transition);
}

.faq-question:hover {
  color: var(--color-accent);
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--color-accent);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  margin-left: var(--space-4);
  line-height: 1;
}

.faq-question[aria-expanded="true"]::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: block;
  padding: 0 0 var(--space-5);
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
}

.faq-answer[hidden] {
  display: none;
}

/* ==========================================================================
   25. Top 10 List
   ========================================================================== */

.top10-list {
  counter-reset: top10;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.top10-item {
  counter-increment: top10;
  display: flex;
  align-items: center;
  gap: var(--space-5);
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-light);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
  color: inherit;
}

.top10-item:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-md);
}

.top10-item::before {
  content: counter(top10);
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-accent);
  min-width: 2rem;
  text-align: center;
  flex-shrink: 0;
}

/* ==========================================================================
   26. Glossary
   ========================================================================== */

.glossary-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-8);
}

.glossary-nav a {
  display: inline-flex;
  padding: 0.3em 0.75em;
  border-radius: var(--radius-md);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.glossary-nav a:hover {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.glossary-section {
  margin-bottom: var(--space-12);
}

.glossary-letter {
  font-family: var(--font-serif);
  font-size: var(--text-3xl);
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: var(--space-6);
  padding-bottom: var(--space-3);
  border-bottom: 2px solid var(--color-border);
}

.glossary-list {
  display: grid;
  gap: var(--space-6);
}

.glossary-term {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.glossary-term__word {
  font-family: var(--font-serif);
  font-size: var(--text-xl);
  font-weight: 700;
  color: var(--color-brand);
}

.glossary-term__def {
  font-size: var(--text-sm);
  line-height: 1.7;
  color: var(--color-text-muted);
  max-width: 70ch;
}

/* ==========================================================================
   27. Brand Hero (Markenseiten)
   ========================================================================== */

.brand-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  align-items: center;
}

.brand-hero__inner {
  container-type: inline-size;
  max-width: var(--container-max);
  margin-inline: auto;
  padding: var(--space-12) var(--container-pad);
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: var(--space-8);
}

.brand-hero__content {
  flex: 1 1 auto;
  min-width: 0;
  z-index: 1;
}

.brand-hero__name {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 5.5rem);
  color: white;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: var(--space-3);
}

.brand-hero__claim {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-5);
  max-width: 50ch;
  line-height: 1.5;
}

.brand-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.brand-chip {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: 600;
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  backdrop-filter: blur(4px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-hero__visual {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.brand-hero__monogram {
  font-family: var(--font-serif);
  font-size: 12rem;
  color: rgba(255, 255, 255, 0.08);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* Brand-Hero Farbpaletten */
.brand-hero--lindt          { background: linear-gradient(135deg, #8b0a1e 0%, #c8102e 100%); }
.brand-hero--ritter-sport   { background: linear-gradient(135deg, #a00010 0%, #e30613 100%); }
.brand-hero--milka          { background: linear-gradient(135deg, #4a2070 0%, #6b3fa0 100%); }
.brand-hero--ferrero        { background: linear-gradient(135deg, #5a4000 0%, #8b6914 100%); }
.brand-hero--kinder         { background: linear-gradient(135deg, #8b0a1e 0%, #c8102e 100%); }
.brand-hero--toblerone      { background: linear-gradient(135deg, #8b6900 0%, #c8a000 100%); }
.brand-hero--merci          { background: linear-gradient(135deg, #5a0808 0%, #8B1A1A 100%); }
.brand-hero--schogetten     { background: linear-gradient(135deg, #3a1a05 0%, #5c3317 100%); }
.brand-hero--hachez         { background: linear-gradient(135deg, #1a0800 0%, #3d1c02 100%); }
.brand-hero--niederegger    { background: linear-gradient(135deg, #5a1000 0%, #8B2500 100%); }
.brand-hero--feodora        { background: linear-gradient(135deg, #0a0500 0%, #2C1810 100%); }
.brand-hero--rausch         { background: linear-gradient(135deg, #0a1a0a 0%, #1a3a1a 100%); }
.brand-hero--reber          { background: linear-gradient(135deg, #5a4000 0%, #8B6914 100%); }

@media (max-width: 900px) {
  .brand-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }

  .brand-hero__visual {
    display: none;
  }

  .brand-hero__name {
    font-size: 2.5rem;
  }
}

@media (max-width: 600px) {
  .brand-hero {
    min-height: 260px;
  }

  .brand-hero__name {
    font-size: 2rem;
  }

  .brand-hero__claim {
    font-size: 0.95rem;
  }
}

/* ==========================================================================
   28. Brand Stats Bar
   ========================================================================== */

.brand-stats {
  background: linear-gradient(135deg, var(--color-accent-soft) 0%, #ede0c4 100%);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-4) 0;
}

.brand-stats__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 2rem;
  align-items: center;
}

.brand-stat {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}

.brand-stat__label {
  color: var(--color-text-muted);
  font-weight: 500;
}

.brand-stat__value {
  color: var(--color-text);
  font-weight: 600;
}

.brand-stat__sep {
  color: var(--color-border);
  margin-inline: var(--space-1);
}

/* ==========================================================================
   29. Brand Intro / Infobox Grid
   ========================================================================== */

.brand-intro {
  font-size: var(--text-base);
  line-height: 1.7;
  color: var(--color-text);
  max-width: 65ch;
}

.brand-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  margin: var(--space-8) 0;
}

@media (min-width: 768px) {
  .brand-intro-grid {
    grid-template-columns: 1fr 300px;
    gap: var(--space-12);
  }
}

.brand-infobox {
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  height: fit-content;
}

.brand-infobox__title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--color-brand);
  margin-bottom: var(--space-4);
  padding-bottom: var(--space-2);
  border-bottom: 2px solid var(--color-accent);
  display: inline-block;
}

.brand-infobox__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.brand-infobox__item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: var(--text-sm);
  gap: var(--space-2);
}

.brand-infobox__key {
  color: var(--color-text-muted);
  font-weight: 500;
  flex-shrink: 0;
}

.brand-infobox__val {
  color: var(--color-text);
  font-weight: 600;
  text-align: right;
}

/* ==========================================================================
   30. Products Heading mit Zähler
   ========================================================================== */

.products-heading {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin: var(--space-10) 0 var(--space-6);
}

.products-heading h2 {
  font-family: var(--font-serif);
  font-size: var(--text-2xl);
  font-weight: 700;
  color: var(--color-text);
  margin: 0;
  position: relative;
  padding-bottom: var(--space-2);
}

.products-heading h2::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent) 0%, transparent 100%);
  border-radius: 2px;
}

.products-heading__count {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  background: var(--color-bg-alt);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: 0.2rem 0.7rem;
}

/* ==========================================================================
   31. Site Footer
   ========================================================================== */

.site-footer {
  background: var(--color-brand);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-12) 0 var(--space-8);
  margin-top: var(--space-20);
}

.site-footer__inner {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--space-6);
}

.site-footer__nav {
  flex: 1 1 auto;
}

.site-footer__nav-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2) var(--space-4);
  list-style: none;
}

.site-footer__nav-link {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.site-footer__nav-link:hover {
  color: #fff;
}

.site-footer__legal {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.4);
  margin-top: var(--space-4);
}

.site-footer__copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
  flex-shrink: 0;
}

/* Aliases for footer */
.footer-copy {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.45);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  list-style: none;
}

.footer-nav a {
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: #fff;
}

@media (max-width: 600px) {
  .site-footer__inner {
    flex-direction: column;
  }

  .site-footer__copy {
    order: -1;
  }
}

/* ==========================================================================
   32. HOME HERO – Startseite
   ========================================================================== */

.home-hero {
  position: relative;
  background: linear-gradient(135deg, #2a1001 0%, #3d1c02 35%, #6b2e08 70%, #8b4a1a 100%);
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .home-hero {
    min-height: 600px;
  }
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero__deco {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  padding-top: var(--space-12);
  padding-bottom: var(--space-12);
  align-items: center;
}

@media (min-width: 900px) {
  .home-hero__inner {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
  }
}

.home-hero__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.home-hero__label {
  display: inline-block;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-accent);
  border: 1px solid rgba(200, 132, 26, 0.4);
  border-radius: var(--radius-full);
  padding: 0.3em 1em;
  width: fit-content;
}

.home-hero__title {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0;
}

@media (min-width: 768px) {
  .home-hero__title {
    font-size: 3.2rem;
  }
}

@media (min-width: 1100px) {
  .home-hero__title {
    font-size: 3.8rem;
  }
}

.home-hero__subtitle {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.65;
  max-width: 48ch;
  margin: 0;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-2);
}

.home-hero__stats {
  display: flex;
  gap: var(--space-8);
  padding-top: var(--space-4);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: var(--space-2);
}

.home-hero__stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.home-hero__stat-number {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1;
}

.home-hero__stat-label {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.home-hero__visual {
  display: none;
}

@media (min-width: 900px) {
  .home-hero__visual {
    display: block;
  }
}

/* Kachel-Grid */
.home-hero__choco-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: var(--space-3);
}

.choco-tile {
  border-radius: 14px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-4);
  min-height: 120px;
  position: relative;
  overflow: hidden;
  transition: transform 250ms ease;
}

.choco-tile:hover {
  transform: translateY(-4px);
}

.choco-tile span {
  font-family: var(--font-serif);
  font-size: var(--text-sm);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.9);
  position: relative;
  z-index: 1;
}

.choco-tile::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 60%);
  z-index: 0;
}

.choco-tile--1 { background: linear-gradient(135deg, #c8102e 0%, #8b0a1e 100%); }
.choco-tile--2 { background: linear-gradient(135deg, #e30613 0%, #a00010 100%); }
.choco-tile--3 { background: linear-gradient(135deg, #6b3fa0 0%, #4a2070 100%); }
.choco-tile--4 { background: linear-gradient(135deg, #1a3a1a 0%, #0a2010 100%); }
.choco-tile--5 { background: linear-gradient(135deg, #8b6914 0%, #5a4000 100%); }
.choco-tile--6 { background: linear-gradient(135deg, #3d1c02 0%, #1a0800 100%); }

.choco-tile--1 {
  grid-column: span 2;
  min-height: 140px;
}

/* ==========================================================================
   33. Responsive Helpers
   ========================================================================== */

@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .hide-desktop {
    display: none !important;
  }
}

/* ==========================================================================
   34. Focus / Reduced Motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ==========================================================================
   35. Print
   ========================================================================== */

@media print {
  .site-header,
  .site-footer,
  .nav-toggle,
  .filter-bar {
    display: none;
  }

  body {
    background: #fff;
    color: #000;
    font-size: 12pt;
  }

  a {
    color: #000;
    text-decoration: underline;
  }
}

/* ==========================================================================
   Ende style.css
   ========================================================================== */
