    /* ========= RESET ========= */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    html, body {
      height: 100%;
    }
    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #23401a;
      background-color: #f3f0dc; /* helles beige mit Gemüsehintergrund */
      -webkit-font-smoothing: antialiased;
    }
    img {
      max-width: 100%;
      display: block;
    }
    a {
      color: inherit;
      text-decoration: none;
    }
    ul {
      list-style: none;
    }

    :root {
      /* Farben aus dem Layout (leicht angenähert) */
      --green-main: #8bb932;
      --green-dark: #5f7d22;
      --green-nav: #a6ca4b;
      --green-card: #c8da7a;
      --green-card-footer: #b2cf60;
      --red-main: #d9252f;
      --bg-beige: #f3f0dc;
      --text-main: #23401a;
      --text-light: #ffffff;
      --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.18);

      --max-width: 1180px;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background-image: url("assets/bg-vegetables-pattern.jpg"); /* optional: Pattern */
      background-repeat: repeat;
      background-size: 1500px auto;
    }

    .page__inner {
      width: 100%;
      /* vorher: max-width: var(--max-width); margin: 0 auto; */
      max-width: 100%;        /* volle Breite auf dem Desktop */
      margin: 0;              /* keine Zentrierung mehr auf Container-Ebene */
      padding: 0px 24px 48px;
    }

    /* ========= HEADER / BRAND ========= */
    .header {
      background: linear-gradient(#8bb932, #8bb932);
      /* border-radius: 10px 10px 0 0 ;*/
      padding: 54px 24px 54px;
      color: var(--text-light);
      margin: 0 -24px;
      position: relative;
      z-index: 5;
    }
    .header__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 18px;
    }
    .header__logo {
      width: 86px;
      height: 86px;
      flex-shrink: 0;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
    .header__logo img {
      width: 110%;
      height: 110%;
      object-fit: cover;
    }
    .header__brand {
      display: flex;
      flex-direction: column;
      gap: 4px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }
    .header__brand-top {
      font-size: 15px;
    }
    .header__brand-main {
      font-size: 34px;
      font-weight: 700;
    }
    .header__brand-sub {
      font-size: 12px;
      letter-spacing: 0.16em;
    }

    /* ========= NAVIGATION ========= */
    .nav {
      background: var(--green-nav);
      border-top: 3px solid #cedf8c;
      border-bottom: 3px solid #cedf8c;
      margin: 0 -24px 0;
      position: sticky;
      top: 0;
      z-index: 10;
    }
    .nav__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 24px;
    }

    .nav__list {
      display: flex;
      gap: 2px;
    }
    .nav__link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 22px;
      font-size: 14px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      color: #23401a;
      position: relative;
      transition: background 0.18s ease-out, color 0.18s ease-out, transform 0.1s;
    }
    .nav__link span {
      position: relative;
      z-index: 1;
    }
    .nav__link::before {
      content: "";
      position: absolute;
      inset: 0;
      background: rgba(255, 255, 255, 0.12);
      opacity: 0;
      transition: opacity 0.18s ease-out;
    }
    .nav__link--active,
    .nav__link:hover {
      background: #d6e597;
      transform: translateY(-1px);
    }
    .nav__link:hover::before {
      opacity: 1;
    }

    /* Burger (mobile) */
    .nav__toggle {
      display: none;
      position: relative;
      width: 26px;
      height: 18px;
      cursor: pointer;
    }
    .nav__toggle-bar,
    .nav__toggle-bar::before,
    .nav__toggle-bar::after {
      content: "";
      position: absolute;
      height: 3px;
      width: 100%;
      background: #23401a;
      border-radius: 999px;
      transition: transform 0.2s ease-out, opacity 0.2s ease-out, top 0.2s ease-out;
    }
    .nav__toggle-bar {
      top: 50%;
      transform: translateY(-50%);
    }
    .nav__toggle-bar::before {
      top: -7px;
    }
    .nav__toggle-bar::after {
      top: 7px;
    }
    #nav-toggle {
      display: none;
    }
    #nav-toggle:checked + label .nav__toggle-bar {
      transform: rotate(45deg);
    }
    #nav-toggle:checked + label .nav__toggle-bar::before {
      top: 0;
      transform: rotate(-90deg);
    }
    #nav-toggle:checked + label .nav__toggle-bar::after {
      top: 0;
      opacity: 0;
    }

    /* ========= HERO (Schaf-Bild + Shop-Button) ========= */
    .hero {
      position: relative;
      margin: 0 -24px;
      margin-top: 0px;
      overflow: hidden;
      box-shadow: var(--shadow-soft);
    }

    .hero__image-wrapper {
    overflow: hidden;
    position: relative;
    height:33vh;
    max-height: 420px;       /* Bei dir bereits vorhanden */
    }

    .hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* füllt den Container */
    object-position: center center;  /* zentriert das Bild */
    }

    .hero__shop-badge {
      position: absolute;
      right: 8%;
      bottom: 18%;
      width: 160px;
      height: 160px;
      border-radius: 50%;
      background: var(--red-main);
      color: var(--text-light);
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 14px;
      font-weight:900;
      padding: 26px;
      box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
      rotate:15deg;
    }
    .hero__shop-badge-inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
    .hero__shop-icon {
      width: 32px;
      height: 32px;
     /* border-radius: 50%;*/
     /* border: 2px solid #ffffff;*/
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    /* ========= INTRO BAND ========= */
    .intro {
      background: var(--green-main);
      color: var(--text-light);
      padding: 22px 24px 28px;
      margin: 0 -24px;
    }
    .intro__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      text-align: center;
    }
    .intro__headline {
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin-bottom: 10px;
    }
    .intro__logo-line {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .intro__bioland {
      width: 70px;
      height: 70px;
      background: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 4px;
      overflow: hidden;
      flex-shrink: 0;
    }
    .intro__bioland img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }
    .intro__text {
      font-size: 14px;
      line-height: 1.7;
      max-width: 780px;
     /* margin: 0 auto;*/
    }

    /* ========= CARD-GRID ========= */
    .categories {
      margin: 0px -24px;
      padding: 24px;
      background-color:#CEDA98;
      border-radius: 0 0 10px 10px ;
    }
    .categories__grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 18px;

      /* NEU: Content auf große Monitore lesbar begrenzen */
      max-width: var(--max-width);
      margin: 0 auto;
    }
    .category-card {
      background: #ffffff;
      border-radius: 10px;
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      border: 3px solid var(--green-card);
    }
    .category-card__image {
      position: relative;
      background: #888;
      overflow: hidden;
    }
    .category-card__image img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    .category-card__title {
      padding: 10px 12px 0;
      font-size: 18px;
      font-weight: 600;
      text-align: center;
      color: var(--text-main);
    }
    .category-card__footer {
      margin-top: auto;
      background: var(--green-card-footer);
      text-align: center;
      padding: 9px 12px 10px;
      font-size: 14px;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      cursor: pointer;
      transition: background 0.18s ease-out, transform 0.1s ease-out;
    }
    .category-card__footer:hover {
      background: #cde785;
      transform: translateY(-1px);
    }

    /* ========= FOOTER ========= */
    .footer {
      margin-top: 40px;
      padding-top: 18px;
      border-top: 1px solid rgba(0, 0, 0, 0.12);
      font-size: 13px;
      color: #475833;
    }
    .footer__inner {
      max-width: var(--max-width);
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 14px;
      padding: 0 24px;
    }
    .footer__links {
      display: flex;
      gap: 18px;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 11px;
    }
    .footer__links a {
      border-bottom: 1px solid transparent;
      padding-bottom: 1px;
      transition: border-color 0.18s ease-out;
    }
    .footer__links a:hover {
      border-color: #475833;
    }

    /* ========= RESPONSIVE ========= */

    @media (max-width: 1024px) {
      .categories__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .hero__shop-badge {
        width: 140px;
        height: 140px;
        right: 6%;
        bottom: 14%;
      }
    }

    @media (max-width: 800px) {
      .header__inner {
        align-items: flex-start;
      }
      .header__logo {
        width: 72px;
        height: 72px;
      }
      .header__brand-main {
        font-size: 28px;
      }

      .nav__inner {
        padding: 0 16px;
      }
      .nav__toggle {
        display: block;
      }
      .nav__list {
        position: absolute;
        inset: 100% 0 auto;
        background: var(--green-nav);
        flex-direction: column;
        padding: 8px 16px 10px;
        transform-origin: top;
        transform: scaleY(0);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.18s ease-out, opacity 0.18s ease-out;
      }
      #nav-toggle:checked ~ ul.nav__list {
        transform: scaleY(1);
        opacity: 1;
        pointer-events: auto;
      }
      .nav__link {
        justify-content: flex-start;
        padding: 9px 6px;
      }

      .hero__shop-badge {
      /*  position: static;
        margin: 12px auto 0;*/
      }

      .intro {
        padding: 18px 16px 24px;
      }
      .intro__headline {
        font-size: 18px;
      }
      .intro__text {
        font-size: 13px;
      }

      .footer__inner {
        padding: 0 16px;
      }
    }

    @media (max-width: 640px) {
      .page__inner {
        padding: 12px 14px 32px;
      }
      .header {
        padding-inline: 14px;
      }
      .nav {
        margin-inline: -14px;
      }
      .hero,
      .intro,
      .categories {
        margin-inline: -14px;
      }
      .categories__grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .footer__inner {
        flex-direction: column;
        align-items: flex-start;
      }
    }

/* ==== HOFADEN-SEITE ==== */

.intro--hofladen {
  background: #d7e39d;      /* helles Grün wie im Layout */
  color: var(--text-main);
  margin-top: 0;
  text-align: left;
}

.intro--hofladen .intro__inner {
  text-align: left;
}

.intro--hofladen .intro__headline {
  color: var(--green-main);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 6px;
}

.intro__subheadline {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 18px;
}

.intro--hofladen .intro__text {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 10px;
}