:root {
  --background: 120 18% 97%;
  --foreground: 140 30% 12%;
  --primary: 142 60% 36%;
  --primary-fg: 120 18% 97%;
  --secondary: 155 40% 48%;
  --muted: 120 15% 91%;
  --muted-fg: 140 20% 42%;
  --border: 140 20% 86%;
  --card: 120 20% 99%;
  --shadow: 0 18px 50px rgba(16, 58, 34, .09);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: hsl(var(--background));
  color: hsl(var(--foreground));
  font-family: 'DM Sans', sans-serif;
  line-height: 1.55;
}

h1,
h2,
h3 {
  font-family: 'Outfit', sans-serif;
  line-height: 1.08;
  margin: 0 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #f7faf7;
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: none;
}

.site-header.scrolled {
  background: #f7faf7;
  border-bottom: 1px solid hsl(var(--border));
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
}

.nav-wrap {
  max-width: 1280px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 32px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
}

.brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  border-radius: 10px;
}

.brand span {
  display: flex;
  flex-direction: column;
}

.brand b {
  font-size: 19px;
}

.brand em {
  font-style: normal;
  color: hsl(var(--primary));
  font-weight: 600;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a {
  font-weight: 600;
  color: hsl(var(--muted-fg));
  font-size: 14px;
  padding: 10px 16px;
  border-radius: 10px;
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.desktop-nav a.active {
    background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.menu-btn {
  display: none;
  background: transparent;
  font-size: 28px;
}

.mobile-nav {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .2s;
}

.btn.primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  box-shadow: 0 10px 25px hsla(var(--primary), .25);
}

.btn.primary:hover {
  transform: translateY(-2px);
}

.btn.outline {
  background: #fff;
  border-color: hsl(var(--border));
  color: hsl(var(--foreground));
}

.btn.light {
  background: hsl(var(--primary-fg));
  color: hsl(var(--primary));
}

.btn.small {
  padding: 9px 14px;
  font-size: 14px;
  border-radius: 11px;
}

.btn.full {
  width: 100%;
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: hsla(var(--primary), 1);
  border: 1px solid hsla(var(--primary), .20);
  color: hsl(var(--primary));
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(700px);
}

.pill.light {
  background: rgba(255, 255, 255, .4);
  border-color: rgba(255, 255, 255, .25);
  color: #fff;
}

/* HERO FIX */
/* HERO */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 80px;
  background: #f7faf7;
}

.hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  filter: none;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(247, 250, 247, 0.35) 0%,
    rgba(247, 250, 247, 0.62) 55%,
    rgba(247, 250, 247, 0.96) 100%
  );
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  padding: 40px 32px 0;
  margin: 0 auto;
}

.hero-content > * {
  max-width: 760px;
}

.hero h1 {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #10271a;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, hsl(var(--primary)), hsl(var(--secondary)));
  -webkit-background-clip: text;
  background-clip: text;
}

.hero p {
  font-size: 22px;
  color: #10271a;
  max-width: 720px;
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 34px;
  flex-wrap: wrap;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: hsl(var(--border));
  border-block: 1px solid hsl(var(--border));
}

/* HOME USP STRIP - ORIGINAL REPLIT STYLE */
.usp-strip {
  position: relative;
  z-index: 20;
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
  padding: 48px 0;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.usp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}

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

.usp-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.usp-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: hsla(var(--secondary), 0.10);
  color: hsl(var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.usp-item h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 700;
  color: hsl(var(--foreground));
  margin: 0 0 14px;
}

.usp-item p {
  font-size: 14px;
  line-height: 1.5;
  color: hsl(var(--muted-fg));
  margin: 0 auto;
  max-width: 260px;
}

.reveal-item {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled .reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(1) {
  transition-delay: 0s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}

.js-enabled .reveal-item {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.js-enabled .reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: translateY(0);
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(1) {
  transition-delay: 0s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(2) {
  transition-delay: 0.1s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(3) {
  transition-delay: 0.2s;
}

.js-enabled .reveal-section.is-visible .reveal-item:nth-child(4) {
  transition-delay: 0.3s;
}

@media (max-width: 900px) {
  .usp-container {
    padding: 0 24px;
  }

  .usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .usp-grid {
    grid-template-columns: 1fr;
  }
}

.section {
  max-width: 1180px;
  margin: auto;
  padding: 90px 28px;
}

.section.narrow {
  max-width: 900px;
}

.section.alt {
  max-width: none;
  background: hsl(var(--card));
  border-block: 1px solid hsl(var(--border));
}

.section.alt > .section-head,
.section.alt > .cards {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.section-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-head h2,
.page-hero h1 {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
}

.section-head p,
.page-hero p {
  color: hsl(var(--muted-fg));
  font-size: 19px;
}

.cards {
  display: grid;
  gap: 24px;
}

.cards.three {
  grid-template-columns: repeat(3, 1fr);
}

.cards.two {
  grid-template-columns: repeat(2, 1fr);
}

.date-card,
.location-card,
.info-card,
.date-row,
.mini-date {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.date-card {
  padding: 24px;
  display: flex;
  gap: 18px;
}

.date-box {
  width: 72px;
  min-width: 72px;
  height: 78px;
  border-radius: 18px;
  background: hsla(var(--primary), .10);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: hsl(var(--primary));
  font-weight: 800;
}

.date-box b {
  font-family: 'Outfit';
  font-size: 30px;
  line-height: 1;
}

.date-box span {
  font-size: 12px;
}

.muted {
  color: hsl(var(--muted-fg));
}

.center {
  text-align: center;
  margin-top: 35px;
}

.locations-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.vendor-cta {
  display: grid;
  grid-template-columns: 1fr 420px;
  align-items: center;
  gap: 40px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 80px max(32px, calc((100vw - 1180px) / 2));
  overflow: hidden;
}

.vendor-cta h2 {
  font-size: clamp(36px, 5vw, 58px);
}

.vendor-cta p {
  font-size: 20px;
  opacity: .9;
}

.vendor-cta img {
  filter: drop-shadow(0 25px 25px rgba(0, 0, 0, .15));
}

.faq {
  max-width: 820px;
  margin: auto;
}

.faq details,
.conditions {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  margin: 12px 0;
  padding: 18px 22px;
}

.faq summary,
.conditions summary {
  cursor: pointer;
  font-weight: 800;
}

.faq p {
  color: hsl(var(--muted-fg));
}

.partner-section {
  padding: 64px 0;
  background: hsl(var(--muted));
  border-top: 1px solid hsl(var(--border));
  border-bottom: 1px solid hsl(var(--border));
}

.partner-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.partner-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.partner-label {
  display: inline-flex;
  align-items: center;
  border: 1px solid hsl(var(--border));
  border-radius: 999px;
  background: hsl(var(--card));
  color: hsl(var(--muted-fg));
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.partner-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  align-items: stretch;
}

.partner-image-wrap {
  width: 288px;
  min-height: 230px;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

.partner-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-image-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, hsla(var(--card), 0.2));
}

.partner-content {
  padding: 32px;
  flex: 1;
}

.partner-content h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 28px;
  line-height: 1.2;
  margin-bottom: 8px;
}

.partner-subtitle {
  color: hsl(var(--muted-fg));
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 4px;
}

.partner-text {
  color: hsl(var(--muted-fg));
  line-height: 1.7;
  margin-bottom: 24px;
}

.partner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-main-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 14px;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg)) !important;
  font-weight: 800;
  transition: opacity 0.25s ease;
}

.partner-main-btn:hover {
  opacity: 0.9;
}

.partner-site-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 14px;
  background: hsl(var(--muted));
  color: hsl(var(--muted-fg));
  font-size: 14px;
}

.page-hero {
  text-align: center;
  padding: 145px 28px 70px;
  max-width: 920px;
  margin: auto;
}

.page-hero.green {
  max-width: none;
  background: hsl(var(--primary));
  color: #fff;
  padding-bottom: 90px;
}

.filterbar {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  margin-bottom: 35px;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 18px;
  border-radius: 20px;
}

.filterbar select,
.booking-modal select,
.booking-modal input {
  width: 100%;
  border: 1px solid hsl(var(--border));
  border-radius: 13px;
  padding: 12px;
  background: #fff;
  outline: none;
}

.check {
  display: flex;
  align-items: center;
  gap: 8px;
}

.check input {
  width: auto;
}

.month-title {
  font-size: 28px;
  margin: 34px 0 15px;
}

.date-list {
  display: grid;
  gap: 14px;
}

.date-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.date-row.past {
  opacity: .55;
}

.row-main {
  flex: 1;
}

.detail-hero {
  position: relative;
  height: 520px;
  display: flex;
  align-items: flex-end;
  color: #fff;
  padding: 0 max(28px, calc((100vw - 1180px) / 2)) 60px;
  overflow: hidden;
}

.detail-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.55);
}

.detail-hero div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.detail-hero h1 {
  font-size: clamp(42px, 6vw, 72px);
}

.backlink {
  display: inline-block;
  background: rgba(255, 255, 255, .15);
  padding: 8px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.detail-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 30px;
  align-items: start;
}

.info-card {
  padding: 22px;
  margin-bottom: 16px;
}

.info-card.big {
  padding: 32px;
}

.info-card h2 {
  font-size: 27px;
}

.mini-date {
  padding: 18px;
  margin-bottom: 14px;
  display: grid;
  gap: 8px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.big-link {
  display: block;
  color: hsl(var(--primary));
  font-weight: 800;
  font-size: 20px;
  margin: 8px 0;
}

.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: hsla(var(--primary), .1);
  display: grid;
  place-items: center;
  color: hsl(var(--primary));
  font-size: 24px;
  margin-bottom: 16px;
}

.muted-card {
  background: hsl(var(--muted));
}

.small-text {
  font-size: 13px;
  color: hsl(var(--muted-fg));
  border-top: 1px solid hsl(var(--border));
  padding-top: 18px;
}

.check-list {
  padding-left: 20px;
}

.mt {
  margin-top: 26px;
}

.site-footer {
  background: hsl(var(--card));
  border-top: 1px solid hsl(var(--border));
  margin-top: 70px;
}

.footer-grid {
  max-width: 1180px;
  margin: auto;
  padding: 56px 28px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
}

.site-footer a {
  display: block;
  color: hsl(var(--muted-fg));
  margin: 9px 0;
}

.site-footer a:hover {
  color: hsl(var(--primary));
}

.footer-brand {
  margin-bottom: 20px;
}

.copyright {
  border-top: 1px solid hsl(var(--border));
  max-width: 1180px;
  margin: auto;
  padding: 22px 28px;
  color: hsl(var(--muted-fg));
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.copyright a {
  display: inline;
  margin: 0;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .6);
  z-index: 80;
  display: none;
}

.booking-modal {
  position: fixed;
  top: 80px;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  width: min(560px, calc(100% - 30px));
  background: hsl(var(--background));
  border-radius: 28px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
  z-index: 90;
  display: none;
  overflow: hidden;
}

.booking-modal.open,
.modal-backdrop.open {
  display: block;
}

.modal-head {
  background: hsl(var(--primary));
  color: #fff;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-head strong {
  display: block;
  font-family: 'Outfit';
  font-size: 20px;
}

.modal-head small {
  opacity: .8;
}

.modal-head button {
  border: 0;
  background: rgba(255, 255, 255, .15);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-size: 26px;
  cursor: pointer;
}

.modal-body {
  padding: 22px 22px 36px;
  height: calc(100% - 82px);
  overflow-y: auto;
}

.modal-body label {
  display: block;
  font-weight: 800;
  margin: 12px 0 6px;
}

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

.meter-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.meter-buttons button,
.radio-cards label {
  border: 1px solid hsl(var(--border));
  background: #fff;
  border-radius: 13px;
  padding: 11px 14px;
  font-weight: 800;
  cursor: pointer;
}

.meter-buttons button.selected,
.radio-cards label.selected {
  border-color: hsl(var(--primary));
  background: hsla(var(--primary), .1);
  color: hsl(var(--primary));
}

.radio-cards {
  display: flex;
  gap: 10px;
}

.radio-cards input {
  width: auto;
  margin-right: 6px;
}

.radio-cards .disabled {
  opacity: .45;
  pointer-events: none;
}

.price-box {
  background: hsla(var(--primary), .06);
  border: 1px solid hsla(var(--primary), .2);
  border-radius: 20px;
  padding: 16px;
  margin: 18px 0;
}

.price-box p {
  display: flex;
  justify-content: space-between;
  margin: 8px 0;
  color: hsl(var(--muted-fg));
}

.price-box .total {
  border-top: 1px solid hsla(var(--primary), .2);
  padding-top: 10px;
  color: hsl(var(--foreground));
  font-size: 18px;
}

.success-box h3 {
  color: hsl(var(--primary));
  font-size: 26px;
}

.notice {
  border-radius: 14px;
  padding: 12px;
  margin: 12px 0;
}

.notice.amber {
  background: #fff7e6;
  color: #8a5a00;
  border: 1px solid #f4d28a;
}

.error {
  background: #ffecec;
  color: #9a1111;
  border: 1px solid #ffb8b8;
  padding: 12px;
  border-radius: 12px;
}

.empty {
  text-align: center;
  color: hsl(var(--muted-fg));
  padding: 50px;
}

.hidden {
  display: none !important;
}

@media (max-width: 900px) {
  .desktop-nav {
    display: none;
  }

  .menu-btn {
    display: block;
  }

  .nav-wrap {
    padding: 14px 18px;
  }

  .mobile-nav.open {
  display: grid;
  gap: 12px;
  position: fixed;
  top: 82px;
  left: 16px;
  right: 16px;
  background: hsl(var(--background));
  padding: 16px;
  border: 1px solid hsl(var(--border));
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  z-index: 99998;
}

.mobile-nav a {
  display: block;
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  padding: 15px 16px;
  border-radius: 14px;
  font-weight: 800;
  line-height: 1.35;
  color: hsl(var(--foreground));
}

  .hero-content {
    margin-left: auto;
    padding: 45px 22px 0;
  }

  .hero h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 18px;
  }

  .cards.three,
  .cards.two,
  .stats,
  .vendor-cta,
  .detail-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .vendor-cta {
    padding: 60px 28px;
  }

  .vendor-cta img {
    max-width: 320px;
    margin: auto;
  }

  .date-row {
    align-items: flex-start;
  }

  .filterbar {
    flex-direction: column;
    align-items: stretch;
  }

  .copyright {
    flex-direction: column;
  }

  .two {
    grid-template-columns: 1fr;
  }

  .radio-cards {
    flex-direction: column;
  }
}

/* AUSSTELLER PAGE - ORIGINAL REPLIT STYLE */

.vendor-page {
  background: hsl(var(--background));
  padding-top: 72px;
  padding-bottom: 96px;
}

/* Green header section */
.vendor-green-cta {
  position: relative;
  overflow: hidden;
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  padding: 80px 24px;
  margin-top: 48px;
  margin-bottom: 64px;
  text-align: center;
  z-index: 1;
}

.vendor-green-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.10;
  background: radial-gradient(circle at center, #ffffff 0%, transparent 70%);
  pointer-events: none;
}

.vendor-green-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
}

.vendor-green-cta h1 {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  color: #fff;
}

.vendor-green-cta p {
  max-width: 700px;
  margin: 0 auto;
  font-size: 20px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.90);
}

/* Main content wrapper */
.vendor-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 28px;
}

/* Three cards */
.vendor-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 80px;
}

.vendor-info-card {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 28px;
  padding: 32px;
  min-height: 300px;
  box-shadow: 0 8px 20px rgba(16, 58, 34, 0.06);
}

.vendor-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
}

.vendor-card-icon.secondary {
  background: hsla(var(--secondary), 0.10);
  color: hsl(var(--secondary));
}

.vendor-card-icon.primary {
  background: hsla(var(--primary), 0.10);
  color: hsl(var(--primary));
}

.vendor-card-icon.accent {
  background: rgba(109, 131, 56, 0.10);
  color: #6d8338;
}

.vendor-info-card h3 {
  font-size: 26px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 16px;
}

.vendor-info-card p {
  font-size: 18px;
  line-height: 1.65;
  color: hsl(var(--muted-fg));
  margin: 0;
}

/* Rules box */
.vendor-rules-box {
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 28px;
  overflow: hidden;
  padding: 48px;
}

.vendor-rules-box h2 {
  text-align: center;
  font-size: clamp(32px, 5vw, 44px);
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 32px;
}

.vendor-rules-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 48px;
}

.vendor-rule {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.rule-icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 15px;
  margin-top: 4px;
}

.rule-icon.green {
  color: #6d8338;
  border: 2px solid #6d8338;
}

.rule-icon.red {
  color: #dc2626;
  border: 2px solid #dc2626;
}

.rule-icon.secondary {
  color: hsl(var(--secondary));
  border: 0;
  font-size: 24px;
}

.vendor-rule h3 {
  font-size: 19px;
  font-weight: 800;
  color: hsl(var(--foreground));
  margin-bottom: 6px;
}

.vendor-rule p {
  font-size: 16px;
  line-height: 1.6;
  color: hsl(var(--muted-fg));
  margin: 0;
}

/* Mobile */
@media (max-width: 900px) {
  .vendor-page {
    padding-top: 72px;
    padding-bottom: 60px;
  }

  .vendor-green-cta {
    padding: 60px 22px;
    margin-top: 32px;
    margin-bottom: 46px;
  }

  .vendor-green-cta h1 {
    font-size: 40px;
  }

  .vendor-green-cta p {
    font-size: 18px;
  }

  .vendor-main {
    padding: 0 18px;
  }

  .vendor-info-grid,
  .vendor-rules-grid {
    grid-template-columns: 1fr;
  }

  .vendor-info-grid {
    gap: 22px;
    margin-bottom: 50px;
  }

  .vendor-info-card {
    min-height: auto;
    padding: 28px;
  }

  .vendor-rules-box {
    padding: 30px 24px;
  }
}


.booking-agb {
  border: 1px solid hsl(var(--border));
  border-radius: 18px;
  overflow: hidden;
  margin: 16px 0;
  background: hsl(var(--card));
}

.booking-agb-toggle {
  width: 100%;
  border: 0;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  padding: 14px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
}

.booking-agb-toggle:hover {
  background: hsl(var(--secondary));
}

.booking-agb-content {
  padding: 16px;
  font-size: 13px;
  line-height: 1.6;
  color: hsl(var(--muted-foreground));
}

.booking-agb-content > div {
  margin-bottom: 16px;
}

.booking-agb-content > div:last-child {
  margin-bottom: 0;
}

.booking-agb-title {
  font-weight: 700;
  color: hsl(var(--foreground));
  margin-bottom: 4px;
}

.booking-agb-content p {
  margin: 0 0 6px;
}

.booking-agb-content ul {
  margin: 6px 0 0 18px;
  padding: 0;
}

.booking-submit-note {
  text-align: center;
  font-size: 12px;
  color: hsl(var(--muted-foreground));
  margin: 10px 0 16px;
}

.booking-warning-box {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  gap: 12px;
  color: #92400e;
  font-size: 14px;
  line-height: 1.5;
  margin: 16px 0;
}

.booking-warning-icon {
  color: #d97706;
  font-size: 22px;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}

.booking-warning-title {
  font-weight: 800;
  margin: 0 0 6px;
}

.booking-warning-box p {
  margin: 0 0 6px;
}

.booking-warning-box p:last-child {
  margin-bottom: 0;
}

.booking-warning-strong {
  font-weight: 700;
}


.home-location-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  overflow: hidden;
  background: hsl(var(--background));
  border: 1px solid hsl(var(--border));
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.06);
}

.location-image-wrap {
  height: 192px;
  overflow: hidden;
  position: relative;
}

.location-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.location-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
  z-index: 2;
  transition: background 0.3s ease;
}

.home-location-card:hover .location-image-overlay {
  background: transparent;
}

.home-location-card:hover .location-image-wrap img {
  transform: scale(1.05);
}

.location-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.location-card-body h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.location-card-body p {
  color: hsl(var(--muted-fg));
  font-size: 14px;
  margin-bottom: 24px;
  flex: 1;
}

.location-more-btn {
  width: 100%;
  padding: 13px 18px;
  border-radius: 14px;
  background: hsla(var(--secondary), 0.10);
  color: hsl(var(--secondary)) !important;
  font-weight: 800;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.location-more-btn:hover {
  background: hsl(var(--secondary));
  color: #ffffff !important;
}



@media (max-width: 768px) {
  .partner-card {
    flex-direction: column;
  }

  .partner-image-wrap {
    width: 100%;
    height: 220px;
  }

  .partner-content {
    padding: 24px;
  }

  .partner-content h3 {
    font-size: 24px;
  }

  .partner-actions {
    flex-direction: column;
  }

  .partner-main-btn,
  .partner-site-box {
    width: 100%;
  }
}


@media (max-width: 768px) {
  .vendor-cta {
    grid-template-columns: 1fr !important;
    padding: 28px 10px !important;
    gap: 24px !important;
    overflow: hidden;
  }

  .vendor-cta h2 {
    font-size: 30px !important;
    line-height: 1.15 !important;
    word-break: normal;
  }

  .vendor-cta p {
    font-size: 15px;
    line-height: 1.6;
  }

  .vendor-cta img {
    width: 100% !important;
    max-width: 260px !important;
    margin: 0 auto;
    display: block;
  }

  .vendor-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 768px) {
  .booking-modal {
    top: 74px;
    bottom: 14px;
    width: calc(100% - 20px);
    border-radius: 22px;
  }

  .modal-body {
    padding: 18px 18px 42px;
    height: calc(100% - 82px);
  }
}

@media (max-width: 768px) {
  .date-row {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .date-row .date-box {
    width: 100%;
    height: auto;
    min-width: 0;
    padding: 12px;
    flex-direction: row;
    gap: 8px;
  }

  .date-row .row-main {
    width: 100%;
  }

  .date-row .btn {
    width: 100%;
    justify-content: center;
    margin-top: 4px;
  }
}

/* Standorte page card alignment */
.locations-grid.large .location-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.locations-grid.large .location-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.locations-grid.large .location-card > div {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.locations-grid.large .location-card h3 {
  text-align: center;
  font-size: 24px;
}

.locations-grid.large .location-card p {
  text-align: center;
  color: hsl(var(--muted-fg));
}

.locations-grid.large .location-card ul {
  text-align: center;
  padding-left: 0;
  list-style: none;
  margin: 16px 0 22px;
}

.locations-grid.large .location-card a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: auto;
  padding: 13px 22px;
  border-radius: 14px;
  background: hsla(var(--primary), 0.10);
  color: hsl(var(--primary)) !important;
  font-weight: 800;
  text-align: center;
  transition: background 0.25s ease, color 0.25s ease;
}

.locations-grid.large .location-card a:hover {
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg)) !important;
}

@media (max-width: 768px) {
  .locations-grid.large .location-card img {
    height: 220px;
  }

  .locations-grid.large .location-card > div {
    padding: 24px 18px;
  }

  .locations-grid.large .location-card a {
    width: 100%;
  }
}

/* Align Details ansehen buttons on standorte.php */
.locations-grid.large {
  align-items: stretch;
}

.locations-grid.large .location-card {
  height: 100%;
}

.locations-grid.large .location-card > div {
  flex: 1;
}

.locations-grid.large .location-card p {
  min-height: 70px;
}

.locations-grid.large .location-card ul {
  min-height: 95px;
}

.locations-grid.large .location-card a {
  margin-top: auto;
}

/* Align Standplatz reservieren buttons on index.php */
.cards.three {
  align-items: stretch;
}

.cards.three .date-card {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.cards.three .date-card .date-box {
  flex-shrink: 0;
}

.cards.three .date-card > div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cards.three .date-card > div:last-child h3 {
  min-height: 28px;
}

.cards.three .date-card > div:last-child p {
  min-height: 12px;
}

.cards.three .date-card > div:last-child .btn,
.cards.three .date-card > div:last-child .booking-open {
  margin-top: auto;
  align-self: flex-start;
}

@media (max-width: 768px) {
  .cards.three .date-card {
    flex-direction: column;
  }

  .cards.three .date-card > div:last-child h3,
  .cards.three .date-card > div:last-child p {
    min-height: auto;
  }

  .cards.three .date-card > div:last-child .btn,
  .cards.three .date-card > div:last-child .booking-open {
    width: 100%;
    justify-content: center;
    align-self: stretch;
  }
}

.termine-download-box {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
}

.termine-download-box .btn {
  text-align: center;
}

@media (max-width: 768px) {
  .termine-download-box .btn {
    width: 100%;
  }
}

.print-only {
  display: none !important;
}

.termine-card-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
  flex-direction: column;
}

.termine-card-actions .btn {
  flex: 1;
  min-width: 150px;
}

.termine-card-actions .btn {
  flex: 1;
  min-width: 150px;
  width: 100%;
  background: #eeeeee;
  color: hsl(var(--foreground));
  border: none;
  box-shadow: none;
  font-weight: 800;
  text-align: center;
  border-radius: 11px;
}

.termine-card-actions .btn:hover {
  background: #dedede;
  border-color: #dedede;
  transform: none;
}

/* ============================= */
/* Cookie Consent Center Modal */
/* ============================= */

.cookie-banner {
  position: fixed;
  inset: 0;
  z-index: 1000000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(10, 18, 12, 0.58);
  backdrop-filter: blur(2px);
}

.cookie-banner.is-hidden {
  display: none !important;
}

.cookie-box {
  width: min(680px, 100%);
  background: hsl(var(--card));
  border: 1px solid hsl(var(--border));
  border-radius: 26px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
  padding: 30px;
}

.cookie-text h3 {
  margin: 0 0 12px;
  font-size: 28px;
  color: hsl(var(--foreground));
}

.cookie-text p {
  margin: 0;
  color: hsl(var(--muted-fg));
  font-size: 16px;
  line-height: 1.65;
}

.cookie-text p + p {
  margin-top: 10px;
}

.cookie-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cookie-btn {
  border: 0;
  border-radius: 14px;
  padding: 13px 22px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
}

.cookie-btn.primary {
  background: hsl(var(--primary));
  color: hsl(var(--primary-fg));
  box-shadow: 0 10px 25px hsla(var(--primary), 0.25);
}

.cookie-btn.secondary {
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-box {
  position: relative;
}

.cookie-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 12px;
  background: hsl(var(--muted));
  color: hsl(var(--foreground));
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  font-weight: 700;
}

.cookie-close:hover {
  background: hsl(var(--border));
}

@media (max-width: 768px) {
  .cookie-box {
    padding: 24px;
    border-radius: 22px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-btn {
    width: 100%;
  }
}