/* ============================================
   PILZWERK – Premium Swiss Mushroom Brand
   Dark Elegant Theme
   ============================================ */

/* === Variables === */
:root {
  --color-bg: #0c0f0c;
  --color-bg-elevated: #131813;
  --color-bg-card: #181e18;
  --color-bg-subtle: #1c231c;
  --color-surface: rgba(255,255,255,0.03);

  --color-text: #e8e4dc;
  --color-text-secondary: #a09888;
  --color-text-muted: #6b6358;

  --color-accent: #8b7a4a;
  --color-accent-light: #b09a5c;
  --color-accent-hover: #c4ad6a;

  --color-green: #2d4a35;
  --color-green-light: #3d6148;
  --color-border: rgba(255,255,255,0.06);
  --color-border-light: rgba(255,255,255,0.1);

  --color-whatsapp: #25d366;

  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  --container-max: 1200px;
  --container-narrow: 720px;
  --header-height: 72px;

  --radius: 8px;
  --radius-lg: 16px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* === Reset === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition);
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* === Layout === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

.container--narrow {
  max-width: var(--container-narrow);
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
}

/* === Typography === */
.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.section__label {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.section__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

.section__header--left {
  text-align: left;
}

.section__header--left .section__subtitle {
  margin: 0;
}

/* === Buttons === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 122, 74, 0.25);
}

.btn--outline {
  border: 1px solid var(--color-border-light);
  color: var(--color-text);
  background: transparent;
}

.btn--outline:hover {
  border-color: var(--color-text-secondary);
  background: rgba(255,255,255,0.04);
}

.btn--lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
}

.btn--full {
  width: 100%;
}

/* === Header === */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: all var(--transition);
}

.header--scrolled {
  background: rgba(12, 15, 12, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo__text {
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--color-text);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav__link {
  font-size: 0.88rem;
  font-weight: 400;
  color: var(--color-text-secondary);
  letter-spacing: 0.02em;
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--color-accent-light);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--color-text);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--color-accent-hover);
  color: #fff;
}

/* Mobile Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all var(--transition);
  border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* === Hero === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(12,15,12,0.4) 0%,
    rgba(12,15,12,0.6) 50%,
    rgba(12,15,12,0.95) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 6rem 0 4rem;
}

.hero__label {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 1.5rem;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  font-weight: 600;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.7);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.hero__contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}

.hero__contact a {
  color: rgba(255,255,255,0.6);
}

.hero__contact a:hover {
  color: var(--color-accent-light);
}

.hero__divider {
  opacity: 0.3;
}

.hero__scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.35);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* === Trust === */
.trust {
  border-bottom: 1px solid var(--color-border);
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
}

.trust__item {
  text-align: center;
  padding: 1.5rem 0.5rem;
}

.trust__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-accent-light);
  margin-bottom: 1.25rem;
}

.trust__title {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.trust__text {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === Sortiment === */
.sortiment__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

.product-card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}

.product-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
}

.product-card__content {
  padding: 1.75rem;
}

.product-card__name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-card__latin {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: 1rem;
}

.product-card__desc {
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.sortiment__note {
  text-align: center;
}

.sortiment__note-inner {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.75rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text-secondary);
  font-size: 0.9rem;
}

.sortiment__note-inner svg {
  color: var(--color-accent-light);
  flex-shrink: 0;
}

/* === Restaurants === */
.restaurants {
  background: var(--color-bg-elevated);
}

.restaurants__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.restaurants__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.restaurants__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurants__text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.restaurants__list {
  margin-bottom: 2rem;
}

.restaurants__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.restaurants__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
}

/* === Steps === */
.steps__grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 2rem;
}

.step {
  text-align: center;
  flex: 1;
  max-width: 280px;
  padding: 0 1.5rem;
}

.step__number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-accent);
  margin-bottom: 1rem;
  line-height: 1;
}

.step__title {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.step__line {
  width: 60px;
  height: 1px;
  background: var(--color-border-light);
  margin-top: 1.25rem;
  flex-shrink: 0;
}

.steps__note {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
}

/* === About === */
.about {
  background: var(--color-bg-elevated);
}

.about__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 4rem);
  align-items: center;
}

.about__text {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.about__image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* === FAQ === */
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq__item {
  border-bottom: 1px solid var(--color-border);
}

.faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 1.25rem 0;
  font-size: 1rem;
  font-weight: 500;
  text-align: left;
  color: var(--color-text);
  transition: color var(--transition);
}

.faq__question:hover {
  color: var(--color-accent-light);
}

.faq__question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
  color: var(--color-text-muted);
}

.faq__item.active .faq__question svg {
  transform: rotate(180deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition);
}

.faq__answer p {
  padding-bottom: 1.25rem;
  font-size: 0.92rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* === Kontakt === */
.kontakt {
  background: var(--color-bg-elevated);
}

.kontakt__layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 6vw, 3rem);
  align-items: start;
}

.kontakt__channels {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.kontakt__channel {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.kontakt__channel:hover {
  border-color: var(--color-border-light);
  background: rgba(255,255,255,0.05);
}

.kontakt__channel--wa {
  border-color: rgba(37,211,102,0.2);
}

.kontakt__channel--wa:hover {
  border-color: rgba(37,211,102,0.4);
  background: rgba(37,211,102,0.06);
}

.kontakt__channel--wa svg {
  color: var(--color-whatsapp);
}

.kontakt__channel svg {
  flex-shrink: 0;
  color: var(--color-text-muted);
}

.kontakt__channel-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.kontakt__channel-value {
  display: block;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--color-text);
}

/* Form */
.kontakt__form {
  display: flex;
  flex-direction: column;
}

.form__card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.form__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form__intro {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
}

.form__fields {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form__group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form__group input,
.form__group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
}

.form__group input::placeholder,
.form__group textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.form__group input:focus,
.form__group textarea:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139,122,74,0.15);
}

.form__group textarea {
  resize: vertical;
  min-height: 100px;
}

/* === CTA === */
.cta {
  border-top: 1px solid var(--color-border);
}

.cta__inner {
  text-align: center;
}

.cta__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.cta__text {
  font-size: 1.02rem;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* === Footer === */
.footer {
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer__logo {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.footer__address {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.35rem;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.footer__contact a {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
}

.footer__contact a:hover {
  color: var(--color-accent-light);
}

.footer__legal {
  display: flex;
  gap: 1.5rem;
}

.footer__legal a {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer__legal a:hover {
  color: var(--color-text-secondary);
}

.footer__bottom {
  padding-top: 1.5rem;
}

.footer__bottom p {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* === WhatsApp Sticky === */
.whatsapp-sticky {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  width: 56px;
  height: 56px;
  background: var(--color-whatsapp);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  z-index: 999;
  transition: all var(--transition);
}

.whatsapp-sticky:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 24px rgba(37,211,102,0.4);
}

/* === Reveal Animation === */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === Responsive === */
@media (max-width: 1024px) {
  .trust__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .restaurants__layout,
  .about__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .restaurants__image {
    order: -1;
  }

  .kontakt__layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--color-bg-card);
    border-left: 1px solid var(--color-border);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 1.5rem;
    transition: right var(--transition);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

  .nav__link {
    font-size: 1.1rem;
  }

  .nav__link--cta {
    text-align: center;
    margin-top: 0.5rem;
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .trust__grid .trust__item:last-child {
    grid-column: 1 / -1;
  }

  .sortiment__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steps__grid {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

  .step__line {
    width: 1px;
    height: 32px;
    margin: 0;
  }

  .form__row {
    grid-template-columns: 1fr;
  }

  .footer__inner {
    flex-direction: column;
    gap: 1.5rem;
  }

  .hero__subtitle br {
    display: none;
  }
}

@media (max-width: 480px) {
  .trust__grid {
    grid-template-columns: 1fr;
  }

  .trust__grid .trust__item:last-child {
    grid-column: auto;
  }

  .hero__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__actions .btn {
    width: 100%;
    max-width: 280px;
  }

  .hero__contact {
    flex-direction: column;
    gap: 0.35rem;
  }

  .hero__divider {
    display: none;
  }
}

/* ============================================
   SUBPAGE STYLES – Shop, Kontakt, Züchter
   ============================================ */

/* === Additional Variables === */
:root {
  --color-gold: #b09a5c;
  --color-gold-hover: #c4ad6a;
  --color-cream: rgba(255,255,255,0.04);
  --color-moss: #3d6148;
  --color-text-light: #a09888;
  --radius-md: 12px;
}

/* === Page Hero (Subpages) === */
.page-hero {
  padding: calc(var(--header-height) + 3rem) 0 3rem;
  background: var(--color-bg-elevated);
  border-bottom: 1px solid var(--color-border);
}

.page-hero__content {
  max-width: 720px;
}

.page-hero__breadcrumb {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 1rem;
}

.page-hero__breadcrumb a {
  color: var(--color-text-secondary);
}

.page-hero__breadcrumb a:hover {
  color: var(--color-accent-light);
}

.page-hero__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}

.page-hero__subtitle {
  font-size: 1.05rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* === Grid System === */
.grid {
  display: grid;
  gap: 2rem;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* === Card Component (Shop/Züchter) === */
.card {
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
}

.card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  background: var(--color-bg-subtle);
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.card:hover .card__image img {
  transform: scale(1.05);
}

.card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.3rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 20px;
  background: var(--color-accent);
  color: #fff;
}

.card__badge--green {
  background: var(--color-green-light);
}

.card__body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card__category {
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-accent-light);
  margin-bottom: 0.4rem;
}

.card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}

.card__text {
  font-size: 0.88rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.card__price {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-text);
}

.card__price small {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  font-weight: 400;
}

/* === Availability === */
.availability {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 500;
}

.availability--available {
  color: #4ade80;
}

.availability--limited {
  color: #facc15;
}

.availability--unavailable {
  color: #f87171;
}

.availability__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

/* === Button Variants === */
.btn--gold {
  background: var(--color-gold);
  color: #fff;
}

.btn--gold:hover {
  background: var(--color-gold-hover);
  transform: translateY(-1px);
}

.btn--sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.82rem;
}

.btn--cart {
  width: 100%;
  justify-content: center;
}

.btn--outline-white {
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  background: transparent;
}

.btn--outline-white:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* === Nav Active State === */
.nav__link--active {
  color: var(--color-text);
}

.nav__link--active::after {
  width: 100%;
}

.nav__cta {
  background: var(--color-accent);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius);
  font-weight: 500;
}

.nav__cta::after {
  display: none !important;
}

.nav__cta:hover {
  background: var(--color-accent-hover);
}

/* === Shop Filters === */
.shop-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.shop-filter {
  padding: 0.5rem 1.15rem;
  font-size: 0.82rem;
  font-weight: 500;
  border-radius: 20px;
  border: 1px solid var(--color-border);
  color: var(--color-text-secondary);
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.shop-filter:hover {
  border-color: var(--color-border-light);
  color: var(--color-text);
  background: rgba(255,255,255,0.04);
}

.shop-filter--active {
  background: var(--color-accent);
  border-color: var(--color-accent);
  color: #fff;
}

.shop-filter--active:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

/* === Footer Grid (Subpages) === */
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--color-border);
}

.footer__title {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text);
  margin-bottom: 1rem;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer__links li {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.footer__links a {
  color: var(--color-text-secondary);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--color-accent-light);
}

.footer__social {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  font-size: 1rem;
  transition: all var(--transition);
}

.footer__social a:hover {
  border-color: var(--color-border-light);
  background: rgba(255,255,255,0.06);
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.5rem;
}

.footer__bottom span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

/* === Contact Form (Subpage) === */
.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--color-text);
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: all var(--transition);
  outline: none;
  -webkit-appearance: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: var(--color-text-muted);
  opacity: 0.7;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(139,122,74,0.15);
}

.contact-form select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2 4l4 4 4-4' fill='none' stroke='%23a09888' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.contact-form select option {
  background: var(--color-bg-card);
  color: var(--color-text);
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  margin-bottom: 1.25rem;
}

/* === Info Box (Züchter) === */
.info-box {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.info-box__image {
  aspect-ratio: 1;
  overflow: hidden;
}

.info-box__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.info-box__content {
  padding: 2rem 2rem 2rem 0;
}

.info-box__title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.info-box__text {
  font-size: 0.95rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.info-box__list {
  margin-bottom: 1.5rem;
}

.info-box__list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.info-box__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent-light);
}

/* === Category Card === */
.category-card {
  display: block;
  padding: 2rem;
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
  text-align: center;
}

.category-card:hover {
  border-color: var(--color-border-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.2);
}

.category-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.category-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.3;
}

/* === Feature Card === */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: var(--color-bg-card);
  border: 1px solid var(--color-border);
  text-align: center;
}

.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-surface);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

/* === CTA Banner === */
.cta-banner {
  padding: clamp(3rem, 8vw, 5rem) 0;
  background: linear-gradient(135deg, var(--color-green) 0%, #1c3a24 100%);
  text-align: center;
}

.cta-banner__content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-banner__content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.cta-banner__content p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* === Section Variants === */
.section--cream {
  background: var(--color-cream);
}

.section--forest {
  background: linear-gradient(135deg, var(--color-green) 0%, #1c3a24 100%);
}

/* === Logo Icon (Subpages) === */
.logo__icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* === Animation Classes === */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.fade-in.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(24px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity var(--transition-slow), transform var(--transition-slow);
}

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

/* === Utility Classes === */
.mb-3 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }

/* ============================================
   RESPONSIVE – Subpages
   ============================================ */

@media (max-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }

  .info-box {
    grid-template-columns: 1fr;
  }

  .info-box__content {
    padding: 2rem;
  }
}

@media (max-width: 768px) {
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .shop-filters {
    gap: 0.4rem;
  }

  .shop-filter {
    padding: 0.4rem 0.9rem;
    font-size: 0.78rem;
  }

  .page-hero {
    padding: calc(var(--header-height) + 2rem) 0 2rem;
  }

  .page-hero__title {
    font-size: clamp(1.6rem, 5vw, 2.25rem);
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .btn-group .btn {
    width: 100%;
    max-width: 320px;
  }

  .cta-banner {
    padding: 3rem 0;
  }

  /* Subpage header fix */
  .header__inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  }
}

@media (max-width: 480px) {
  .grid--3 {
    grid-template-columns: 1fr;
  }

  .grid--4 {
    grid-template-columns: 1fr;
  }

  .card__meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .shop-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 1rem;
  }

  .shop-filters::-webkit-scrollbar {
    display: none;
  }
}

/* === Print === */
@media print {
  .header, .footer, .whatsapp-sticky, .menu-toggle {
    display: none;
  }
  body {
    color: #000;
    background: #fff;
  }
}
