/* ==========================================================
   Suech dä Stern — Handmade Children's Clothing
   Grün-dominant, Stern-Motiv, modern & warm
   ========================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

:root {
  --green: #999933;
  --green-light: #b3b34d;
  --green-pale: #f0f0d8;
  --green-dark: #7a7a29;
  --gold: #C9A227;
  --teal: #7BBCB8;
  --teal-light: #A8D8D4;
  --teal-pale: #E8F4F2;
  --pink: #E8849E;
  --pink-light: #F2B5C6;
  --cream: #FFFCF7;
  --cream-warm: #F8F1E8;
  --sand: #F0E6D6;
  --text: #3D3229;
  --text-mid: #6B5D52;
  --text-light: #9A8C80;
  --white: #FFFFFF;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-w: 1100px;
  --r: 12px;
  --r-lg: 20px;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
}

.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== Star divider (reusable) ===== */
.star-divider {
  text-align: center;
  font-size: 1rem;
  color: var(--green);
  letter-spacing: 12px;
  margin: 12px 0;
  opacity: 0.6;
}

/* ===== Header ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 252, 247, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
}

.header-logo img {
  height: 72px;
  width: auto;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 4px;
}

.nav-list a {
  display: block;
  padding: 8px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-mid);
  border-radius: 8px;
  transition: all 0.2s var(--ease);
}

.nav-list a:hover {
  color: var(--green);
  background: var(--green-pale);
}

.nav-list a.active {
  color: var(--white);
  background: var(--green);
}

/* Hamburger */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 88px 0 0 0;
  background: rgba(255, 252, 247, 0.98);
  backdrop-filter: blur(12px);
  z-index: 99;
  padding: 40px 24px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mobile-nav.active { display: flex; }
.mobile-nav a {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  padding: 14px 40px;
  border-radius: 12px;
  color: var(--text);
  transition: all 0.2s var(--ease);
  width: 100%;
  max-width: 280px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: var(--green);
  color: var(--white);
}

@media (max-width: 768px) {
  .nav-list { display: none; }
  .hamburger { display: flex; }
}

/* ===== Hero (Startseite) — Split Layout ===== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 60%, var(--green-pale) 100%);
  overflow: hidden;
}

/* Stern-Hintergrund dezent */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: url('../images/wst-041-goldene-sterne-eulenschnitt-wand-tuersticker-eulenschnitt-103-22772-2-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.06;
  pointer-events: none;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-logo {
  max-width: 300px;
  margin-bottom: 20px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.06));
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-mid);
  font-weight: 400;
  font-style: italic;
  margin-bottom: 28px;
}

.hero .btn {
  display: inline-block;
  padding: 14px 32px;
  background: var(--green);
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 12px rgba(153, 153, 51, 0.3);
}
.hero .btn:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(153, 153, 51, 0.4);
}

/* Hero product collage */
.hero-collage {
  position: relative;
  height: 420px;
}

.hero-collage .collage-img {
  position: absolute;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.1);
  transition: transform 0.4s var(--ease);
}
.hero-collage .collage-img:hover {
  transform: scale(1.04);
}

.hero-collage .collage-img img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.hero-collage .collage-img:nth-child(1) {
  width: 200px;
  height: 240px;
  top: 0;
  left: 10%;
  transform: rotate(-4deg);
  z-index: 2;
}
.hero-collage .collage-img:nth-child(1):hover { transform: rotate(-4deg) scale(1.04); }

.hero-collage .collage-img:nth-child(2) {
  width: 180px;
  height: 220px;
  top: 40px;
  right: 5%;
  transform: rotate(3deg);
  z-index: 3;
}
.hero-collage .collage-img:nth-child(2):hover { transform: rotate(3deg) scale(1.04); }

.hero-collage .collage-img:nth-child(3) {
  width: 170px;
  height: 200px;
  bottom: 0;
  left: 30%;
  transform: rotate(-1deg);
  z-index: 1;
}
.hero-collage .collage-img:nth-child(3):hover { transform: rotate(-1deg) scale(1.04); }

/* Small decorative star in hero */
.hero-collage::after {
  content: '★';
  position: absolute;
  top: 20px;
  right: 35%;
  font-size: 2rem;
  color: var(--green);
  opacity: 0.25;
  z-index: 0;
}

@media (max-width: 768px) {
  .hero .wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-logo { margin: 0 auto 20px; max-width: 260px; }
  .hero-collage {
    height: 300px;
    max-width: 400px;
    margin: 0 auto;
  }
  .hero-collage .collage-img:nth-child(1) { width: 150px; height: 180px; left: 0; }
  .hero-collage .collage-img:nth-child(2) { width: 140px; height: 170px; right: 0; }
  .hero-collage .collage-img:nth-child(3) { width: 130px; height: 160px; left: 25%; }
}

/* ===== Section Basics ===== */
section { padding: 80px 0; }

.section-head {
  text-align: center;
  margin-bottom: 48px;
}
.section-head h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}
.section-head p {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 480px;
  margin: 0 auto;
}

/* ===== About ===== */
.about {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

/* Dezente Sterne im Hintergrund */
.about::after {
  content: '';
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 400px;
  height: 400px;
  background: url('../images/wst-041-goldene-sterne-eulenschnitt-wand-tuersticker-eulenschnitt-103-22772-2-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.about-text h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.about-text .star-divider {
  text-align: left;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--text-mid);
  margin-bottom: 12px;
  font-size: 1rem;
}

.about-text p:first-of-type {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 600;
}

.about-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.about-images .img-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.4s var(--ease);
}
.about-images .img-card:hover {
  transform: scale(1.02) rotate(-1deg);
}
.about-images .img-card:nth-child(2) {
  margin-top: 24px;
}
.about-images .img-card:nth-child(2):hover {
  transform: scale(1.02) rotate(1deg);
}
.about-images .img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/4;
}

@media (max-width: 768px) {
  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .about-images {
    max-width: 360px;
    margin: 0 auto;
  }
}

/* ===== Product Gallery — Masonry-style ===== */
.products {
  background: var(--cream);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.35s var(--ease);
  overflow: hidden;
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
  border-color: var(--green-light);
}

.product-card img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s var(--ease);
}
.product-card:hover img {
  transform: scale(1.05);
}

/* Feature cards — span 2 columns, larger */
.product-card.featured {
  grid-column: span 2;
  aspect-ratio: 2/1;
  background: linear-gradient(135deg, var(--white) 0%, var(--green-pale) 100%);
  border: 2px solid var(--green-pale);
  padding: 32px;
}
.product-card.featured:hover {
  border-color: var(--green-light);
}

/* Stern-Deko auf Feature-Karten */
.product-card.featured::after {
  content: '★';
  position: absolute;
  top: 12px;
  right: 16px;
  font-size: 1.2rem;
  color: var(--green);
  opacity: 0.3;
}

@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .product-card.featured { grid-column: span 2; aspect-ratio: 2/1; }
}
@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .product-card { padding: 14px; border-radius: var(--r); }
  .product-card.featured { grid-column: span 2; padding: 20px; }
}

/* ===== CTA Banner ===== */
.cta {
  background: var(--green);
  text-align: center;
  padding: 64px 24px;
  position: relative;
  overflow: hidden;
}

/* Stern-Pattern im CTA */
.cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 350px;
  height: 350px;
  background: url('../images/wst-041-goldene-sterne-eulenschnitt-wand-tuersticker-eulenschnitt-103-22772-2-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.08;
  pointer-events: none;
}

.cta h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}
.cta p {
  color: rgba(255,255,255,0.88);
  font-size: 1.05rem;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.cta .btn-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--white);
  color: var(--green);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 10px;
  transition: all 0.25s var(--ease);
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  position: relative;
  z-index: 1;
}
.cta .btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

/* ===== Page Hero (Aktuelles, Kontakt) ===== */
.page-hero {
  padding: 56px 24px 48px;
  text-align: center;
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream-warm) 60%, var(--green-pale) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 300px;
  height: 300px;
  background: url('../images/wst-041-goldene-sterne-eulenschnitt-wand-tuersticker-eulenschnitt-103-22772-2-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.05;
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.page-hero p {
  color: var(--text-light);
  font-size: 1.05rem;
  position: relative;
  z-index: 1;
}

/* ===== Market Cards (Aktuelles) ===== */
.markets {
  background: var(--cream-warm);
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.market-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 28px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.3s var(--ease);
  position: relative;
  overflow: hidden;
}

.market-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
}

.market-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}

.market-card .date {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1.2;
}

.market-card .day {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.market-card .details {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.5;
}

.market-card .time {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  padding: 4px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-top: 12px;
}

/* ===== Weihnachtsmarkt-Karten ===== */
.market-card.xmas {
  background-image:
    /* kraeftige Stern- und Tannengruppen in den vier Ecken - dort liegt kein Text darueber */
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'><g fill='%23C9A227' fill-opacity='.60'><path transform='translate(16 17) scale(5.5)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(30 48) scale(3.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(53 50) scale(2.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/></g><g fill='%23999933' fill-opacity='.55'><path transform='translate(43 28) scale(1.15)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'><g fill='%23C9A227' fill-opacity='.60'><path transform='translate(46 16) scale(4.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(45 44) scale(3.0)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(17 51) scale(2.4)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/></g><g fill='%23999933' fill-opacity='.55'><path transform='translate(21 26) scale(1.25)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'><g fill='%23C9A227' fill-opacity='.60'><path transform='translate(46 16) scale(4.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(45 44) scale(3.0)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(17 51) scale(2.4)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/></g><g fill='%23999933' fill-opacity='.55'><path transform='translate(21 26) scale(1.25)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='64' height='64' viewBox='0 0 64 64'><g fill='%23C9A227' fill-opacity='.60'><path transform='translate(16 17) scale(5.5)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(30 48) scale(3.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(53 50) scale(2.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/></g><g fill='%23999933' fill-opacity='.55'><path transform='translate(43 28) scale(1.15)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/></g></svg>"),
    /* feine Grundtextur ueber die ganze Karte, auch hinter dem Text */
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='90' height='90' viewBox='0 0 90 90'><g fill='%23999933' fill-opacity='.20'><path transform='translate(20 22) scale(4)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(66 16) scale(2.6)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(47 57) scale(3.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/><path transform='translate(78 74) scale(2.2)' d='M0 -1 L.2246 -.309 L.9511 -.309 L.3633 .118 L.5878 .809 L0 .382 L-.5878 .809 L-.3633 .118 L-.9511 -.309 L-.2246 -.309Z'/></g><g fill='%23999933' fill-opacity='.15'><path transform='translate(70 46) scale(0.5)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/><path transform='translate(16 66) scale(0.5)' d='M0 -9 L-3.4 -3.3 H-1.6 L-5.1 2.1 H-3 L-7 7.7 H7 L3 2.1 H5.1 L1.6 -3.3 H3.4 Z M-1.5 7.7 H1.5 V10 H-1.5 Z'/></g></svg>"),
    linear-gradient(165deg, var(--white) 0%, #FDFBF0 50%, var(--green-pale) 100%);
  background-position:
    left top, right top, left bottom, right bottom,
    left top, left top;
  background-repeat:
    no-repeat, no-repeat, no-repeat, no-repeat,
    repeat, no-repeat;
  background-size:
    64px 64px, 64px 64px, 64px 64px, 64px 64px,
    90px 90px, cover;
  border-color: rgba(153, 153, 51, 0.30);
}

/* Goldene statt einfarbig gruene Kopflinie */
.market-card.xmas::after {
  height: 4px;
  background: linear-gradient(90deg, var(--green) 0%, var(--gold) 50%, var(--green) 100%);
}

.market-card.xmas:hover {
  box-shadow: 0 10px 30px rgba(153, 153, 51, 0.20);
}

/* Tannenbaum-Icon */
.xmas-icon {
  display: block;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  fill: none;
  stroke: var(--green);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ===== Photo Grid (Aktuelles) ===== */
.photos {
  background: var(--cream);
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.photo-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.photo-card {
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  aspect-ratio: 4/5;
  transition: transform 0.4s var(--ease);
}
.photo-card:hover {
  transform: scale(1.02);
}
.photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

/* ===== Contact ===== */
.contact {
  background: var(--cream-warm);
  position: relative;
  overflow: hidden;
}

.contact::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 400px;
  height: 400px;
  background: url('../images/wst-041-goldene-sterne-eulenschnitt-wand-tuersticker-eulenschnitt-103-22772-2-removebg-preview.png') no-repeat center;
  background-size: contain;
  opacity: 0.04;
  pointer-events: none;
}

.contact-center {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.contact-center h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 8px;
}

.contact-entries {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 440px;
  margin: 24px auto 0;
}

.contact-entry {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--r);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 1px solid rgba(0,0,0,0.04);
  transition: all 0.25s var(--ease);
  text-align: left;
}
.contact-entry:hover {
  border-color: var(--green-light);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--green);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-entry p {
  font-size: 0.95rem;
  color: var(--text);
}
.contact-entry a {
  color: var(--green);
  font-weight: 600;
}
.contact-entry a:hover { color: var(--green-dark); }

/* Contact gallery — full width below */
.contact-gallery {
  position: relative;
  z-index: 1;
}

.contact-gallery .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-gallery .product-card {
  aspect-ratio: 1;
}

@media (max-width: 768px) {
  .contact-gallery .product-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ===== Footer ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.5);
  padding: 48px 0 24px;
  position: relative;
}

/* Grün-dominante Top-Linie */
.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--teal), var(--green));
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  margin-bottom: 32px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 10px;
  filter: brightness(0) invert(1) opacity(0.7);
}
.footer-brand p {
  font-size: 0.88rem;
  max-width: 260px;
}

.footer-nav h4,
.footer-addr h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 10px;
}

.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--green-light); }

.footer-addr p {
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.footer-addr a { transition: color 0.2s; }
.footer-addr a:hover { color: var(--green-light); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
}

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 28px;
  }
  .footer-brand p { margin: 0 auto; }
  .footer-nav ul { align-items: center; }
}

/* ===== Fade In Animation ===== */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
