/* =========================
   BASE / RESET
========================= */

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

  html {
    scroll-behavior: smooth;
  }

  body {
    font-family: 'Ysabeau Infant', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    background: #fff;
    color: #000;
  }

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

  /* =========================
     MAIN SPACING
  ========================= */

  main {
    margin-block: 2rem;
  }

  /* Artikel-Abstand */
  main > article + article {
    margin-top: 3rem;
  }


  /* =========================
     TYPOGRAPHY
  ========================= */

  main h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #24245d;
    text-align: center;
    line-height: 1.1;
  }

  main h3 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    color: #24245d;
    text-align: center;
    line-height: 1.2;
  }

  main h4 {
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    color: #000;
    text-align: center;
    line-height: 1.3;
  }

  /* Abstand unter Headlines */
  main h2 + *,
  main h3 + *,
  main h4 + * {
    margin-top: 0.8rem;
  }

  /* Titel */
  main .title {
    text-align: center;
  }

  main .title .outbs {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 0.1em;
    letter-spacing: 0.05em;
    color: #101010;
  }

  main .sign-bs {
    font-weight: bold;
    color: #24245d;
  }


  /* =========================
     SECTION (NEU)
  ========================= */

  .c-section {
    padding-block: clamp(2.5rem, 6vw, 2rem);
  }

  /* Varianten */
  .c-section--alt {
    background: #f7f7f7;
  }

  .c-section--soft {
    background: #efefef;
  }

  .c-section--highlight {
    background: #e9e6dd;
  }

  /* Content Breite */
  .c-section--narrow .l-container {
    max-width: 900px;
  }

  /* Erste / letzte Section */
  main .c-section:first-child {
    padding-top: clamp(2rem, 5vw, 4rem);
  }

  main .c-section:last-child {
    padding-bottom: clamp(3rem, 6vw, 6rem);
  }

  /* Trennung */
  .c-section + .c-section {
    /* border-top: 1px solid #eee; */
  }


/* =========================
   LAYOUT: CONTAINER
========================= */

  .l-container {
    max-width: 1200px;
    margin-inline: auto;
    padding-inline: 1rem;
  }

  /* größere Screens */
  @media (min-width: 1024px) {
    .l-container {
      padding-inline: 2rem;
    }
  }

  @media (min-width: 1400px) {
    .l-container {
      max-width: 1300px;
    }
  }


/* =========================
   GRID SYSTEM
========================= */

  .l-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);

    /* 👉 nur EIN zentrales Spacing-System */
    gap: 3rem 1.5rem;
  }

  /* Default: alles full width */
  .l-grid > * {
    grid-column: span 12;
  }


  /* =========================
     COLUMNS (RESPONSIVE)
  ========================= */

  @media (min-width: 768px) {

    .l-col-12 { grid-column: span 12; }
    .l-col-8  { grid-column: span 8; }
    .l-col-6  { grid-column: span 6; }
    .l-col-4  { grid-column: span 4; }
    .l-col-3  { grid-column: span 3; }

  }


  /* =========================
     OPTIONAL: CONTENT FLOW
  ========================= */

  /* 👉 ersetzt deine alten margin-top Hacks */
  .l-flow > * + * {
    margin-top: 0.8rem;
  }


  /* =========================
     OPTIONAL: Stack + FLEX COLUMN
  ========================= */

  /* WICHTIG: EINHEITLICHES STACKING */
  .l-stack-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }
  
  /* wenn du innerhalb einer Column Flex willst */
  .l-flex-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .l-flex-row {
    display: flex;
    flex-direction: row;

    justify-content: space-evenly;
    align-items: center;

    gap: 0.8rem;
  }


  /* =========================
     UTILITIES
  ========================= */

  .sec-bg {
    background-color: #cbcab8;
  }

  .c-center {
    text-align: center;
  }

  .c-media-center {
    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;
    
    gap: 1rem;
  }


/* =========================
   COMPONENT: HERO
========================= */

  .c-hero {
    position: relative;
    height: 340px;

    background: url('/images/website/cover-touren-ostsee.png') center/cover no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
  }

  /* Overlay für Lesbarkeit */
  .c-hero-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.45),
      rgba(0,0,0,0.25),
      rgba(0,0,0,0.45)
    );
  }

  /* Content Box */
  .c-hero-content {
    position: relative;
    z-index: 2;

    background: rgba(255,255,255,0.75);
    backdrop-filter: blur(6px);

    padding: 28px 65px;
    border-radius: 16px;

    text-align: center;

    box-shadow:
      0 10px 30px rgba(0,0,0,0.2),
      inset 0 1px 0 rgba(255,255,255,0.4);

    animation: fadeUp 0.7s ease;
  }

  /* Typography */
  .c-hero-content h1 {
    font-size: 2.6rem;
    letter-spacing: 1.5px;
    color: #222;
  }

  .c-hero-content p {
    margin-top: 10px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #555;
  }


  /* =========================
     NAV (OVER HERO)
  ========================= */

  #navigation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    /* Verlauf über Hero */
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.0)
    );

    transition:
      background 0.3s ease,
      box-shadow 0.3s ease;
  }

  /* Scroll Zustand */
  #navigation.scrolled {
    position: sticky;
    top: 0;

    background: #f2f2f2;
    border-bottom: 1px solid #ddd;
  }

  /* Wrapper */
  #navigation > article {
    max-width: 1300px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0.4rem 1rem;
  }


  /* =========================
     NAV LINKS
  ========================= */

  #navigation .dropdown {
    position: relative;
  }

  #navigation .dropdown > a {
    display: block;
    padding: 0.6rem 0.8rem;

    color: #fff;
    text-decoration: none;
    font-size: 1.4rem;

    transition: opacity 0.2s ease;
  }

  /* Scroll → dunkle Schrift */
  #navigation.scrolled .dropdown > a {
    color: #111;
  }

  /* Hover */
  #navigation .dropdown > a:hover {
    opacity: 0.8;
  }

  /* Unterstrich deaktiviert */
  #navigation .dropdown > a::after {
    display: none;
  }


  /* =========================
     DROPDOWN (DESKTOP)
  ========================= */

  .dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 220px;

    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(6px);

    border: 1px solid #ddd;
    border-radius: 6px;

    padding: 0.5rem 0;

    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;

    transition: all 0.25s ease;
  }

  .dropdown:hover .dropdown-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  /* Links */
  .dropdown-content a {
    display: block;
    padding: 0.5rem 1rem;

    color: #222;
    text-decoration: none;
    font-size: 1.2rem;
  }

  .dropdown-content a:hover {
    background: rgba(0,0,0,0.05);
  }

  .dropdown-content p {
    padding: 0.5rem 1rem;
    color: #222;
    font-size: 1.2rem;
  }


  /* =========================
     MOBILE NAV
  ========================= */

  .c-nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.6rem;
    cursor: pointer;
  }


  /* =========================
     RESPONSIVE
  ========================= */

  @media (max-width: 768px) {

    /* HERO */
    .c-hero {
      height: 260px;
    }

    .c-hero-content {
      background: rgba(255,255,255,0.6);
      padding: 16px 20px;
      max-width: 90%;
    }

    .c-hero-content h1 {
      font-size: 1.6rem;
    }

    .c-hero-content p {
      font-size: 0.9rem;
    }

    /* NAV */
    #navigation > article {
      flex-wrap: wrap;
    }

    .c-nav-toggle {
      display: block;
    }

    #navigation .dropdown {
      width: 100%;
      display: none;
    }

    #navigation.open .dropdown {
      display: block;
    }

    /* dunkler Hintergrund für Lesbarkeit */
    #navigation.open {
      background: rgba(20,20,20,0.95);
      backdrop-filter: blur(10px);
    }

    #navigation.open .dropdown > a {
      color: #fff;
    }

    #navigation.open .dropdown-content a,
    #navigation.open .dropdown-content p {
      color: #fff;
    }

    /* Accordion Dropdown */
    .dropdown-content {
      position: static;
      display: none;

      opacity: 1;
      transform: none;
      pointer-events: auto;

      border: none;
      background: rgba(255,255,255,0.08);
    }

    .dropdown.open .dropdown-content {
      display: block;
    }
  }


  /* =========================
     ANIMATION
  ========================= */

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }


/* =========================
   COMPONENT: CONTENT BLOCK
========================= */

  .c-content {
    display: grid;
    gap: 2rem;
  }

  /* Mobile = untereinander */
  .c-content__text,
  .c-content__media {
    width: 100%;
  }

  /* =========================
     DESKTOP LAYOUTS
  ========================= */

  @media (min-width: 768px) {

    /* Standard: Text groß, Bild klein */
    .c-content--split {
      grid-template-columns: 2fr 1fr;
    }

    /* Reverse: Bild links, Text rechts */
    .c-content--split.c-content--reverse {
      grid-template-columns: 1fr 2fr;
    }

    /* Reihenfolge tauschen */
    .c-content--reverse .c-content__text {
      order: 2;
    }

    .c-content--reverse .c-content__media {
      order: 1;
    }

    /* Varianten */

    .c-content--wide {
      grid-template-columns: 3fr 1fr;
    }

    .c-content--wide.c-content--reverse {
      grid-template-columns: 1fr 3fr;
    }

    .c-content--equal {
      grid-template-columns: 1fr 1fr;
    }
  }


  /* =========================
     MEDIA
  ========================= */

  .c-content__media {
    overflow: hidden;
  }

  .c-content__media img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* Fixe Bildhöhe (optional) */
  .c-content--fixed-media .c-content__media {
    aspect-ratio: 4 / 3;
  }

  .c-content--fixed-media .c-content__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }


  /* =========================
     SPACING BETWEEN BLOCKS
  ========================= */

  .c-content + .c-content {
    margin-top: 1rem;
  }


/* =========================
   COMPONENT: INFOBOX
========================= */

  .infobox {
    padding: 1.2rem 1.4rem;
    border-radius: 10px;

    background: #f5f5f5;
    border: 1px solid #ddd;

    color: #222;
    line-height: 1.6;

    text-align: left;

    transition:
      transform 0.15s ease,
      box-shadow 0.2s ease,
      border-color 0.2s ease;
  }

  /* Hover */
  .infobox:hover {
    transform: translateY(-2px);
    border-color: #bbb;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  }

  /* Einleitung */
  .infobox.sec-bg {
    background: #e9e6dd;
    border-color: #d6d2c8;
    text-align: center;
    font-weight: 500;
  }

  /* Varianten */
  .infobox--soft {
    background: #fafafa;
    border-color: #eee;
  }

  .infobox--highlight {
    background: #dadada;
    border-color: #1c1c1c;

    text-align: center;
  }

  .infobox--note {
    background: #fff;
    border: 1px dotted #1c1c1c;
  }


  /* =========================
     INNER SPACING
  ========================= */

  .infobox > * + * {
    margin-top: 0.6rem;
  }

  /* Headlines in Box */
  .infobox h3,
  .infobox h4 {
    text-align: left;
  }


  /* =========================
     SPACING (OPTIONAL)
  ========================= */

  .infobox + .infobox {
    margin-top: 1rem;
  }


/* =========================
   LISTS (GLOBAL)
========================= */

  /* Reset nur im Content */
  main ul,
  main ol {
    margin: 1.2rem 0;
    padding-left: 0;
    list-style: none;
  }


  /* =========================
     UL (Dash Style)
  ========================= */

  main ul li {
    position: relative;
    padding-left: 1.4rem;
    margin-bottom: 0.6rem;
  }

  main ul li::before {
    content: "–";
    position: absolute;
    left: 0;
    top: 0;

    color: #24245d;
    font-weight: 500;
  }


  /* =========================
     OL (Big Numbers)
  ========================= */

  main ol {
    counter-reset: item;
  }

  main ol li {
    position: relative;
    padding-left: 2.6rem;
    margin-bottom: 0.8rem;

    counter-increment: item;

    border-right: 2px solid #e0e0e0;
  }

  main ol li::before {
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;

    font-size: 1.8rem;
    font-weight: 500;
    line-height: 1;

    color: #24245d;
  }


  /* =========================
     SMART SPACING
  ========================= */

  main li:last-child {
    margin-bottom: 0;
  }

  h3 + ul,
  h4 + ul,
  p + ul,
  h3 + ol,
  h4 + ol,
  p + ol {
    margin-top: 1rem;
  }


  /* =========================
     INFOBOX INTEGRATION
  ========================= */

  .infobox ul li::before {
    color: #666;
  }

  .infobox ol li::before {
    color: #000;
  }


  /* =========================
     RESPONSIVE
  ========================= */

  @media (max-width: 768px) {

    .infobox {
      padding: 1rem 1.1rem;
    }

    .infobox:hover {
      transform: none;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    }

    main ul li {
      padding-left: 1.2rem;
    }

    main ol li {
      padding-left: 2.2rem;
    }

    main ol li::before {
      font-size: 1.5rem;
    }
  }


/* =========================
   COMPONENT: BOX - CARDs LIKE
========================= */

  .c-box-basic {
    width: 100%;

    background: #fff;
    border-radius: 10px;

    padding: 1.5rem;
    margin: 0;

    border: 1px solid #ccc;
    background: linear-gradient(to bottom, #fff, #fafafa);

    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .c-box-basic:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }


  .c-box-basic h3 {
    text-align: center;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
  }

  .c-box-basic p {
    text-align: center;
    color: #666;
    margin-bottom: 1rem;
  }


  .c-box-basic ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
  }

  .c-box-basic li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 6px;

    font-size: 1.1rem;
  }


  .c-box-basic::before {
    content: "Empfehlung";
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 0.95rem;
    padding: 4px 8px;
    border-radius: 6px;
    margin-bottom: 10px;
    font-weight: bold;
  }


/* =========================
   COMPONENT: PRODUCT GRID
========================= */

  .c-product-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 10px;

    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .c-product-grid::-webkit-scrollbar {
    height: 6px;
  }

  .c-product-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
  }

  /* Desktop */
  @media (min-width: 1024px) {
    .c-product-grid {
      justify-content: space-evenly;
      overflow: visible;
      flex-wrap: wrap;
    }
  }


  /* =========================
     COMPONENT: PRODUCT CARD
  ========================= */

  .c-card {
    display: flex;
    flex-direction: column;

    flex: 0 0 260px;
    max-width: 260px;

    padding: 1rem;
    border-radius: 10px;

    background: #fff;
    border: 1px solid #ddd;

    transition:
      transform 0.2s ease,
      box-shadow 0.2s ease;

    scroll-snap-align: start;
  }

  .c-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  }


  /* =========================
     CARD CONTENT
  ========================= */

  .c-card-body {
    flex-grow: 1;
    text-align: center;
  }

  .c-card-title {
    font-size: 1.3rem;
  }

  .c-card-subtitle {
    font-size: 1.1rem;
    color: #666;

    text-align: center;
  }


  /* =========================
     MEDIA
  ========================= */

  .c-card-media {
    margin: 1rem 0;
    aspect-ratio: 1 / 1;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .c-card-media img {
    max-height: 100%;
    object-fit: contain;
  }


  /* =========================
     FOOTER (fix bottom)
  ========================= */

  .c-card-footer {
    margin-top: auto;

    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    align-items: center;
  }

  .c-card-price {
    font-weight: bold;
    font-size: 1.3rem;
  }


  /* =========================
     FORM (ADD TO CART)
  ========================= */

  .c-card-form {
    display: flex;
    gap: 0.4rem;
  }

  .c-card-form input[type="number"] {
    width: 55px;
    padding: 0.3rem;

    border: 1px solid #ccc;
    border-radius: 4px;

    text-align: center;
  }

  .c-card-form input[type="submit"] {
    padding: 0.4rem 0.7rem;

    border: none;
    border-radius: 4px;

    background: #24245d;
    color: #fff;

    cursor: pointer;
    transition: background 0.2s ease;
  }

  .c-card-form input[type="submit"]:hover {
    background: #000;
  }


  /* =============================
     MINI CART OVERLAY
  ============================= */

  #mini-cart-overlay {
    position: fixed;
    inset: 0;

    background: rgba(0,0,0,0.35);

    opacity: 0;
    pointer-events: none;

    transition: opacity 0.3s ease;
    z-index: 9998;
  }

  #mini-cart-overlay.active {
    opacity: 1;
    pointer-events: auto;
  }


  /* =============================
     MINI CART DRAWER
  ============================= */

  #mini-cart {
    position: fixed;
    top: 0;
    right: 0;

    width: 380px;
    height: 100%;

    transform: translateX(100%);
    transition: transform 0.3s ease;

    background: rgba(245,245,245,0.95);
    backdrop-filter: blur(6px);

    box-shadow: -4px 0 20px rgba(0,0,0,0.15);
    z-index: 9999;

    display: flex;
    flex-direction: column;
  }

  #mini-cart.active {
    transform: translateX(0);
  }


  /* =============================
     HEADER
  ============================= */

  .mini-cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 16px;
    background: #e0e0e0;
    border-bottom: 1px solid #ccc;

    color: #000;
  }

  .mini-cart-header h2 {
    font-size: 1.3rem;
  }

  .mini-cart-header button {
    background: none;
    border: none;
    font-size: 18px;
    cursor: pointer;
  }


  /* =============================
     CONTENT
  ============================= */

  #mini-cart-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto;

    color: #000;
  }


  /* =============================
     ITEM LIST
  ============================= */

  .mini-cart-items {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }


  /* =============================
     ITEM
  ============================= */

  .mini-cart-item {
    display: grid;
    grid-template-columns: 60px 1fr 30px;
    gap: 10px;

    padding: 10px;
    border-radius: 8px;

    background: rgba(255,255,255,0.85);

    transition: 0.2s;
  }

  .mini-cart-item:hover {
    transform: translateY(-1px);
  }


  /* IMAGE */
  .mini-cart-img img {
    width: 60px;
    height: 60px;
    object-fit: contain;
  }


  /* INFO */
  .mini-cart-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .mini-cart-title {
    font-size: 0.9rem;
  }


  /* CONTROLS */
  .mini-cart-controls {
    display: inline-flex;
    gap: 5px;

    background: #f2f2f2;
    padding: 2px 5px;
    border-radius: 6px;
  }

  .mini-cart-controls button {
    width: 24px;
    height: 24px;

    border: none;
    background: #ddd;
    border-radius: 4px;

    cursor: pointer;
  }

  .mini-cart-controls button:hover {
    background: #bbb;
  }


  /* REMOVE */
  .mini-cart-remove button {
    background: none;
    border: none;
    cursor: pointer;
    color: #888;
  }

  .mini-cart-remove button:hover {
    color: #d00;
  }


  /* =============================
     TOTAL
  ============================= */

  .mini-cart-total {
    margin-top: 15px;
    padding-top: 10px;
    border-top: 2px solid #ddd;

    display: flex;
    justify-content: space-between;
    font-size: 1rem;
  }


  /* =============================
     FOOTER
  ============================= */

  .mini-cart-footer {
    padding: 14px;
    border-top: 1px solid #ccc;
  }

  .mini-cart-footer a {
    display: block;
    text-align: center;

    padding: 12px;
    border-radius: 6px;

    background: #2f2f2f;
    color: #fff;
    text-decoration: none;

    transition: background 0.2s ease;
  }

  .mini-cart-footer a:hover {
    background: #444;
  }


  /* =============================
     CART PAGE
  ============================= */

  .cart-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .cart-item {
    display: flex;
    gap: 15px;
    align-items: center;

    padding: 15px;
    border-radius: 10px;

    background: #fff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  }

  .cart-img img {
    width: 70px;
    height: 70px;
    object-fit: contain;
  }

  .cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .cart-controls {
    display: flex;
    gap: 8px;
  }

  .cart-controls button {
    width: 28px;
    height: 28px;
    border: none;
    background: #eee;
    border-radius: 4px;
    cursor: pointer;
  }

  .cart-controls button:hover {
    background: #ccc;
  }

  .cart-total {
    margin-top: 20px;
    padding-top: 10px;
    border-top: 2px solid #ddd;

    display: flex;
    justify-content: space-between;
    font-size: 1.1rem;
  }


  /* =============================
     RESPONSIVE
  ============================= */

  @media (max-width: 600px) {

    #mini-cart {
      width: 100%;
    }

    .c-card {
      flex: 0 0 220px;
    }

  }


/* =========================
   COMPONENT: TOAST (Newsletter)
========================= */

    #toast {
      position: fixed;
      bottom: 20px;
      right: 20px;

      background: rgba(40, 40, 40, 0.95);
      color: #fff;

      padding: 12px 18px;
      border-radius: 8px;

      font-size: 0.95rem;

      box-shadow: 0 8px 25px rgba(0,0,0,0.25);

      opacity: 0;
      transform: translateY(20px);

      pointer-events: none;

      transition: background 0.23s ease, transform 0.3s ease, box-shadow 0.3s ease;

      z-index: 9999;

      backdrop-filter: blur(6px);
    }

    /* sichtbar */
    #toast.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Varianten */
    #toast.success {
      background: rgba(60, 160, 90, 0.95);
    }

    #toast.error {
      background: rgba(180, 60, 60, 0.95);
    }


    @media (max-width: 480px) {
      #toast {
        left: 10px;
        right: 10px;
        bottom: 15px;

        text-align: center;
      }
    }
    

/* =========================
   COMPONENT: FOOTER
========================= */

  .c-footer {
    background: linear-gradient(to top, #262626, #2f2f2f);
    color: #ccc;

    padding: 40px 20px 20px;

    box-shadow: 0 -6px 25px rgba(0,0,0,0.15);
  }


  /* =========================
     GRID
  ========================= */

  .c-footer-top {
    display: grid;
    gap: 30px;
  }

  @media (min-width: 768px) {
    .c-footer-top {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 1024px) {
    .c-footer-top {
      grid-template-columns: repeat(4, 1fr);
    }
  }


  /* =========================
     TYPO
  ========================= */

  .c-footer-col h3 {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #fff;
  }

  .c-footer-col p {
    font-size: 0.95rem;
    color: #bbb;
    line-height: 1.5;
  }


  /* =========================
     LISTS
  ========================= */

  .c-footer-col ul {
    list-style: none;
  }

  .c-footer-col li {
    margin-bottom: 6px;
  }

  .c-footer-col a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.95rem;

    transition: color 0.2s ease, opacity 0.2s ease;
  }

  .c-footer-col a:hover {
    color: #fff;
    opacity: 0.9;
  }

  /* kleiner Pfeil */
  .c-footer-col a::before {
    content: "›";
    margin-right: 6px;
    opacity: 0.4;
  }


  /* =========================
     CONTACT ITEMS
  ========================= */

  .c-footer-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;

    font-size: 0.95rem;
    color: #bbb;
  }


  /* =========================
     SOCIAL BUTTONS
  ========================= */

  .c-footer-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .c-social-btn {
    display: inline-block;
    padding: 6px 10px;

    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.15);

    background: rgba(255,255,255,0.03);
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;

    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .c-social-btn:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.3);
    color: #fff;
  }


  /* =========================
     NEWSLETTER
  ========================= */

  .c-footer-newsletter p {
    font-size: 0.9rem;
    margin-bottom: 10px;
  }

  .c-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .c-newsletter-form input {
    padding: 8px 10px;

    border-radius: 6px;
    border: 1px solid #555;

    background: #1f1f1f;
    color: #fff;
    font-size: 0.9rem;
  }

  .c-newsletter-form input::placeholder {
    color: #888;
  }

  .c-newsletter-form input:focus {
    outline: none;
    border-color: #888;
  }

  .c-newsletter-form button {
    padding: 8px;

    border: none;
    border-radius: 6px;

    background: #444;
    color: #fff;

    font-size: 0.9rem;
    cursor: pointer;

    transition: background 0.2s ease;
  }

  .c-newsletter-form button:hover {
    background: #666;
  }


  /* =========================
     FOOTER BOTTOM
  ========================= */

  .c-footer-bottom {
    margin-top: 30px;
    padding-top: 15px;

    border-top: 1px solid rgba(255,255,255,0.08);

    text-align: center;
    font-size: 0.85rem;
    color: #999;
  }


  /* Branding */
  .c-footer-brand {
    margin-bottom: 6px;
  }

  .c-footer-brand strong {
    display: block;
    color: #fff;
    font-size: 0.9rem;
  }

  .c-footer-brand span {
    font-size: 0.85rem;
    color: #777;
  }


  /* =========================
     MOBILE
  ========================= */

  @media (max-width: 768px) {

    .c-footer {
      text-align: center;
    }

    .c-footer-item {
      justify-content: center;
    }

    .c-footer-social {
      align-items: center;
    }

    .c-newsletter-form button {
      width: 100%;
    }

  }


/* =========================
   BUTTON (fix!)
========================= */

  .c-link-button {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #24245d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;

    font-size: 0.9rem;
    font-weight: bold;
    margin-top: 0.4rem;
  }

  .c-link-button:hover {
    background: #000;
    color: #ffffff;

    cursor: pointer;
  }


/* =========================
   LINKS (CONTENT)
========================= */

  main a {
    color: #24245d;
    text-decoration: none;
    border-bottom: 1px solid currentColor;

    transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  }

  main a:hover {
    color: #000;
    border-bottom-color: transparent;
  }

  main a:active {
    color: #101010;
  }


  .c-card a {
    text-decoration: none;
  }


/* =========================
   COMPONENT: DETAILS
========================= */

  .c-details {
    width: 100%;
    border: 1px dotted #2c2c2c;
    border-radius: 8px;
    padding: 1rem;
    background: #fff;
  }

  /* Summary (Kopfbereich) */
  .c-details-summary {
    cursor: pointer;
    font-weight: bold;
    list-style: none;

    display: flex;
    justify-content: space-between;
    align-items: center;

    transition: color 0.2s ease;
  }

  .c-details-summary:hover {
    color: #24245d;
  }

  /* Standard-Pfeil entfernen */
  .c-details-summary::-webkit-details-marker {
    display: none;
  }

  /* Eigener Pfeil */
  .c-details-summary::after {
    content: "▼";
    font-size: 0.9em;
    transition: transform 0.2s ease;
  }

  /* Pfeil drehen wenn offen */
  .c-details[open] .c-details-summary::after {
    transform: rotate(180deg);
  }

  /* Content */
  .c-details-content {
    margin-top: 2rem;
  }


  /* Smooth Animation (optional, modern) */
  ::details-content {
    transition: height 0.3s ease;
    overflow: hidden;
  }


/* =========================
   COMPONENT: FORM (FINAL)
========================= */

  .c-form {
    background: #fafafa;
    padding: 1.6rem;
    border-radius: 12px;
    border: 1px solid #e2e2e2;

    box-shadow: 0 4px 14px rgba(0,0,0,0.04);
    font-size: 1.05rem;
  }

  /* GRID */
  .c-form .l-grid {
    gap: 1.2rem 1rem;
  }


  /* =========================
     LABELS
  ========================= */

  .c-form label {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.35rem;

    color: #444;
    font-weight: 600; /* statt <strong> */
  }


  /* =========================
     INPUTS
  ========================= */

  .c-form input,
  .c-form select,
  .c-form textarea {
    width: 100%;
    padding: 0.7rem 0.75rem;

    border-radius: 8px;
    border: 1px solid #d6d6d6;

    font-family: inherit;
    font-size: 1rem;

    background: #fff;

    transition: 
      border-color 0.2s ease,
      box-shadow 0.2s ease;
  }

  /* HOVER */
  .c-form input:hover,
  .c-form select:hover,
  .c-form textarea:hover {
    border-color: #bbb;
  }

  /* FOCUS */
  .c-form input:focus,
  .c-form select:focus,
  .c-form textarea:focus {
    outline: none;
    border-color: #24245d;
    box-shadow: 0 0 0 3px rgba(36,36,93,0.08);
  }


  /* =========================
     TEXTAREA
  ========================= */

  .c-form textarea {
    min-height: 250px; /* reduziert */
    resize: vertical;
    line-height: 1.5;
  }


  /* =========================
     CHECKBOX (FIX!)
  ========================= */

  .c-form-checkbox {
    display: flex;
    align-items: flex-start; /* wichtig für mehrzeilig */
    gap: 0.7rem;

    font-size: 1.2rem;
    line-height: 1.4;
    cursor: pointer;
  }

  /* Checkbox größer + sauber ausgerichtet */
  .c-form-checkbox input {
    flex-shrink: 0;
    width: 22px;
    height: 22px;

    margin-top: 3px;
    margin-right: 12px;
    accent-color: #24245d;
  }


  /* =========================
     BUTTON
  ========================= */

  .c-form button.c-link-button {
    margin-top: 0.8rem;

    padding: 0.7rem 1.6rem;
    font-size: 1rem;

    border-radius: 8px;

    transition: 
      transform 0.15s ease,
      box-shadow 0.2s ease;
  }

  .c-form button.c-link-button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  }


  /* =========================
     DETAILS INTEGRATION
  ========================= */

  .c-details .c-form {
    margin-top: 1rem;
  }


  /* =========================
     MOBILE FIX (WICHTIG!)
  ========================= */

  @media (max-width: 768px) {

    .c-form {
      padding: 1.2rem;
    }

    /* ALLE SPALTEN VOLLBREITE */
    .c-form .l-col-8,
    .c-form .l-col-4 {
      grid-column: span 12;
    }

    /* TEXTAREA NICHT ZU HOCH */
    .c-form textarea {
      min-height: 140px;
    }

  }


/* =========================
   HELPER
========================= */
  .reiter {
        display: none;
    }

    .reiter.active {
        display: block;
    }