/* --------------------------------------------------
   Basis Links
-------------------------------------------------- */
a,
a:visited {
  color: #AB1511;
  text-decoration: none;
}

a:hover,
a:focus,
a:active {
  color: #8f110d;
}

/* --------------------------------------------------
   Hero Bereich
-------------------------------------------------- */
#body .collective-hero {
  text-align: center;
}

.site-logo-home-img {
  width: 180px;
  max-width: 90%;
  height: auto;
  display: block;
  margin: 1rem auto;
}

#body .collective-hero-inner {
  max-width: 62rem;
  margin: 0 auto;
}

#body .collective-hero h1 {
  margin: 0 0 .7rem 0;
  font-size: 2.2rem;
  line-height: 1.15;
}

#body .collective-sub {
  max-width: 52rem;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: .85;
}

#body .hero-cta {
  margin-top: 1.2rem;
}

/* --------------------------------------------------
   Sections allgemein
-------------------------------------------------- */
#body .collective-section {
  padding: 1.1rem 0;
}

#body .section-title {
  margin: 0 0 1rem 0;
  font-size: 1.25rem;
}

#body .lead {
  margin: 0 0 1rem 0;
  line-height: 1.65;
  opacity: .9;
}

#body .muted {
  opacity: .85;
  line-height: 1.6;
}

/* --------------------------------------------------
   Shop Grid
-------------------------------------------------- */
#body .collective-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.2rem;
  margin-top: 1.1rem;
}

/* --------------------------------------------------
   Shop Kacheln
-------------------------------------------------- */
#body a.shop-tile {
  --t: calc(var(--i) / max(1, (var(--n) - 1)));
  --h: calc(300 * var(--t));
  --c1: hsl(var(--h) 78% 92%);
  --c2: hsl(calc(var(--h) + 18) 82% 88%);
  --ring: hsl(var(--h) 70% 45% / .35);

  display: block;
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;

  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow:
    0 10px 26px rgba(0,0,0,.08),
    0 1px 0 rgba(255,255,255,.7) inset;

  transform: translateY(0) scale(1);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    filter .18s ease;
  will-change: transform;
}

#body a.shop-tile:hover,
#body a.shop-tile:focus-visible {
  transform: translateY(-4px) scale(1.01);
  border-color: rgba(0,0,0,.08);
  box-shadow:
    0 16px 42px rgba(0,0,0,.14),
    0 0 0 4px var(--ring),
    0 1px 0 rgba(255,255,255,.7) inset;
  filter: saturate(1.05);
}

#body a.shop-tile:active {
  transform: translateY(-1px) scale(.995);
  box-shadow:
    0 10px 26px rgba(0,0,0,.10),
    0 0 0 3px var(--ring);
}

/* Texte etwas kontrastreicher auf Pastell */
#body .shop-title {
  margin: 0 0 .45rem 0;
  font-size: 1.15rem;
  line-height: 1.25;
  color: rgba(0,0,0,.88);
}

#body .shop-tagline {
  margin: 0 0 1.05rem 0;
  font-size: .95rem;
  line-height: 1.45;
  color: rgba(0,0,0,.68);
}

/* CTA wie kleines Badge, farblich passend zur Kachel */
#body .shop-tile-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .48rem .95rem;
  font-size: .85rem;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.55);
  color: rgba(0,0,0,.78);
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  backdrop-filter: blur(6px);
}

#body a.shop-tile:hover .shop-tile-cta,
#body a.shop-tile:focus-visible .shop-tile-cta {
  border-color: rgba(0,0,0,.14);
  background: rgba(255,255,255,.70);
}

/* --------------------------------------------------
   Split Bereich Home
-------------------------------------------------- */
#body .split {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 1.4rem;
  align-items: start;
}

#body .card {
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  padding: 1.25rem;
  background: #fff;
}

/* --------------------------------------------------
   Listen und Kontakt
-------------------------------------------------- */
#body .bullet-list {
  margin: 0;
  padding-left: 1.1rem;
}

#body .bullet-list li {
  margin: .35rem 0;
  opacity: .9;
}

#body .contact-line {
  margin-top: 1rem;
}

/* --------------------------------------------------
   Buttons
-------------------------------------------------- */
#body .shop-btn {
  display: inline-block;
  padding: .55rem 1.05rem;
  font-size: .9rem;
  border-radius: 999px;
  border: 1px solid rgba(171,21,17,.5);
  color: #AB1511;
  background: transparent;
}

#body .shop-btn:hover {
  background: rgba(171,21,17,.06);
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */
@media (max-width: 840px) {
  #body .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  #body .collective-hero h1 {
    font-size: 1.7rem;
  }
}

#footer {
  padding: 1.1rem 1rem 2.2rem 1rem;
  width: 100%;
  box-sizing: border-box;
}

/* Clearfix ohne Scrollbar */
#footer::before,
#footer::after {
  content: "";
  display: table;
}

#footer::after {
  clear: both;
}

#footer p {
  max-width: 62rem;
  margin: .6rem auto;
  line-height: 1.55;
}

#footer p a {
  display: inline-block;
}

/* ToTop Button */
#footer .totop {
  margin: 0 auto .4rem auto;
  text-align: center;
  float: none;
}

#footer #toTop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(171,21,17,.35);
}

#footer #toTop i {
  font-size: 18px;
}

/* Mobile Anpassungen */
@media (max-width: 640px) {
  #footer {
    padding: 1rem .9rem 2.4rem .9rem;
  }

  #footer p {
    font-size: .95rem;
    margin: .7rem auto;
  }

  #footer p span {
    display: inline;
  }
}

/* Sehr kleine Screens */
@media (max-width: 420px) {
  #footer p:first-of-type span {
    display: none;
  }

  #footer p:first-of-type a {
    display: block;
    margin: .25rem 0;
  }
}
