@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #079DD9;
  --primary-light: #0a7bb3;
  --secondary: #0693c9;
  --accent: #D62278;
  --accent-hover: #c01e6b;
  --bg: #f4f6f8;
  --bg-card: #ffffff;
  --text: #1a1a2e;
  --text-light: #6b7a8a;
  --border: #e2e8f0;
  --radius: 0px;
  --radius-sm: 0px;
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-hover: 0 8px 30px rgba(0,0,0,0.12);
  --max-width: 1200px;
  --header-bg: #ffffff;
  --footer-bg: #079DD9;
}

body {
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

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

/* ===== HEADER ===== */
.site-header {
  background: var(--header-bg);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  height: 72px;
}
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 4px 0 6px 0;
}
.logo-img {
  height: 89px;
  width: auto;
  max-width: 360px;
  object-fit: contain;
}

/* ===== Burger Menu ===== */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
  z-index: 100;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #D62278;
  border-radius: 3px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.main-nav {
  display: none;
  width: 100%;
  background: #D62278;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  padding: 8px 0;
  flex-direction: column;
  gap: 0;
  margin-top: 12px;
}
.main-nav.open { display: flex; }
.main-nav a {
  color: #fff;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 16px 24px;
  border-radius: 0;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.main-nav a:last-child { border-bottom: none; }
.main-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.header-actions { margin-left: auto; }
.header-search-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}
.header-search-btn:hover { background: var(--primary); color: #fff; }

.header-search {
  display: flex;
  align-items: center;
  max-width: 280px;
  flex: 0 1 280px;
  background: #f0f4f9;
  border-radius: 24px;
  padding: 2px;
  transition: all 0.3s;
  border: 1px solid transparent;
}
.header-search:focus-within {
  background: #fff;
  border-color: #D62278;
  box-shadow: 0 0 0 4px rgba(214,34,120,0.2);
}
.header-search-input {
  width: 100%;
  border: none;
  border-radius: 24px 0 0 24px;
  padding: 8px 16px;
  font-size: 13px;
  font-family: 'Outfit', sans-serif;
  outline: none;
  background: transparent;
  transition: all 0.2s;
  color: #1a1a2e;
}
.header-search-input::placeholder {
  color: #94a3b8;
  font-weight: 400;
}
.header-search-submit {
  border: none;
  border-radius: 0 24px 24px 0;
  padding: 8px 14px;
  background: transparent;
  color: #64748b;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.header-search:focus-within .header-search-submit {
  color: #D62278;
}
.header-search-submit:hover { color: #D62278; }
.header-search-mobile { display: none; }

.site-main { flex: 1; }

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  min-height: 600px;
  background: url('/images/hero-slider.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7,157,217,0.88) 0%, rgba(214,34,120,0.78) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  padding: 60px 0 80px;
}
.hero-content h1 {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 12px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.hero-sub {
  color: rgba(255,255,255,0.85);
  font-size: 1.15rem;
  margin-bottom: 36px;
  font-weight: 300;
}

/* ===== SEARCH TABS ===== */
.search-tabs {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
  overflow: visible;
  max-width: 1000px;
  margin: 0 auto;
}
.tabs-nav {
  display: flex;
  background: #f8f9fb;
  border-bottom: 1px solid var(--border);
  overflow-x: auto;
  padding: 0 4px;
  border-radius: 16px 16px 0 0;
}
.tab-btn {
  flex: 1;
  min-width: 110px;
  padding: 16px 12px;
  border: none;
  background: transparent;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-bottom: 3px solid transparent;
  margin-bottom: -1px;
}
.tab-btn i { font-size: 0.95rem; }
.tab-btn:hover { color: var(--secondary); background: rgba(7,157,217,0.04); }
.tab-btn.active {
  color: var(--secondary);
  border-bottom-color: var(--secondary);
  background: #fff;
  font-weight: 600;
}

.tabs-content { padding: 28px 32px 32px; }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

.sf-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.sf-group {
  flex: 1;
  min-width: 0;
  padding: 0 16px;
}
.sf-group .sf-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 2px;
}
.sf-group .sf-label i { margin-right: 6px; width: 14px; text-align: center; color: var(--accent); }
.sf-group input,
.sf-group select {
  width: 100%;
  padding: 8px 0;
  border: none;
  font-size: 0.95rem;
  font-family: 'Outfit', sans-serif;
  background: transparent;
  outline: none;
  color: var(--text);
  font-weight: 500;
}
.sf-group input::placeholder { color: #b0b8c4; font-weight: 400; }
.sf-group select { cursor: pointer; appearance: none; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 0 center; padding-right: 16px; }

.sf-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

.sf-submit {
  padding: 12px 32px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  text-decoration: none;
  min-height: 48px;
  box-shadow: 0 4px 14px rgba(214,34,120,0.3);
}
.sf-submit:hover { background: var(--accent-hover); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(214,34,120,0.4); }

/* ===== SEARCH BAR (Pauschalreisen) ===== */
.sbar {
  display: flex;
  align-items: stretch;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--border);
  padding: 2px 2px 2px 6px;
}
.sbar-div {
  width: 1px;
  background: var(--border);
  flex-shrink: 0;
  margin: 10px 0;
}
.sbar-field {
  flex: 1;
  min-width: 0;
  padding: 8px 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.sbar-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 1px;
  line-height: 1;
}
.sbar-label i { margin-right: 4px; width: 12px; text-align: center; color: var(--accent); font-size: 0.55rem; }
.sbar-field input,
.sbar-field select {
  width: 100%;
  padding: 4px 0;
  border: none;
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  background: transparent;
  outline: none;
  color: var(--text);
  font-weight: 500;
  cursor: pointer;
}
.sbar-field input::placeholder { color: #b0b8c4; font-weight: 400; }
.sbar-field select { appearance: none; background: none; padding-right: 12px; }

.sbar-pop { cursor: pointer; }
.sbar-pop-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  padding: 4px 0;
  cursor: pointer;
  user-select: none;
}
.sbar-pop-trigger span {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sbar-pop-trigger i {
  font-size: 0.6rem;
  color: #b0b8c4;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.sbar-btn {
  padding: 0 28px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 11px;
  font-size: 0.92rem;
  font-weight: 700;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(214,34,120,0.25);
  flex-shrink: 0;
  transition: all 0.2s;
  margin: 2px;
}
.sbar-btn:hover { background: var(--accent-hover); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(214,34,120,0.35); }

/* Popup */
.popup {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.2);
  z-index: 200;
}
.pop-wide { width: 400px; }
.popup.open { display: block; }
.popup-inner { position: relative; }
.popup-header {
  padding: 16px 20px 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
}
.popup-tabs {
  display: flex;
  margin: 0 20px;
  border-bottom: 1px solid var(--border);
}
.ptab {
  flex: 1;
  padding: 8px 0 6px;
  border: none;
  background: none;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-light);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: color 0.2s;
}
.ptab:hover { color: var(--primary); }
.ptab.active { color: var(--primary); border-bottom-color: var(--primary); }
.ptab-content { display: none; padding: 14px 20px; }
.ptab-content.active { display: block; }

.pr { display: flex; gap: 12px; }
.pf { flex: 1; }
.pf label { display: block; font-size: 0.7rem; font-weight: 600; color: var(--text-light); margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.3px; }
.pop-date {
  width: 100%;
  padding: 8px 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
  color: var(--text);
}
.pop-date:focus { border-color: var(--primary); }

.dur-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.dur-btn {
  padding: 10px 6px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  text-align: center;
  transition: all 0.15s;
  color: var(--text);
}
.dur-btn:hover { border-color: var(--primary); color: var(--primary); }
.dur-btn.selected { border-color: var(--primary); background: #eef6fe; color: var(--primary); font-weight: 700; }

.popup-actions {
  padding: 12px 20px 16px;
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}
.pop-clear {
  padding: 7px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--text-light);
}
.pop-clear:hover { background: #f5f5f5; }
.pop-apply {
  padding: 7px 20px;
  border: none;
  border-radius: 8px;
  background: var(--primary);
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.pop-apply:hover { background: var(--primary-light); }

/* Ziel suggestions */
.ziel-suggestions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; padding: 12px 20px; }
.ziel-btn { padding: 10px 8px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-family: 'Outfit', sans-serif; font-size: 0.82rem; font-weight: 500; cursor: pointer; text-align: center; transition: all 0.15s; color: var(--text); }
.ziel-btn:hover { border-color: var(--primary); color: var(--primary); }
.ziel-btn.selected { border-color: var(--primary); background: #eef6fe; color: var(--primary); font-weight: 700; }
.ziel-input-wrap { padding: 0 20px 4px; }
.ziel-input-wrap .pop-date { width: 100%; }

/* Flexible sub-tabs */
.flex-tabs { display: flex; margin: 0 20px; border-bottom: 1px solid var(--border); }
.fptab { flex: 1; padding: 6px 0 5px; border: none; background: none; font-family: 'Outfit', sans-serif; font-size: 0.75rem; font-weight: 600; color: var(--text-light); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: color 0.2s; }
.fptab:hover { color: var(--primary); }
.fptab.active { color: var(--primary); border-bottom-color: var(--primary); }
.fptab-content { display: none; padding: 12px 20px; }
.fptab-content.active { display: block; }

/* Month grid */
.monat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; }
.monat-btn { padding: 10px 6px; border: 1px solid var(--border); border-radius: 8px; background: #fff; font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 500; cursor: pointer; text-align: center; transition: all 0.15s; color: var(--text); }
.monat-btn:hover { border-color: var(--primary); color: var(--primary); }
.monat-btn.selected { border-color: var(--primary); background: #eef6fe; color: var(--primary); font-weight: 700; }

/* Tage input */
.tage-input { text-align: center; }
.tage-input label { display: block; font-size: 0.75rem; font-weight: 600; color: var(--text-light); margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.3px; }
.tage-input .stepper { margin: 0 auto; }

/* Room card */
.room-card { padding: 12px 20px; border-bottom: 1px solid var(--border); }
.room-card:last-child { border-bottom: none; }
.room-card h4 { font-size: 0.78rem; font-weight: 700; margin-bottom: 8px; color: var(--text); }

.stepper { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 7px; overflow: hidden; background: #fff; }
.stepper-btn { width: 30px; height: 30px; border: none; background: #f8f9fb; font-size: 0.9rem; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--text); transition: background 0.15s; font-weight: 600; }
.stepper-btn:hover { background: #eef1f4; }
.stepper-input { width: 40px; height: 30px; border: none; text-align: center; font-family: 'Outfit', sans-serif; font-size: 0.85rem; font-weight: 700; background: #fff; color: var(--text); }

.ch-ages { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.ch-ages select { padding: 5px 6px; border: 1px solid var(--border); border-radius: 5px; font-family: 'Outfit', sans-serif; font-size: 0.75rem; outline: none; background: #fff; }

#add-room-btn {
  display: block; width: calc(100% - 40px); margin: 10px 20px; padding: 8px;
  border: 1px dashed var(--border); border-radius: 8px; background: none;
  font-family: 'Outfit', sans-serif; font-size: 0.78rem; font-weight: 600;
  cursor: pointer; color: var(--primary); transition: all 0.2s;
}
#add-room-btn:hover { border-color: var(--primary); background: #f0f8ff; }

.offer-tag-car { background: var(--accent); }
.offer-location { font-size: 0.85rem; color: var(--text-light); margin-bottom: 4px; }
.offer-location i { margin-right: 4px; color: var(--accent); }
.offer-city {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sf-row-car .sf-group { flex: 1; min-width: 0; }
.sf-row-car .sf-group-sm { flex: 0.8; }
.sf-row-car .sf-group-xs { flex: 0.5; min-width: 80px; }
.sf-row-car .sf-group-xs select { font-size: 0.85rem; }
.sf-group-return input:disabled { opacity: 0.3; }
.sf-extras { margin-top: 12px; text-align: left; }
.sf-row-extras { margin-top: 6px; padding-top: 14px; border-top: 1px solid var(--border); }
.sf-row-extras .sf-group-sm { flex: 0.7; }
.sf-checkbox { display: inline-flex; align-items: center; gap: 8px; cursor: pointer; font-size: 0.85rem; color: var(--text-light); }
.sf-checkbox input[type="checkbox"] { width: 16px; height: 16px; cursor: pointer; accent-color: var(--accent); }

@media (max-width: 768px) {
  .sf-row-car { flex-direction: column; gap: 4px; }
  .sf-row-car .sf-group, .sf-row-car .sf-group-sm, .sf-row-car .sf-group-xs { width: 100%; flex: none; padding: 6px 0; }
  .sf-row-car .sf-divider { display: none; }
  .sf-extras { margin-top: 8px; }
}

.car-search-form {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.csf-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr auto;
  gap: 16px;
  align-items: end;
}
.csf-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.csf-field label i { margin-right: 6px; }
.csf-field input,
.csf-field select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.csf-field input:focus,
.csf-field select:focus {
  border-color: var(--secondary);
  background: #fff;
}
.csf-submit button {
  padding: 11px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
}
.csf-submit button:hover { background: var(--primary-light); }

@media (max-width: 768px) {
  .csf-grid { grid-template-columns: 1fr; gap: 12px; }
  .car-search-form { padding: 20px; }
}

.car-specs {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.car-spec {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: var(--bg);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text);
}
.car-spec i { color: var(--accent); }

@media (max-width: 768px) {
  .tabs-content { padding: 20px 16px; }
  .sf-row { flex-direction: column; gap: 4px; }
  .sf-group { width: 100%; padding: 8px 0; }
  .sf-divider { display: none; }
  .sf-submit { width: 100%; justify-content: center; margin-right: 0; margin-top: 8px; }
  .sf-group input, .sf-group select { padding: 8px 0; }
  .sbar { flex-direction: column; padding: 12px; gap: 2px; }
  .sbar .sbar-div { display: none; }
  .sbar-field { width: 100%; padding: 6px 0; }
  .sbar-btn { width: 100%; justify-content: center; height: 46px; margin: 6px 0 0; }
  .popup { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 92vw; max-height: 80vh; overflow-y: auto; }
  .pop-wide { width: 92vw; }
  .popup.open { z-index: 300; }
}

/* ===== SECTIONS ===== */
.section { padding: 60px 0; }
.section-alt {
    background: linear-gradient(135deg, #079DD9 0%, #068bc0 100%);
}

.section-alt .section-title {
    color: #fff;
}

.section-alt .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.section-alt .btn-outline {
    color: #fff;
    border-color: #fff;
}

.section-alt .btn-outline:hover {
    background: #fff;
    color: #079DD9;
}

.section-features { padding: 40px 0; }

.section-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-subtitle {
  text-align: center;
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== CATEGORIES ===== */
.section-categories {
    background: linear-gradient(135deg, #D62278 0%, #b81d66 100%);
}

.section-categories .section-title {
    color: #fff;
}

.section-categories .section-subtitle {
    color: rgba(255,255,255,0.85);
}

.categories-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 28px;
    min-height: 220px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 180px;
    justify-content: center;
}
.category-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.55) 100%);
    z-index: 1;
    transition: opacity 0.3s;
}
.category-card:hover::before {
    opacity: 0.8;
}
.category-card > * {
    position: relative;
    z-index: 2;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255,255,255,0.3);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: rgba(7, 157, 217, 0.9);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 14px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.category-card:hover .category-icon {
    background: #0a8fc7;
}

.category-card h3 {
    color: #fff;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.category-card p {
    color: rgba(255,255,255,0.9);
    font-size: 0.88rem;
    line-height: 1.5;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* ===== FEATURES ===== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(26,138,158,0.08) 0%, rgba(46,196,182,0.08) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 1.4rem;
  color: var(--accent);
}
.feature-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--primary);
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ===== DESTINATIONS ===== */
.destination-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}
.destination-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--bg-card);
  padding: 24px 16px;
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  min-height: 160px;
  justify-content: center;
}
.destination-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}
.destination-card > *:not(.dest-overlay) {
  position: relative;
  z-index: 2;
}
.destination-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--accent);
}
.flag-icon { font-size: 1.5rem; background: rgba(255,255,255,0.2); backdrop-filter: blur(4px); }
.destination-card h3 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}
.destination-card .count {
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
.destination-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 4px;
  flex-wrap: wrap;
  justify-content: center;
}
.destination-meta .price-from {
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== OFFER GRID ===== */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.offer-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}
.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.offer-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.offer-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.offer-body .offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(214, 34, 120, 0.08);
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  flex-wrap: wrap;
}
.offer-tag .tag-type { white-space: nowrap; }
.offer-tag .tag-location {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.75;
  font-size: 0.68rem;
}
.section-deals .offer-body .offer-tag {
  background: rgba(7, 157, 217, 0.18);
  color: #079DD9;
}
.section-alt .offer-body .offer-tag {
  background: rgba(214, 34, 120, 0.2);
  color: #D62278;
}
.offer-body h2, .offer-body h3 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  line-height: 1.3;
}
.offer-body h2 a, .offer-body h3 a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
.offer-body h2 a:hover, .offer-body h3 a:hover { color: var(--secondary); }
.merchant { color: var(--text-light); font-size: 0.8rem; margin-bottom: 8px; }
.merchant a { color: var(--secondary); text-decoration: none; font-weight: 500; }
.merchant a:hover { text-decoration: underline; }

.offer-price { margin: 6px 0 10px; display: flex; align-items: center; gap: 8px; }
.offer-dates { display: flex; gap: 12px; flex-wrap: wrap; font-size: 0.8rem; color: var(--text-light); margin: 6px 0 2px; }
.offer-dates i { margin-right: 3px; }
.original-price { text-decoration: line-through; color: var(--text-light); font-size: 0.82rem; }
.price { font-size: 1.4rem; font-weight: 700; color: var(--accent); }
.price-currency { font-size: 0.95rem; }
.offer-per-person { font-size: 0.8rem; color: var(--text-light); margin: -4px 0 8px; }

.description {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 11px 24px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  text-align: center;
  transition: all 0.2s;
  border: none;
  cursor: pointer;
}
.btn:hover { background: var(--primary-light); transform: translateY(-1px); }
.btn-secondary { background: var(--secondary); }
.btn-secondary:hover { background: var(--primary-light); }
.btn-large { font-size: 1rem; padding: 14px 32px; }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: #fff; }

/* ===== OFFER DETAIL ===== */
.offer-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--bg-card);
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  overflow: hidden;
  margin-top: 40px;
}
.offer-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  max-height: 460px;
  min-height: 340px;
}
.offer-info { padding: 36px; display: flex; flex-direction: column; }
.offer-info h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; line-height: 1.3; }
.offer-info .offer-tag {
  align-self: flex-start;
  display: inline-block;
  background: rgba(214, 34, 120, 0.08);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.offer-info .destination { color: var(--text-light); margin-bottom: 6px; font-size: 0.92rem; }
.offer-info .validity { color: var(--text-light); font-size: 0.85rem; margin-top: 8px; }
.offer-info .description { margin: 14px 0; -webkit-line-clamp: unset; line-height: 1.7; font-size: 0.92rem; }
.offer-info .btn { margin-top: auto; align-self: flex-start; }

/* Offer Highlights */
.offer-highlights { display: flex; flex-wrap: wrap; gap: 10px; margin: 10px 0 16px; }
.highlight-item { display: flex; align-items: center; gap: 8px; background: #f8f9fa; padding: 8px 14px; border-radius: 8px; font-size: 0.88rem; font-weight: 500; }
.hl-icon { width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.82rem; flex-shrink: 0; }
.hl-icon i { color: #fff; }
.hl-pink { background: #D62278; }
.hl-blue { background: #079DD9; }
.hl-green { background: #27ae60; }
.hl-orange { background: #f39c12; }
.hl-purple { background: #8e44ad; }
.hl-teal { background: #1abc9c; }
.hl-text { color: var(--text); }

/* Offer Details List */
.offer-details-list { display: flex; flex-direction: column; gap: 16px; margin: 16px 0; }
.detail-block h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 6px; }
.detail-block ul { list-style: none; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.detail-block li { background: #f0f4f8; padding: 4px 12px; border-radius: 6px; font-size: 0.85rem; }
.detail-block p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Offer Dates */
.offer-dates-section { margin: 16px 0; }
.offer-dates-section h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; }
.dates-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.date-item { display: flex; justify-content: space-between; padding: 8px 12px; background: #f8f9fa; border-radius: 6px; font-size: 0.85rem; }
.date-label { color: var(--text-light); font-weight: 500; }
.date-value { font-weight: 600; }

/* Offer Route */
.offer-route { margin: 16px 0; }
.offer-route h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; }
.route-display { display: flex; align-items: center; gap: 12px; background: #f0f4f8; padding: 12px 18px; border-radius: 8px; }
.route-code { font-weight: 700; font-size: 1rem; letter-spacing: 0.5px; }
.route-arrow { color: var(--accent); font-size: 1.2rem; }

/* Offer Map */
.offer-map { margin: 16px 0; }
.offer-map h4 { font-size: 0.92rem; font-weight: 700; margin-bottom: 10px; }
.map-container { border-radius: 12px; overflow: hidden; }

/* Multi-image gallery */
.offer-gallery { display: flex; flex-direction: column; }
.offer-gallery.has-multi { flex-direction: row; flex-wrap: wrap; }
.offer-gallery.has-multi img { width: 50%; min-height: 200px; max-height: 300px; }

/* ===== PAGINATION ===== */
.pagination {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 32px;
}
.pagination a {
  padding: 10px 16px;
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  font-weight: 500;
  transition: all 0.2s;
}
.pagination a.active, .pagination a:hover {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

/* ===== SEARCH FILTER ===== */
.search-filter-form {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-bottom: 32px;
}
.filter-row {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  flex-wrap: wrap;
}
.filter-field { flex: 1; min-width: 140px; }
.filter-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 4px;
}
.filter-field input,
.filter-field select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  outline: none;
}
.filter-field input:focus, .filter-field select:focus {
  border-color: var(--secondary);
  background: #fff;
}
.filter-field button {
  width: 100%;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.filter-field button:hover { background: var(--primary-light); }
.filter-submit { flex: 0 0 auto; min-width: 110px; }

.search-form-large {
  display: flex;
  gap: 0;
  max-width: 520px;
  margin: 0 auto 32px;
}
.search-form-large input {
  flex: 1;
  padding: 14px 20px;
  border: 1px solid var(--border);
  border-right: none;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
  font-size: 1rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
}
.search-form-large input:focus { border-color: var(--secondary); }
.search-form-large button {
  padding: 14px 28px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1rem;
  font-weight: 500;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: background 0.2s;
}
.search-form-large button:hover { background: var(--primary-light); }

.result-count { color: var(--text-light); margin-bottom: 16px; font-size: 0.92rem; }
.no-results { text-align: center; padding: 60px 20px; color: var(--text-light); }
.no-results h2 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text); }

/* ===== STATIC PAGE ===== */
.static-page {
  background: var(--bg-card);
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  margin-top: 40px;
}
.static-page h1 { font-size: 1.5rem; font-weight: 700; color: var(--primary); margin-bottom: 20px; }
.static-page .content-top, .static-page .content-bottom { line-height: 1.8; color: var(--text); }
.static-page .content-top p, .static-page .content-bottom p { margin-bottom: 16px; }

.error-page { text-align: center; padding: 100px 20px; }
.error-page h1 { font-size: 2.2rem; font-weight: 700; margin-bottom: 12px; color: var(--primary); }
.error-page p { color: var(--text-light); margin-bottom: 24px; }
.error-page .btn { margin-top: 8px; }

.merchant-page, .category-page { margin-top: 40px; }
.merchant-page h1, .category-page h1 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}
.merchant-desc, .category-desc { color: var(--text-light); margin-bottom: 32px; font-size: 0.92rem; }

/* ===== COOKIE ===== */
.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  padding: 14px 24px;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.88rem;
}
.cookie-bar .btn { font-size: 0.85rem; padding: 8px 20px; }

/* ===== WHATSAPP ===== */
.whatsapp-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
  transition: transform 0.2s;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  color: rgba(255,255,255,0.85);
  padding: 48px 0 0;
  margin-top: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}
.footer-col h4 { color: #fff; font-size: 0.95rem; font-weight: 600; margin-bottom: 14px; }
.footer-col p { font-size: 0.85rem; line-height: 1.7; opacity: 0.8; }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.85rem;
  margin-bottom: 8px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--accent); }
.social-links { display: flex; gap: 10px; margin-top: 12px; }
.social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}
.social-links a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  opacity: 0.55;
}

.text-center { text-align: center; }
.mobile-break { display: none; }
@media (max-width: 768px) { .mobile-break { display: block; } }

/* ===== SECTION ALT (Städtereisen) ===== */
.section-deals { background: #d62278; }
.section-deals .section-title,
.section-deals .section-subtitle { color: #fff; }
.section-deals .offer-card { background: #fff; }
.section-deals .btn-outline { color: #fff; border-color: #fff; }
.section-deals .btn-outline:hover { background: #fff; color: #d62278; }
.section-deals .load-more-btn { background: rgba(255,255,255,0.2); color: #fff; }
.section-deals .load-more-btn:hover { background: rgba(255,255,255,0.35); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 { font-size: 2.2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .header-inner { height: auto; padding: 12px 0; gap: 10px; }
  .main-nav a { padding: 16px 20px; font-size: 1.15rem; }
  .logo-img { height: 100px; max-width: none; width: auto; }
  .header-search { display: none; }
  .header-search-mobile { display: flex; padding: 12px 16px; gap: 0; background: rgba(255,255,255,0.08); }
  .header-search-mobile .header-search-input { background: #fff; border-radius: 24px 0 0 24px; font-size: 14px; padding: 10px 14px; }
  .header-search-mobile .header-search-submit { background: #fff; border-radius: 0 24px 24px 0; padding: 10px 14px; color: #64748b; }
  .header-search-mobile .header-search-submit:hover { color: #D62278; }

  .hero-slider { min-height: auto; }
  .hero-content { padding: 28px 0 36px; }
  .hero-content h1 { font-size: 2rem; }
  .hero-sub { font-size: 1.15rem; margin-bottom: 18px; }

  .section { padding: 40px 0; }
  .section-title { font-size: 1.65rem; }
  .features-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature-card { padding: 24px 20px; }
  .feature-card h3 { font-size: 1.2rem; }
  .feature-card p { font-size: 1rem; }

  .offer-detail { grid-template-columns: 1fr; margin-top: 20px; }
  .offer-gallery img { min-height: 200px; }
  .offer-info { padding: 20px; }
  .category-grid, .destination-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .categories-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .category-card { padding: 22px 16px; }
  .category-card h3 { font-size: 1.1rem; }
  .category-card p { font-size: 0.9rem; }
  .category-icon { width: 50px; height: 50px; font-size: 1.2rem; }
  .offer-grid { grid-template-columns: 1fr; gap: 16px; }
  .filter-row { flex-direction: column; gap: 10px; }
  .filter-field { min-width: 100%; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .static-page { padding: 20px; }
  body { font-size: 16px; }
  p, li, .offer-body p { font-size: 1rem; }
  .destination-card h3 { font-size: 1rem; }
  .section-subtitle { font-size: 1.05rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero-content { padding: 24px 0 30px; }
  .hero-content h1 { font-size: 1.7rem; }
  .hero-sub { font-size: 1.05rem; margin-bottom: 16px; }
  body { font-size: 17px; }
  p, li, .offer-body p { font-size: 1.05rem; }
  .feature-card h3 { font-size: 1.2rem; }
  .feature-card p { font-size: 1rem; }
  .destination-card h3 { font-size: 1.1rem; }
  .destination-card .count { font-size: 0.95rem; }
  .btn { font-size: 1rem; padding: 12px 22px; }
  .section-title { font-size: 1.45rem; }
  .section-subtitle { font-size: 1.05rem; }
  .static-page h1 { font-size: 1.5rem; }
  .static-page h2 { font-size: 1.25rem; }
  .category-grid, .destination-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-grid { grid-template-columns: 1fr; gap: 10px; }
  .category-card { padding: 20px 16px; }
  .category-card h3 { font-size: 1.15rem; }
  .category-card p { font-size: 0.95rem; }
  .destination-card, .category-card { padding: 18px 12px; }
}

/* ===== FILTER GRID (Suche) ===== */
.filter-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 32px;
}
.filter-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  margin-bottom: 4px;
}
.filter-field label i { margin-right: 4px; }
.filter-field input,
.filter-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
  background: var(--bg);
  outline: none;
  transition: border-color 0.2s;
}
.filter-field input:focus,
.filter-field select:focus {
  border-color: var(--secondary);
  background: #fff;
}
.filter-submit button {
  width: 100%;
  padding: 10px 20px;
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-submit button:hover { background: var(--primary-light); }

/* ===== SIMILAR CAROUSEL ===== */
.similar-section { margin-top: 60px; }
.similar-carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.carousel-track {
  display: flex;
  gap: 20px;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  transition: transform 0.4s ease;
  flex: 1;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-item { flex: 0 0 calc(25% - 15px); min-width: 220px; }
.carousel-item .offer-card { margin: 0; }
.carousel-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text);
  z-index: 2;
  flex-shrink: 0;
  transition: all 0.2s;
}
.carousel-btn:hover { background: var(--primary); color: #fff; }

/* Share Button */
.share-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: none;
  background: #079DD9;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
  flex-shrink: 0;
}
.share-btn:hover { background: #067aac; transform: scale(1.05); }
.share-btn i { pointer-events: none; }

.btn-sm { padding: 6px 16px; font-size: 0.8rem; }

/* ===== OFFER META BADGES ===== */
.offer-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 14px 0; }

@media (max-width: 768px) {
  .filter-grid { grid-template-columns: repeat(2, 1fr); padding: 16px; }
  .carousel-item { flex: 0 0 calc(50% - 10px); min-width: 160px; }
}

@media (max-width: 480px) {
  .filter-grid { grid-template-columns: 1fr; }
  .carousel-item { flex: 0 0 80%; }
  .carousel-btn { display: none; }
}

/* ===== SERVICES (WhatsApp-Suche) ===== */
.lead { font-size: 1.1rem; color: var(--text-light); margin-bottom: 32px; line-height: 1.6; }
.services-form { max-width: 800px; margin: 0 auto; }
.sf-row { display: flex; gap: 16px; margin-bottom: 16px; }
.sf-row-2 > .sf-group { flex: 1; }
.sf-row-3 > .sf-group { flex: 1; }
.sf-group { flex: 1; }
.sf-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-color, #2c3e50); margin-bottom: 4px; }
.sf-input { width: 100%; padding: 10px 12px; border: 1px solid #dce1e8; border-radius: 8px; font-size: 0.95rem; font-family: inherit; box-sizing: border-box; transition: border-color 0.2s; background: #fff; }
.sf-input:focus { outline: none; border-color: var(--accent, #d62278); box-shadow: 0 0 0 3px rgba(214,34,120,0.1); }
.sf-input::placeholder { color: #b0b8c4; }
.sf-group select.sf-input { cursor: pointer; appearance: none; background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat right 12px center; padding-right: 32px; }
.sf-checkbox { display: inline-flex !important; align-items: center; gap: 8px; cursor: pointer; font-weight: 400 !important; padding-top: 24px; }
.sf-checkbox input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--accent, #d62278); }
.sf-submit-row { margin-top: 8px; }
.btn-lg { font-size: 1.05rem; padding: 14px 36px; }
.btn-block { display: block; width: 100%; text-align: center; }
.filter-summary { margin-bottom: 24px; padding: 20px; background: #f8f9fa; border-radius: 8px; border-left: 4px solid var(--accent, #d62278); }
.filter-summary h3 { margin: 0 0 8px; font-size: 1rem; color: var(--text-color, #2c3e50); }
.filter-summary p { margin: 4px 0; color: #555; font-size: 0.95rem; }
.results-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.results-count { font-size: 1.05rem; color: var(--text-color, #2c3e50); }
.save-info { margin-top: 24px; padding: 20px; background: #fff8e1; border-radius: 8px; border: 1px solid #ffe082; text-align: center; }
.save-info p { margin: 4px 0; font-size: 0.95rem; }
.alert-error { padding: 12px 16px; background: #fce4ec; color: #c62828; border-radius: 8px; border: 1px solid #f8bbd0; margin-bottom: 20px; font-size: 0.95rem; }
.offer-actions { display: flex; gap: 8px; margin-top: 12px; }

@media (max-width: 600px) {
  .sf-row { flex-direction: column; gap: 12px; }
  .sf-row-2, .sf-row-3 { flex-direction: column; }
}

/* ===== Global Border-Radius Reset ===== */
* { border-radius: 1px !important; }
.btn, .btn-secondary, .btn-outline, .btn-large, .btn-sm { border-radius: 1px !important; }
img, .offer-card img, .destination-card, .category-card, .offer-card { border-radius: 1px !important; }
input, textarea, select, button { border-radius: 1px !important; }
.hero-chat, .hero-chat-inner { border-radius: 1px !important; }

/* Keep 50% for circular elements */
.feature-icon, .destination-icon, .category-icon, .chat-avatar, .message-avatar, .chat-avatar-sm, .whatsapp-btn { border-radius: 50% !important; }
.fa-stack, .fa-circle, .dot, .status-dot { border-radius: 50% !important; }
.rounded-full, [class*="circle"], [class*="round"] { border-radius: 50% !important; }

/* ===== STATIC PAGES (Impressum/Datenschutz) ===== */
.static-page { max-width: 800px; margin: 0 auto; padding: 20px 0 40px; }
.static-page h1 { font-size: 2rem; color: #1a1a2e; margin-bottom: 24px; }
.static-page h2 { font-size: 1.4rem; color: #1a1a2e; margin-top: 36px; margin-bottom: 14px; }
.static-page h3 { font-size: 1.15rem; color: #1a1a2e; margin-top: 24px; margin-bottom: 10px; }
.static-page p { font-size: 0.95rem; line-height: 1.7; color: #475569; margin-bottom: 14px; }
.static-page ul { margin: 10px 0 16px; padding-left: 24px; }
.static-page ul li { font-size: 0.95rem; line-height: 1.7; color: #475569; margin-bottom: 6px; }
.static-page a { color: #D62278; text-decoration: underline; }
.static-page a:hover { color: #a01a5c; }
.static-page strong { color: #1a1a2e; }

