/* ========================================
   Gästemappe PWA V2 — Premium Redesign
   Cormorant Garamond + Forest Green + Warm Gold
   ======================================== */

:root {
    --accent: #C4973A;
    --accent-light: #f5efe3;
    --accent-dark: #8a681e; /* Gold für Text auf Weiß (WCAG-AA ≥4.5:1) */
    --primary: #2C3E2D;
    --primary-light: #3d5240;
    --cta: #C4973A;
    --cta-hover: #a87e2e;
    --bg: #FFFFFF;
    --bg-warm: #F8F8F6;
    --dark: #1a1a1a;
    --text: #333333;
    --text-muted: #666666; /* 5.7:1 auf Weiß (war #777, 4.48:1) */
    --text-light: #6e6e6e; /* 4.6:1 auf Weiß (war #999, 2.85:1) */
    --white: #fff;
    --border: #e8e6e3;
    --card-shadow: 0 2px 8px rgba(0,0,0,0.06);
    --card-shadow-hover: 0 8px 24px rgba(0,0,0,0.1);
    --radius: 10px;
    --radius-lg: 14px;
    --nav-height: 60px;
    --header-height: 52px;
    --font-heading: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Source Sans 3', -apple-system, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { font-size: 16px; -webkit-text-size-adjust: 100%; }
body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.25;
    color: var(--dark);
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }

/* ========================================
   HEADER
   ======================================== */
#header {
    position: fixed;
    top: 0; left: 0; right: 0;
    height: var(--header-height);
    background: var(--white);
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    z-index: 100;
}
#header-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary);
}
.header-btn {
    width: 44px; height: 44px;
    border: 1px solid var(--border);
    background: var(--white);
    border-radius: var(--radius);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s;
}
.header-btn:hover { background: var(--bg-warm); }

/* ========================================
   BOTTOM TAB BAR — mobile only (≤768px)
   ======================================== */
#nav {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: var(--white);
    border-top: 1px solid #e8e0d4;
    display: flex;
    align-items: center;
    justify-content: space-around;
    z-index: 100;
    padding-bottom: env(safe-area-inset-bottom, 0);
}
.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: #888;
    font-size: 10px;
    font-weight: 600;
    text-decoration: none;
    padding: 6px 14px;
    transition: color 0.15s;
    letter-spacing: 0.01em;
}
.nav-item i { font-size: 1.1rem; }
.nav-item.active { color: var(--accent); }
.nav-item.active i { color: var(--accent); }

@media (min-width: 769px) {
    #nav { display: none; }
}

/* ========================================
   MAIN CONTENT
   ======================================== */
#content {
    margin-top: var(--header-height);
    margin-bottom: 70px;
    min-height: calc(100vh - var(--header-height) - 70px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.page {
    max-width: 680px;
    margin: 0 auto;
    padding: 20px 16px 40px;
}
.page h2 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--primary);
}

/* ========================================
   LOADING
   ======================================== */
.loading {
    text-align: center;
    padding: 80px 20px;
    color: var(--text-light);
}
.loading-spinner {
    width: 28px; height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--accent);
    border-radius: 50%;
    margin: 0 auto 12px;
    animation: spin 0.7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   1. FULLSCREEN HERO
   ======================================== */
.home-hero {
    position: relative;
    width: 100vw;
    /* Nicht mehr fast-Vollbild (85vh): kürzer, damit Inhalt unter dem Hero
       schon andeutungsweise sichtbar ist ("es geht hier weiter"). */
    height: 46vh;
    min-height: 340px;
    margin-left: calc(-50vw + 50%);
    margin-top: calc(-1 * var(--header-height));
    overflow: hidden;
    background: var(--primary, #2C3E2D); /* Placeholder gegen leeren Block bis Hero lädt */
}
.home-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.home-hero__overlay {
    position: absolute;
    inset: 0;
    /* Stärkerer, früher einsetzender Verlauf: weißer Serif-Titel muss auch auf
       hellem Schnee/Fassade lesbar sein (vorher transparent 30% → 0.55 zu schwach). */
    background: linear-gradient(transparent 15%, rgba(0,0,0,0.30) 50%, rgba(0,0,0,0.72));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 0 24px 48px;
    text-align: center;
}
.home-hero__apt {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(196, 151, 58, 0.92);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
.home-hero__title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 12px rgba(0,0,0,0.4);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}
.home-hero__sub {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Scroll indicator — animated chevron */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.8;
    animation: chevron-bounce 1.5s ease-in-out infinite;
    transition: opacity 0.4s;
    pointer-events: none;
}
.scroll-indicator svg {
    filter: drop-shadow(0 1px 3px rgba(0,0,0,0.4));
}
@keyframes chevron-bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ========================================
   INFO STRIP (under hero)
   ======================================== */
.info-strip {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 14px 16px;
    margin: 0 -16px;
    background: var(--bg-warm);
    border-bottom: 1px solid var(--border);
    flex-wrap: wrap;
}
.info-strip__item {
    font-size: 0.82rem;
    color: var(--text-muted);
    white-space: nowrap;
}
.info-strip__item i {
    color: var(--accent);
    margin-right: 4px;
}
.info-strip__item b {
    color: var(--dark);
}

/* ========================================
   2. ICON GRID — Hochkönigin style
   ======================================== */
/* ========================================
   2. PHOTO TILES — Gastfreund-Style 2-Column Grid
   ======================================== */
.photo-tiles {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 0 20px;
}
.photo-tile {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 136px;
    display: block;
    text-decoration: none;
    box-shadow: var(--card-shadow);
    transition: transform 0.15s, box-shadow 0.15s;
}
.photo-tile:hover {
    transform: translateY(-2px);
    box-shadow: var(--card-shadow-hover);
    text-decoration: none;
}
.photo-tile__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.photo-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.65));
    pointer-events: none;
}
.photo-tile__title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px;
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    z-index: 1;
    line-height: 1.2;
    text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

@media (min-width: 600px) {
    .photo-tile { height: 240px; }
    .photo-tile__title { font-size: 1.05rem; }
}

/* ========================================
   SECTION DETAIL PAGES
   ======================================== */
.page-image {
    margin: -20px -16px 20px;
    overflow: hidden;
    max-height: 240px;
}
.page-image img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

/* 5. INFO-CARDS for bullet lists */
.content-body {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text);
}
.content-body p { margin-bottom: 12px; }
.content-body b, .content-body strong { color: var(--dark); }
.content-body h3 {
    margin: 24px 0 8px;
    font-size: 1.1rem;
    color: var(--primary);
}
.content-body ul {
    list-style: none;
    margin: 8px 0 16px;
    padding: 0;
    background: var(--bg-warm);
    border-radius: var(--radius);
    padding: 14px 18px;
}
.content-body ul ul {
    background: transparent;
    padding: 4px 0 4px 16px;
    margin: 4px 0 0;
}
.content-body li {
    padding: 4px 0 4px 20px;
    position: relative;
    font-size: 0.93rem;
    line-height: 1.5;
}
.content-body li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--accent);
}
.content-body ul ul li::before {
    width: 4px; height: 4px;
    background: var(--text-light);
    top: 13px;
}

/* Info Box (merged sections like food in house) */
.info-box {
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    padding: 20px;
    margin: 24px 0;
    border-left: 3px solid var(--accent);
}
.info-box h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--primary);
    margin: 0 0 12px;
}
.info-box .content-body ul {
    background: var(--white);
}

/* ========================================
   RECOMMENDATION CARDS
   ======================================== */
.rec-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}
.rec-group { margin-top: 24px; }
.rec-group__title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.rec-group__title i { color: var(--accent); }
.rec-group--urgent .rec-group__title {
    color: #c0392b;
    border-bottom-color: #f0c9c2;
}
.rec-group--urgent .rec-group__title i { color: #c0392b; }
.rec-group--urgent .rec-card { border-left: 3px solid #c0392b; }
.rec-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border);
}
.rec-card__img { height: 150px; overflow: hidden; }
.rec-card__img img { width: 100%; height: 100%; object-fit: cover; }
.rec-card__body { padding: 14px 16px; }
.rec-card__body h3 { font-size: 1.05rem; margin-bottom: 4px; }
.rec-card__meta { margin-bottom: 6px; }
.rec-card__distance { font-size: 0.78rem; color: var(--text-light); margin-right: 10px; }
.rec-card__rating { font-size: 0.78rem; color: #d4a843; }
.rec-card__body p { font-size: 0.88rem; color: var(--text-muted); margin: 6px 0 10px; line-height: 1.5; }
.rec-card__phone {
    margin-bottom: 4px;
}
.rec-card__phone a {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
}
.rec-card__phone a:hover { text-decoration: underline; }
.rec-card__addr {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 6px;
}
.rec-card__link {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.85rem;
    margin-top: 8px;
    text-decoration: none;
}
.rec-card__link:hover { text-decoration: underline; }
.rec-card__actions { display: flex; gap: 6px; flex-wrap: wrap; }

/* ========================================
   BUTTONS
   ======================================== */
.btn-primary {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-weight: 600;
    font-size: 0.93rem;
    padding: 11px 22px;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: background 0.15s;
    -webkit-appearance: none;
}
.btn-primary:hover, .btn-primary:active { background: var(--cta-hover); color: var(--white); text-decoration: none; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }

.btn-secondary {
    display: inline-block;
    background: var(--white);
    color: var(--text);
    font-weight: 600;
    font-size: 0.93rem;
    padding: 11px 22px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: background 0.15s;
}
.btn-secondary:hover { background: var(--bg-warm); text-decoration: none; color: var(--text); }

.btn-small {
    display: inline-block;
    background: var(--bg-warm);
    color: var(--text);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 6px;
    text-decoration: none;
    border: 1px solid var(--border);
    transition: background 0.15s;
}
.btn-small:hover { background: #eee; text-decoration: none; }
.btn-small i { margin-right: 3px; }

/* ========================================
   FORMS
   ======================================== */
.gm-form { margin-top: 16px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--text-muted); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea {
    width: 100%; padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: inherit;
    background: var(--white);
    color: var(--text);
    transition: border-color 0.15s;
    -webkit-appearance: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 2px var(--accent-light);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.gm-form .btn-primary { width: 100%; padding: 13px; font-size: 1rem; margin-top: 6px; }

.status-success { background: #e8f5e9; color: #2e7d32; padding: 12px; border-radius: var(--radius); margin-top: 14px; font-weight: 500; }
.status-error { background: #fce4ec; color: #c62828; padding: 12px; border-radius: var(--radius); margin-top: 14px; font-weight: 500; }

/* ========================================
   CONTACT PAGE
   ======================================== */
.contact-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--card-shadow);
    margin-bottom: 16px;
}
.contact-card h3 { font-size: 1.15rem; margin-bottom: 6px; }
.contact-card p { color: var(--text-muted); margin-bottom: 14px; font-size: 0.9rem; }
.contact-actions { display: flex; flex-direction: column; gap: 8px; }
.contact-actions a { text-align: center; }

.emergency-card {
    background: #FFF8E1;
    border: 1px solid #FFE082;
    border-radius: var(--radius-lg);
    padding: 18px;
    margin-top: 16px;
}
.emergency-card h3 { color: #e65100; font-size: 0.95rem; margin-bottom: 10px; }
.emergency-list { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.emergency-item {
    display: flex; justify-content: space-between; align-items: center;
    background: var(--white); padding: 8px 12px; border-radius: 6px;
    text-decoration: none; color: var(--text);
}
.emergency-item span { font-size: 0.8rem; color: var(--text-light); }
.emergency-item strong { font-size: 1rem; color: #c62828; }

/* ========================================
   SUB-NAVIGATION
   ======================================== */
.sub-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.sub-link {
    display: block;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 12px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--text);
    text-decoration: none;
    transition: background 0.15s, border-color 0.15s;
}
.sub-link i { color: var(--accent); margin-right: 4px; }
.sub-link:hover { background: var(--white); border-color: var(--accent); text-decoration: none; color: var(--text); }

/* Home contact footer */
.home-contact {
    display: flex; flex-direction: column; gap: 8px;
    margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.home-contact__btn {
    display: block; text-align: center; padding: 10px;
    font-size: 0.88rem; font-weight: 600; color: var(--text-muted);
    text-decoration: none; border-radius: var(--radius); transition: background 0.15s;
}
.home-contact__btn:hover { background: var(--bg-warm); text-decoration: none; color: var(--text); }
.home-contact__btn i { margin-right: 6px; color: var(--accent); }

/* Offline banner */
#offline-banner {
    position: fixed; top: var(--header-height); left: 0; right: 0;
    background: #ff9800; color: var(--white);
    text-align: center; padding: 6px; font-size: 0.8rem; font-weight: 600; z-index: 99;
}

.empty { text-align: center; color: var(--text-light); padding: 40px 20px; font-style: italic; }

/* ========================================
   V4: HOME SECTIONS
   ======================================== */
.home-section {
    margin: 24px 0;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}
.home-section__title {
    font-size: 1.15rem;
    margin-bottom: 14px;
    color: var(--primary);
}
.home-section__title i { color: var(--accent); margin-right: 6px; }
.home-section__more {
    display: block;
    text-align: center;
    margin-top: 12px;
    color: var(--accent);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
}
.home-section__more:hover { text-decoration: underline; }

.page-subtitle {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: -8px 0 20px;
}

/* ========================================
   V4: OFFER CARDS
   ======================================== */
.offer-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
}
.offer-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.15s, box-shadow 0.15s;
}
.offer-card:hover { transform: translateY(-2px); box-shadow: var(--card-shadow-hover); text-decoration: none; color: inherit; }
.offer-card__img {
    height: 130px;
    background-size: cover;
    background-position: center;
}
.offer-card__body { padding: 14px; }
.offer-card__body h3 { font-size: 0.95rem; margin-bottom: 4px; line-height: 1.3; }
.offer-card__badge {
    display: inline-block;
    background: var(--accent);
    color: var(--white);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 10px;
    text-transform: uppercase;
    margin-bottom: 6px;
}
.offer-card__price { font-size: 0.82rem; font-weight: 600; color: var(--accent-dark); display: block; margin-bottom: 4px; }
.offer-card__body p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.4; margin: 0;
    /* Sauberes mehrzeiliges Kürzen mit … statt hartem substring (das HTML-Entities zerhackte). */
    display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
/* Volle Angebotsseite zeigt den kompletten Text. */
.offer-card--full .offer-card__body p { display: block; -webkit-line-clamp: none; overflow: visible; }
.offer-card__cta { display: block; margin-top: 8px; color: var(--accent-dark); font-weight: 600; font-size: 0.85rem; }
.offer-card__usps { list-style: none; padding: 0; margin: 8px 0 0; }
.offer-card__usps li { font-size: 0.8rem; color: var(--text-muted); padding: 2px 0 2px 16px; position: relative; }
.offer-card__usps li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

.offer-list { display: flex; flex-direction: column; gap: 16px; }
.offer-card--full { flex: none; width: 100%; }
.offer-card__img--large { height: 180px; }

/* ========================================
   V4: QUICK ACTIONS (Semmel, Upsell, Departure)
   ======================================== */
.quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 14px 0;
}
.quick-action {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 9px;
    padding: 12px 13px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    text-decoration: none;
    transition: background 0.15s;
}
.quick-action:hover { background: var(--white); border-color: var(--accent); text-decoration: none; color: var(--text); }
.quick-action i { font-size: 1.1rem; color: var(--accent); }
/* Brötchen = wichtigste tägliche Aktion: farblich hervorgehoben. */
.quick-action--primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.quick-action--primary i { color: #fff; }
.quick-action--primary:hover { background: var(--primary); border-color: var(--primary); color: #fff; opacity: 0.92; }

/* CTA Banner (inline link) */
.cta-banner {
    display: block;
    background: var(--accent);
    color: var(--white);
    text-align: center;
    padding: 14px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.93rem;
    text-decoration: none;
    margin: 20px 0;
    transition: background 0.15s;
}
.cta-banner:hover { background: var(--cta-hover); text-decoration: none; color: var(--white); }
.cta-banner i { margin-right: 6px; }

/* ========================================
   V4: UPSELL GRID
   ======================================== */
.upsell-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 24px;
}
.upsell-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 20px 12px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--text);
    font-weight: 600;
    font-size: 0.88rem;
    text-align: center;
    transition: transform 0.15s, border-color 0.15s;
}
.upsell-card i { font-size: 1.5rem; color: var(--accent); }
.upsell-card:hover { transform: translateY(-2px); border-color: var(--accent); text-decoration: none; color: var(--text); }

/* ========================================
   V4: REVIEWS
   ======================================== */
.review-section { margin: 24px 0; padding-top: 20px; border-top: 1px solid var(--border); }
.review-section h3 { font-size: 1.1rem; margin-bottom: 8px; }
.review-links { display: flex; flex-direction: column; gap: 8px; margin-top: 12px; }
.review-link {
    display: block;
    padding: 12px 16px;
    background: var(--bg-warm);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
    text-decoration: none;
    transition: border-color 0.15s;
}
.review-link:hover { border-color: var(--accent); text-decoration: none; color: var(--text); }
.review-link i { color: var(--accent); margin-right: 8px; width: 20px; text-align: center; }

/* ========================================
   V4: SHARE
   ======================================== */
.share-section { margin: 24px 0; padding-top: 20px; border-top: 1px solid var(--border); }
.share-section h3 { margin-bottom: 12px; }
.share-btn { width: 100%; }

/* ========================================
   V4: DEPARTURE CHECKLIST
   ======================================== */
.departure-time {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--accent);
    color: var(--white);
    padding: 20px;
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.departure-time i { font-size: 2rem; opacity: 0.8; }
.departure-time span { font-size: 0.82rem; display: block; opacity: 0.85; }
.departure-time strong { font-size: 1.5rem; display: block; }

.checklist { margin-bottom: 24px; }
.checklist h3 { font-size: 1rem; margin-bottom: 12px; color: var(--primary); }
.checklist__item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background: var(--bg-warm);
    border-radius: var(--radius);
    margin-bottom: 6px;
    cursor: pointer;
    transition: background 0.15s;
    font-size: 0.93rem;
}
.checklist__item:hover { background: #f0efe8; }
.checklist__item input[type="checkbox"] {
    width: 20px; height: 20px;
    accent-color: var(--accent);
    flex-shrink: 0;
}
.checklist__item input:checked + span {
    text-decoration: line-through;
    color: var(--text-light);
}

.departure-goodbye {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-warm);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
}
.departure-goodbye p {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--primary);
    margin-bottom: 16px;
}

/* ========================================
   DESKTOP SIDEBAR
   ======================================== */
.desktop-sidebar { display: none; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (min-width: 480px) {
}
@media (min-width: 600px) {
    .page { padding: 24px 24px 40px; }
}
@media (min-width: 769px) {
    /* #layout trägt das 2-Spalten-Layout (Inhalt + Sidebar); #content ist reine Spalte */
    #layout {
        display: flex; justify-content: center; gap: 24px;
        padding: 24px; margin-top: var(--header-height);
    }
    #content { display: block; flex: 1; max-width: 720px; min-width: 0; margin: 0; min-height: 0; }
    .page { max-width: none; padding: 0 0 40px; }
    .desktop-sidebar {
        display: block; width: 260px; flex-shrink: 0;
        position: sticky; top: calc(var(--header-height) + 24px); align-self: flex-start;
        max-height: calc(100vh - var(--header-height) - 48px);
        overflow-y: auto;
    }
    .sidebar-card {
        background: var(--white); border: 1px solid var(--border);
        border-radius: var(--radius-lg); box-shadow: var(--card-shadow);
        padding: 16px; margin-bottom: 12px;
    }
    .sidebar-card__hero { width: 100%; border-radius: 6px; margin-bottom: 12px; height: 110px; object-fit: cover; }
    .sidebar-card__name { font-family: var(--font-heading); font-weight: 600; font-size: 1rem; color: var(--primary); margin-bottom: 4px; }
    .sidebar-card__address { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 4px; }
    .sidebar-card__phone { font-size: 0.78rem; color: var(--text-muted); margin-bottom: 10px; }
    .sidebar-card__phone i { margin-right: 4px; }
    .sidebar-card .btn-primary { display: block; width: 100%; text-align: center; font-size: 0.82rem; padding: 8px; }

    /* Hauptnavigation in Sidebar */
    .sidebar-nav {
        background: var(--white); border: 1px solid var(--border);
        border-radius: var(--radius-lg); box-shadow: var(--card-shadow);
        padding: 6px; margin-bottom: 12px; display: flex; flex-direction: column;
    }
    .sidebar-nav__item {
        display: flex; align-items: center; gap: 10px;
        padding: 9px 12px; border-radius: 6px;
        color: var(--text); text-decoration: none;
        font-size: 0.88rem; font-weight: 500;
        transition: background 0.15s, color 0.15s;
    }
    .sidebar-nav__item i { width: 18px; text-align: center; color: var(--text-muted); font-size: 0.95rem; }
    .sidebar-nav__item:hover { background: var(--bg-warm); }
    .sidebar-nav__item--active { background: var(--accent-light); color: var(--primary); }
    .sidebar-nav__item--active i { color: var(--accent); }

    /* Quick-Actions: visuell abgesetzt */
    .sidebar-quick {
        background: var(--bg-warm); border: 1px solid var(--border);
        border-radius: var(--radius-lg); padding: 12px 14px; margin-bottom: 12px;
    }
    .sidebar-quick__title {
        font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.08em;
        color: var(--text-muted); margin: 0 0 8px; font-weight: 700;
    }
    .sidebar-quick__item {
        display: flex; align-items: center; gap: 8px;
        padding: 7px 8px; border-radius: 5px;
        font-size: 0.84rem; color: var(--primary); text-decoration: none;
        font-weight: 500;
    }
    .sidebar-quick__item i { color: var(--accent); width: 16px; text-align: center; }
    .sidebar-quick__item:hover { background: var(--white); }
    .sidebar-quick__item--active { background: var(--white); }

    .sidebar-info {
        background: var(--bg-warm); border: 1px solid var(--border);
        border-radius: var(--radius-lg); padding: 14px; font-size: 0.78rem; color: var(--text-muted); line-height: 1.5;
    }
    .sidebar-info strong { display: block; color: var(--primary); margin-bottom: 4px; }

    /* Header-Title visuell als klickbar markieren */
    #header-title { user-select: none; }
    #header-title:hover { color: var(--accent); }

    .home-hero { border-radius: 16px; overflow: hidden; height: 400px; }
    .page-image { margin: 0 0 20px; }
    .page-image img { border-radius: 16px; }
    /* 4 Foto-Kacheln = eine Reihe; Empfehlungs-Karten 2-spaltig */
    .photo-tiles { grid-template-columns: repeat(4, 1fr); }
    .photo-tile { height: 150px; }
    .rec-list { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
    .rec-card { margin-bottom: 0; }
    .weather-card { max-width: none; }
}

/* Tablet-Bereich (769-900px) — kompaktere Sidebar */
@media (min-width: 769px) and (max-width: 899px) {
    #layout { gap: 16px; padding: 16px; }
    .rec-list { grid-template-columns: 1fr; }
    .desktop-sidebar { width: 220px; }
    .sidebar-nav__item { padding: 7px 10px; font-size: 0.82rem; }
}

/* iPhone safe area */
@supports (padding: env(safe-area-inset-bottom)) {
    #nav { padding-bottom: env(safe-area-inset-bottom); }
    #content { margin-bottom: calc(70px + env(safe-area-inset-bottom)); }
    @media (min-width: 769px) {
        #content { margin-bottom: 0; }
    }
}

/* ============================================
   Privacy-Notice (DSGVO-Hinweis bei First Visit)
   ============================================ */
#privacy-notice {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: calc(70px + 12px);
    z-index: 1000;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
    animation: privacy-slide-up 0.32s ease-out;
    max-width: 640px;
    margin: 0 auto;
}
@keyframes privacy-slide-up {
    from { opacity: 0; transform: translateY(20px); }
    to   { opacity: 1; transform: translateY(0); }
}
.privacy-notice__inner {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    flex-wrap: wrap;
}
.privacy-notice__icon {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.privacy-notice__text {
    flex: 1;
    min-width: 200px;
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: var(--text-muted);
}
.privacy-notice__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}
.privacy-notice__link {
    color: var(--accent);
    font-size: 0.82rem;
    text-decoration: underline;
}
.privacy-notice__btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 18px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
}
.privacy-notice__btn:hover { background: var(--primary-light); }

@media (max-width: 480px) {
    .privacy-notice__inner { padding: 12px 14px; }
    .privacy-notice__actions { width: 100%; justify-content: space-between; margin-top: 4px; }
}

@media (min-width: 769px) {
    #privacy-notice { bottom: 16px; }
}

@supports (padding: env(safe-area-inset-bottom)) {
    #privacy-notice { bottom: calc(70px + 12px + env(safe-area-inset-bottom)); }
    @media (min-width: 769px) {
        #privacy-notice { bottom: calc(16px + env(safe-area-inset-bottom)); }
    }
}

/* ===== SUCHE (GM_Search) — angehängt 2026-07-07 ===== */
/* =====================================================================
   Gästemappe — Suche (Overlay + Treffer)
   Nutzt die bestehenden CSS-Variablen aus style.css:
   --accent (#C4973A Gold), --primary (#2C3E2D Waldgrün),
   --font-heading, --font-body, --radius, --bg, --bg-warm, --text ...
   ===================================================================== */

/* Header-Rechtsgruppe (Search + Lang nebeneinander) */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Body-Scroll-Lock während die Suche offen ist */
body.gm-search-lock { overflow: hidden; }

/* --- Overlay-Container ------------------------------------------------ */
.gm-search {
    position: fixed;
    inset: 0;
    z-index: 2000;               /* über Header (100) und Nav (100) */
    display: none;
}
.gm-search.is-open { display: block; }

.gm-search__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(20, 28, 21, 0.45);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
    animation: gmsFade 0.15s ease;
}

/* --- Panel ------------------------------------------------------------ */
.gm-search__panel {
    position: absolute;
    top: 0; left: 0; right: 0;
    margin: 0 auto;
    max-width: 720px;
    max-height: 100%;
    background: var(--bg, #fff);
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    animation: gmsSlide 0.18s ease;
}
@media (min-width: 600px) {
    .gm-search__panel {
        top: 24px;
        border-radius: var(--radius-lg, 14px);
        max-height: calc(100% - 48px);
        overflow: hidden;
    }
}

/* --- Suchleiste ------------------------------------------------------- */
.gm-search__bar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--border, #e8e0d4);
    background: var(--bg-warm, #f8f8f6);
}
.gm-search__bar-icon {
    color: var(--accent, #C4973A);
    font-size: 1rem;
}
.gm-search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 1.05rem;
    color: var(--text, #333);
    padding: 6px 0;
    min-width: 0;
}
.gm-search__input::placeholder { color: var(--text-light, #999); }
.gm-search__input::-webkit-search-cancel-button { display: none; }

.gm-search__clear,
.gm-search__close {
    flex: 0 0 auto;
    width: 34px; height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    border-radius: var(--radius, 10px);
    color: var(--text-muted, #777);
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.15s, color 0.15s;
}
.gm-search__clear { display: none; }
.gm-search__clear:hover,
.gm-search__close:hover { background: rgba(0,0,0,0.06); color: var(--primary); }
.gm-search__close { font-size: 1.15rem; }

/* --- Trefferliste ----------------------------------------------------- */
.gm-search__list {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 6px 0 16px;
    flex: 1;
}

.gm-search__group {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent, #C4973A);
    padding: 14px 18px 6px;
}

.gm-search__item {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    text-align: left;
    padding: 11px 16px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: var(--font-body);
    color: var(--text, #333);
    transition: background 0.12s;
}
.gm-search__item:hover,
.gm-search__item.is-active {
    background: var(--accent-light, #f5efe3);
}
.gm-search__item.is-active { box-shadow: inset 3px 0 0 var(--accent, #C4973A); }

.gm-search__icon {
    flex: 0 0 auto;
    width: 38px; height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary, #2C3E2D);
    color: #fff;
    font-size: 0.95rem;
}

.gm-search__text {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.gm-search__title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--primary, #2C3E2D);
    line-height: 1.2;
}
.gm-search__snippet {
    font-size: 0.85rem;
    color: var(--text-muted, #777);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.gm-search__title mark,
.gm-search__snippet mark {
    background: rgba(196, 151, 58, 0.28);
    color: inherit;
    border-radius: 3px;
    padding: 0 1px;
}
.gm-search__go {
    flex: 0 0 auto;
    color: var(--text-light, #bbb);
    font-size: 0.8rem;
}

/* --- Leer-/Hinweis-Zustände ------------------------------------------ */
.gm-search__hint,
.gm-search__empty {
    padding: 28px 22px;
    color: var(--text-muted, #777);
    font-family: var(--font-body);
    font-size: 0.95rem;
    text-align: center;
    line-height: 1.5;
}
.gm-search__empty { color: var(--text, #333); }

/* Screenreader-only Live-Region */
.gm-search__sr {
    position: absolute;
    width: 1px; height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
}

@keyframes gmsFade { from { opacity: 0; } to { opacity: 1; } }
@keyframes gmsSlide { from { transform: translateY(-10px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

@media (prefers-reduced-motion: reduce) {
    .gm-search__backdrop, .gm-search__panel { animation: none; }
}

/* ===== WLAN-Karte (mobile Home) — 2026-07-07 ===== */
.wifi-card {
    margin: 14px 16px 0;
    padding: 16px 18px;
    background: var(--primary, #2C3E2D);
    color: #fff;
    border-radius: 14px;
    box-shadow: 0 4px 16px rgba(44,62,45,0.22);
}
.wifi-card__head {
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 10px;
    color: var(--accent, #C4973A);
}
.wifi-card__head i { margin-right: 6px; }
.wifi-card__row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding: 4px 0;
}
.wifi-card__label {
    font-size: 0.82rem;
    opacity: 0.75;
}
.wifi-card__value {
    font-weight: 600;
    text-align: right;
    word-break: break-all;
}
.wifi-card__pw {
    font-family: "SF Mono", ui-monospace, Menlo, Consolas, monospace;
    font-size: 1.15rem;
    letter-spacing: 0.02em;
    color: #fff;
}
.wifi-card__open {
    font-size: 0.9rem;
    opacity: 0.85;
    padding-top: 4px;
}
.wifi-card__copy {
    margin-top: 12px;
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 10px;
    background: var(--accent, #C4973A);
    color: #fff;
    font-size: 0.92rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s;
}
.wifi-card__copy:hover { background: #b3872f; }
.wifi-card__copy.is-copied { background: #3f7d4a; }
.wifi-card__copy i { margin-right: 6px; }

/* Desktop: WLAN-Karte kompakter, da Sidebar sie ohnehin zeigt */
@media (min-width: 769px) {
    .wifi-card { max-width: 420px; }
}

/* ===== Reisephasen-Banner (Home) — 2026-07-07 ===== */
.phase-banner {
    margin: 14px 16px 0;
    padding: 16px 18px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    position: relative;
    box-shadow: 0 3px 14px rgba(44,62,45,0.14);
}
.phase-banner > i {
    font-size: 1.3rem;
    margin-bottom: 4px;
    opacity: 0.9;
}
.phase-banner__big {
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.25;
}
.phase-banner__big b { font-size: 1.5rem; }
.phase-banner__sub {
    font-size: 0.9rem;
    opacity: 0.85;
}
.phase-banner__cta {
    margin-top: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    border-bottom: 1.5px solid currentColor;
    padding-bottom: 1px;
}
.phase-banner--pre {
    background: linear-gradient(135deg, #C4973A, #b3872f);
    color: #fff;
}
.phase-banner--pre .phase-banner__cta,
.phase-banner--post .phase-banner__cta,
.phase-banner--departure .phase-banner__cta { color: #fff; }
.phase-banner--departure {
    background: var(--primary, #2C3E2D);
    color: #fff;
}
.phase-banner--post {
    background: linear-gradient(135deg, #3f7d4a, #2C3E2D);
    color: #fff;
}
.phase-banner--instay {
    flex-direction: row;
    align-items: center;
    gap: 10px;
    background: var(--bg-warm, #f6f2ea);
    color: var(--primary, #2C3E2D);
    box-shadow: none;
    border: 1px solid rgba(196,151,58,0.3);
}
.phase-banner--instay > i { margin-bottom: 0; color: var(--accent, #C4973A); }
.phase-banner--instay .phase-banner__big { font-size: 1rem; }
@media (min-width: 769px) { .phase-banner { max-width: 480px; } }

/* ===== Live-Wetter-Karte (Home) — 2026-07-07 ===== */
.weather-card {
    margin: 14px 16px 0;
    padding: 14px 18px;
    border-radius: 14px;
    background: var(--bg-warm, #f6f2ea);
    border: 1px solid rgba(196,151,58,0.28);
}
.weather-card__main {
    display: flex;
    align-items: center;
    gap: 12px;
}
.weather-card__icon svg { width: 40px; height: 40px; display: block; }
.weather-card__temp {
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--primary, #2C3E2D);
    font-variant-numeric: tabular-nums;
}
.weather-card__cond {
    font-size: 0.95rem;
    color: var(--text-muted, #555);
    font-weight: 500;
}
.weather-card__tip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--accent-dark, #9c7524);
    text-decoration: none;
}
.weather-card__tip i { color: var(--accent, #C4973A); }


/* Aufenthalts-Karte — Check-in/out + WLAN in EINER ruhigen Karte */
.stay-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 4px 16px;
    margin: 0 0 12px;
    box-shadow: var(--card-shadow);
}
.stay-card__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}
.stay-card__row:last-child { border-bottom: 0; }
.stay-card__row > i { color: var(--accent); width: 20px; text-align: center; flex: none; }
.stay-card__row > span { color: var(--text-muted); }
.stay-card__row > b { margin-left: auto; color: var(--text); font-variant-numeric: tabular-nums; }
.stay-card__row--sub { padding-top: 0; margin-top: -6px; border-bottom: 0; padding-left: 30px; }
.stay-card__row--sub .wifi-card__copy { margin-left: auto; }
.stay-card__note { font-size: 0.85rem; color: var(--text-light); }

/* Icon-Zeilen — kompakte Navigation für Funktionsziele (Bilder nur wo sie stimmen) */
.link-rows {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    margin: 0 0 20px;
    box-shadow: var(--card-shadow);
}
.link-row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    border-bottom: 1px solid var(--border);
}
.link-row:last-child { border-bottom: 0; }
.link-row:hover { background: var(--bg-warm); text-decoration: none; color: var(--text); }
.link-row > i:first-child { color: var(--accent); width: 22px; text-align: center; flex: none; }
.link-row__chev { margin-left: auto; font-size: 0.7rem; color: var(--text-light); }

/* Zonen-Eyebrow — gliedert die Startseite in klare "Kapitel" */
.home-zone { display: flex; align-items: center; gap: 12px; margin: 28px 2px 12px; }
.home-zone span {
    font-size: 0.72rem; font-weight: 700; letter-spacing: 0.13em;
    text-transform: uppercase; color: var(--accent-dark); white-space: nowrap;
}
.home-zone::after { content: ''; flex: 1; height: 1px; background: var(--border); }

/* Host-Kontakt-Karte — WhatsApp zuerst, im Home-Flow präsent (nicht am Seitenende) */
.host-contact {
    background: var(--bg-warm); border: 1px solid var(--border);
    border-radius: 14px; padding: 16px; margin: 14px 0;
}
.host-contact__head { font-weight: 700; color: var(--primary); font-size: 1.05rem; display: flex; align-items: center; gap: 8px; }
.host-contact__head i { color: var(--accent); }
.host-contact__sub { margin: 6px 0 12px; color: var(--text-muted); font-size: 0.9rem; line-height: 1.45; }
.host-contact__btns { display: flex; gap: 8px; flex-wrap: wrap; }
.host-contact__btn {
    flex: 1 1 auto; min-width: 120px;
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 14px; border-radius: 10px;
    background: var(--bg); border: 1px solid var(--border);
    color: var(--primary); font-weight: 600;
}
.host-contact__btn i { font-size: 1.05rem; }
.host-contact__btn--wa { background: #25D366; border-color: #25D366; color: #fff; }
.host-contact__btn--wa:hover { color: #fff; }

/* Schwebender WhatsApp-Button — immer sichtbar, über der Bottom-Nav */
.contact-fab {
    position: fixed; right: 12px; bottom: 74px;
    width: 48px; height: 48px; border-radius: 50%;
    background: #25D366; color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.45rem; text-decoration: none;
    box-shadow: 0 4px 14px rgba(0,0,0,0.28);
    z-index: 900;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.contact-fab:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,0.32); }
.contact-fab:active { transform: scale(0.96); }
@media (min-width: 769px) { .contact-fab { right: 24px; bottom: 24px; } }

/* Saison-Highlights — kuratierte Regions-Highlights auf der Startseite */
.highlights-card { }
.highlights-list ul { list-style: none; margin: 4px 0 0; padding: 0; }
.highlights-list ul li {
    position: relative;
    padding: 10px 0 10px 30px;
    border-bottom: 1px solid var(--border);
}
.highlights-list ul li:last-child { border-bottom: 0; }
.highlights-list ul li::before {
    content: '\f277'; /* fa-map-signs */
    font-family: FontAwesome;
    position: absolute;
    left: 0;
    top: 10px;
    color: var(--accent);
    font-size: 0.95rem;
}
.highlights-list ul li b,
.highlights-list ul li strong { color: var(--primary); }
.highlights-list p { margin: 0 0 8px; }

/* Haus von A–Z — Akkordeon */
.az-accordion { display: flex; flex-direction: column; gap: 8px; margin: 18px 0; }
.az-item {
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--bg);
    overflow: hidden;
}
.az-item__summary {
    list-style: none;
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.az-item__summary::-webkit-details-marker { display: none; }
.az-item__summary::after {
    content: '\f078';
    font-family: FontAwesome;
    font-size: 0.78rem;
    color: var(--accent);
    transition: transform 0.2s ease;
    flex: none;
}
.az-item[open] .az-item__summary { border-bottom: 1px solid var(--border); }
.az-item[open] .az-item__summary::after { transform: rotate(180deg); }
.az-item__summary:hover { background: var(--bg-warm); }
.az-item__body { padding: 6px 16px 14px; }
.az-item__body ul { margin: 6px 0; padding-left: 20px; }
.az-item__body ul ul { margin: 2px 0; }

/* 3-Tage-Vorschau-Streifen */
.weather-card__forecast {
    display: flex;
    gap: 8px;
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px solid var(--border, #ece7dd);
}
.weather-card__forecast:empty { display: none; border: 0; padding: 0; margin: 0; }
.wfc-day {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-align: center;
}
.wfc-day__label { font-size: 0.72rem; font-weight: 600; color: var(--text-muted, #666); }
.wfc-day__icon svg { width: 30px; height: 30px; display: block; }
.wfc-day__temp { font-size: 0.78rem; color: var(--text-muted, #666); }
.wfc-day__temp b { color: var(--text, #2b2b2b); }
.wfc-day__rain { font-size: 0.68rem; color: #3b82c4; display: inline-flex; align-items: center; gap: 3px; }

/* ===== DSGVO-Consent-Checkbox (Formulare) — 2026-07-07 ===== */
.form-consent label {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.82rem;
    line-height: 1.4;
    color: var(--text-muted, #555);
    cursor: pointer;
    font-weight: 400;
}
.form-consent input[type="checkbox"] {
    margin-top: 2px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: var(--accent, #C4973A);
}

/* ===== Empfehlungs-Aktionen (Route/Website) — 2026-07-12 ===== */
.rec-card__links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 10px;
}
.rec-card__links .rec-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--accent-dark);
}
.rec-card__links .rec-card__link i { color: var(--accent); }

/* ===== Offline-/Retry-Screen — 2026-07-12 ===== */
.offline-screen {
    max-width: 420px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
}
.offline-screen > i {
    font-size: 2.6rem;
    color: var(--text-light);
    margin-bottom: 18px;
    display: block;
}
.offline-screen h2 { font-size: 1.4rem; color: var(--primary); margin-bottom: 10px; }
.offline-screen p { color: var(--text-muted); margin-bottom: 22px; line-height: 1.5; }
.offline-screen .btn-primary { display: inline-block; }

/* ===== iOS-Install-Hinweis — 2026-07-12 ===== */
.ios-install-hint {
    position: fixed;
    left: 12px; right: 12px;
    bottom: calc(var(--nav-height, 60px) + env(safe-area-inset-bottom, 0) + 10px);
    z-index: 1500;
    background: var(--primary, #2C3E2D);
    color: #fff;
    border-radius: 12px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.86rem;
    line-height: 1.35;
    box-shadow: 0 6px 20px rgba(0,0,0,0.28);
    animation: ios-hint-in 0.35s ease;
}
.ios-install-hint i { color: var(--accent, #C4973A); }
.ios-install-hint__close {
    flex-shrink: 0;
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    font-size: 1.5rem;
    line-height: 1;
    width: 32px; height: 32px;
    cursor: pointer;
}
@keyframes ios-hint-in { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
@media (min-width: 769px) { .ios-install-hint { max-width: 440px; left: auto; right: 20px; } }

/* ===== Screenreader-only + Fokus-Target (a11y) — 2026-07-12 ===== */
.sr-only {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
/* Programmatischer Fokus auf die Seiten-Überschrift zeigt keinen störenden Ring */
.page h1[tabindex="-1"]:focus, .page h2[tabindex="-1"]:focus,
#content h1[tabindex="-1"]:focus, #content h2[tabindex="-1"]:focus { outline: none; }

/* ===== UX 2.0 Phase 1 — Komponenten (2026-07-16) ===== */
/* Apple-Wallet/Airbnb-artiges Mockup: viel Weißraum, weiße Karten auf hellem
   Hintergrund, Radius 16px, weiche Schatten, großzügige Abstände.
   Mobile-first (Basis ~390px). Nutzt ausschließlich bestehende Variablen aus
   :root oben (--accent, --accent-light, --accent-dark, --primary, --bg,
   --bg-warm, --dark, --text, --text-muted, --text-light, --border,
   --font-heading, --font-body). Keine neuen Farben erfunden. */

.page-g2 {
    background: var(--bg);
}

/* Gemeinsame "Karte auf Weiß"-Basis: da --bg bereits #FFFFFF ist, brauchen
   Karten einen dezenten Rand + weichen Schatten, um sich vom Hintergrund
   abzuheben (Punkt 14 der Vorgabe). */
.g2-greeting,
.today-weather,
.today-webcam,
.today-list,
.mood-item,
.stay-tile,
.service-item,
.apt-card,
.mehr-list,
.steps-list {
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

/* -----------------------------------------
   1. Begrüßung
   ----------------------------------------- */
.g2-greeting {
    padding: 24px 16px 8px;
    border: none;
    box-shadow: none;
}
.g2-greeting__title {
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--dark);
    white-space: pre-line;
}
.g2-greeting__sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* -----------------------------------------
   2. Heute-Board — Wetter + Webcam
   ----------------------------------------- */
.today-board {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
    margin-top: 16px;
}
.today-weather {
    background: var(--bg);
    border-radius: 16px;
    padding: 16px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.today-weather__icon {
    font-size: 32px;
    line-height: 1;
}
.today-weather__temp {
    font-size: 40px;
    font-weight: 700;
    color: var(--dark);
    margin-top: 4px;
    line-height: 1;
}
.today-weather__cond {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 6px;
}
.today-weather__minmax {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 8px;
}
.today-weather__minmax span { display: inline-flex; align-items: center; gap: 2px; }

.today-webcam {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    min-height: 100%;
}
.today-webcam__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.today-webcam__badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.5);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    padding: 3px 9px 3px 7px;
    border-radius: 999px;
    letter-spacing: 0.02em;
}
.today-webcam__badge::before {
    content: '';
    width: 6px; height: 6px;
    border-radius: 50%;
    background: #e0453f;
    display: inline-block;
}
.today-webcam__label {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
}
.today-webcam__label span {
    background: rgba(0,0,0,0.55);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    margin: 10px;
}

/* -----------------------------------------
   3. Heute-Liste
   ----------------------------------------- */
.today-list {
    background: var(--bg);
    border-radius: 16px;
    margin: 12px 16px 0;
    overflow: hidden;
}
.today-list__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-top: 1px solid var(--border);
}
.today-list__row:first-child { border-top: none; }
a.today-list__row {
    color: inherit;
    text-decoration: none;
}
a.today-list__row:hover { text-decoration: none; }
.today-list__icon {
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
}
.today-list__label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    flex: 1;
}
.today-list__value {
    font-size: 13px;
    color: var(--text-muted);
    text-align: right;
}

/* -----------------------------------------
   4. Mood-Grid (Schnellzugriff-Kacheln)
   ----------------------------------------- */
.mood-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 0 16px;
    margin-top: 16px;
}
.mood-item {
    background: var(--bg);
    border-radius: 14px;
    padding: 12px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: transform 0.12s ease, opacity 0.12s ease;
}
.mood-item:hover { text-decoration: none; }
.mood-item:active {
    transform: scale(0.96);
    opacity: 0.85;
}
.mood-item__icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
}
.mood-item__label {
    font-size: 11.5px;
    color: var(--dark);
    margin-top: 6px;
    line-height: 1.15;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* -----------------------------------------
   5. Stay-Grid (Deine Unterkunft)
   ----------------------------------------- */
.stay-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
}
.stay-tile {
    background: var(--bg);
    border-radius: 16px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.stay-tile:hover { text-decoration: none; }
.stay-tile__icon {
    font-size: 20px;
    color: var(--accent-dark);
}
.stay-tile__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
}
.stay-tile__sub {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* -----------------------------------------
   6. Abschnitts-Wrapper
   ----------------------------------------- */
.g2-section {
    margin-top: 28px;
}
.g2-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding: 0 16px;
    margin-bottom: 12px;
}
.g2-section__title {
    font-family: var(--font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--dark);
}
.g2-section__more {
    font-size: 13.5px;
    color: var(--accent-dark);
    text-decoration: none;
}
.g2-section__more:hover { text-decoration: underline; }

/* -----------------------------------------
   7. Discover-Hero (Entdecken-Seite)
   ----------------------------------------- */
.discover-hero {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.discover-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.discover-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.62));
}
.discover-hero__title,
.discover-hero__sub {
    position: absolute;
    left: 20px;
    right: 20px;
    z-index: 1;
}
.discover-hero__title {
    bottom: 44px;
    font-family: var(--font-heading);
    font-size: 30px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.15;
}
.discover-hero__sub {
    bottom: 20px;
    font-size: 14px;
    color: var(--white);
    opacity: 0.9;
}

/* -----------------------------------------
   8. Rail-Grid (Bild-Kacheln)
   ----------------------------------------- */
.rail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
}
.rail-tile {
    position: relative;
    display: block;
    height: 130px;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
}
.rail-tile:hover { text-decoration: none; }
.rail-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.rail-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 45%, rgba(0,0,0,0.6));
}
.rail-tile__title,
.rail-tile__sub {
    position: absolute;
    left: 12px;
    right: 12px;
    z-index: 1;
}
.rail-tile__title {
    bottom: 26px;
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
}
.rail-tile__sub {
    bottom: 12px;
    font-size: 11.5px;
    color: var(--white);
    opacity: 0.85;
}

/* -----------------------------------------
   9. Service-Grid
   ----------------------------------------- */
.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 16px;
}
.service-item {
    background: var(--bg);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 14px;
    padding: 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    text-decoration: none;
    color: inherit;
    font-family: var(--font-body);
    cursor: pointer;
    width: 100%;
}
.service-item:hover { text-decoration: none; }
.service-item__icon {
    font-size: 20px;
    color: var(--accent-dark);
}
.service-item__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
    margin-top: 8px;
}
.service-item__sub {
    font-size: 12.5px;
    color: var(--text-muted);
    margin-top: 2px;
}

/* -----------------------------------------
   10. Service-Hero (dunkelgrüne CTA-Karte)
   ----------------------------------------- */
.service-hero {
    background: var(--primary);
    border-radius: 20px;
    padding: 20px;
    margin: 16px;
    color: var(--white);
    border: none;
    box-shadow: none;
}
.service-hero__title {
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
}
.service-hero__sub {
    font-size: 13.5px;
    color: rgba(255,255,255,0.8);
    margin-top: 6px;
    line-height: 1.4;
}
.service-hero__btn {
    display: inline-block;
    background: var(--white);
    color: var(--primary);
    font-size: 13.5px;
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 999px;
    margin-top: 14px;
    text-decoration: none;
}
.service-hero__btn:hover { text-decoration: none; opacity: 0.92; }

/* -----------------------------------------
   11. Steps-List (Anleitung, 3 Schritte)
   ----------------------------------------- */
.steps-list {
    background: var(--bg);
    border-radius: 16px;
    margin: 0 16px;
    overflow: hidden;
}
.steps-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 12px 16px;
    border-top: 1px solid var(--border);
}
.steps-item:first-child { border-top: none; }
.steps-item__num {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--accent-light);
    color: var(--accent-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 600;
}
.steps-item__body { flex: 1; }
.steps-item__title {
    font-size: 15px;
    font-weight: 600;
    color: var(--dark);
}
.steps-item__sub {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 2px;
    line-height: 1.4;
}

/* -----------------------------------------
   12. Apt-Card (Apartment-Vorstellung)
   ----------------------------------------- */
.apt-card {
    border-radius: 20px;
    overflow: hidden;
    margin: 0 16px;
}
.apt-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}
.apt-card__body {
    padding: 16px;
}
.apt-card__name {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--dark);
}
.apt-card__sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 2px;
}
.apt-card__btn {
    display: inline-block;
    margin-top: 12px;
    padding: 9px 18px;
    border: 1.5px solid var(--accent-dark);
    color: var(--accent-dark);
    font-size: 13.5px;
    font-weight: 600;
    border-radius: 999px;
    text-decoration: none;
}
.apt-card__btn:hover { text-decoration: none; background: var(--accent-light); }

/* -----------------------------------------
   13. Mehr-Liste (z.B. "Mehr"-Tab-Menü)
   ----------------------------------------- */
.mehr-list {
    background: var(--bg);
    border-radius: 16px;
    margin: 0 16px;
    overflow: hidden;
}
.mehr-list__row {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 16px;
    border-top: 1px solid var(--border);
    color: inherit;
    text-decoration: none;
}
.mehr-list__row:first-child { border-top: none; }
.mehr-list__row:hover { text-decoration: none; }
.mehr-list__icon {
    font-size: 20px;
    width: 24px;
    flex-shrink: 0;
    text-align: center;
    color: var(--accent-dark);
}
.mehr-list__label {
    font-size: 15px;
    font-weight: 500;
    color: var(--dark);
    flex: 1;
}
.mehr-list__chev {
    font-size: 13px;
    color: var(--text-light);
}

/* -----------------------------------------
   15. Desktop-Anpassungen (≥1024px)
   ----------------------------------------- */
@media (min-width: 1024px) {
    .today-board {
        grid-template-columns: 1fr 1fr 1.2fr;
    }
    .today-board .today-list {
        margin-top: 0;
    }
    .mood-grid {
        grid-template-columns: repeat(8, 1fr);
    }
    .stay-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .rail-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .discover-hero {
        height: 280px;
    }
}

/* Marken-Logo im Header (Startseite) */
.header-logo { height: 36px; width: auto; display: block; }

/* Wetter-Detailzeile (Regen % + Wind) — nur Desktop (Mockup D2) */
.today-weather__stats { display: none; }
.today-weather__sep { margin: 0 8px; color: var(--text-muted); }
@media (min-width: 1024px) {
    .today-weather__stats {
        display: flex; align-items: center; justify-content: center;
        margin-top: 10px; font-size: 13px; color: var(--text-muted); gap: 4px;
    }
}

/* ===== UX 2.0 Phase 2 — Karten 2.0 + Favoriten (2026-07-16) ===== */
.rec-card--v2 .rec-card__body { position: relative; }
.rec-card__fav {
    position: absolute; top: 10px; right: 10px;
    background: none; border: none; cursor: pointer; padding: 8px;
    font-size: 18px; color: var(--text-muted); line-height: 1;
}
.rec-card__fav.is-fav { color: #C0392B; }
.rec-card--v2 h3 { padding-right: 36px; }
.rec-card__desc {
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
    overflow: hidden; cursor: pointer;
}
.rec-card__desc.is-expanded { -webkit-line-clamp: unset; display: block; }

/* „Heute ideal"-Markierung im Mood-Grid (wetterabhängig per JS gesetzt) */
.mood-item { position: relative; }
.mood-item--today { border-color: var(--accent); box-shadow: 0 2px 8px rgba(196,151,58,0.25); }
.mood-item__badge {
    position: absolute; top: -7px; left: 50%; transform: translateX(-50%);
    background: var(--accent); color: #fff; font-size: 9.5px; font-weight: 600;
    padding: 2px 8px; border-radius: 999px; white-space: nowrap; letter-spacing: 0.02em;
}

/* ===== SVG-Piktogramme (Lucide, self-hosted) ===== */
.gm-ico { width: 1.35em; height: 1.35em; display: inline-block; vertical-align: -0.25em; }
.mood-item__icon .gm-ico { width: 22px; height: 22px; }
.today-weather__icon .gm-ico { width: 34px; height: 34px; }

/* ===== Q6 (2026-07-16): FA → Lucide-Migration Hauptflächen — ein Icon-System ===== */
/* Favoriten-Herz: kein Icon-Tausch mehr im JS, nur Füllzustand per Klasse */
.rec-card__fav .gm-ico { fill: none; }
.rec-card__fav.is-fav .gm-ico { fill: currentColor; }

/* Tab-Bar + Header-Buttons: SVG braucht explizite Größe (kein font-size mehr) */
#nav .nav-item .gm-ico { width: 22px; height: 22px; }
.header-btn .gm-ico { width: 20px; height: 20px; }
.stay-tile__icon.gm-ico, .mehr-list__icon.gm-ico, .today-list__icon.gm-ico { width: 20px; height: 20px; }
.privacy-notice__icon.gm-ico { width: 20px; height: 20px; }

/* Desktop-Sidebar: eigene Icon-Farbe/-Größe je Zustand (weicht von Text-Farbe ab) */
.sidebar-nav__item .gm-ico { width: 18px; height: 18px; color: var(--text-muted); }
.sidebar-nav__item--active .gm-ico { color: var(--accent); }
.sidebar-quick__item .gm-ico { width: 16px; height: 16px; color: var(--accent); }
.sidebar-card__phone .gm-ico { margin-right: 4px; }

/* Empfehlungs-Karten-Chips + Wetter-Tipp: Icon-Farbe weicht von Link-Farbe ab */
.rec-card__links .rec-card__link .gm-ico { color: var(--accent); }
.weather-card__tip .gm-ico { color: var(--accent, #C4973A); }

/* Offline-/Retry-Screen: Wifi-Icon zentriert, Fallback ohne Tag-Selektor */
.offline-screen > .gm-ico { width: 2.6rem; height: 2.6rem; color: var(--text-light); margin: 0 auto 18px; display: block; }

/* ===== I1 — Wetter & Webcams Screen (2026-07-17) ===== */
.today-weather--page { width: 100%; }
.today-weather__stats--always {
    display: flex; align-items: center; justify-content: center;
    margin-top: 10px; font-size: 13.5px; color: var(--text-muted); gap: 4px;
}
.w-source { display: block; margin-top: 10px; font-size: 11.5px; color: var(--text-muted); }
.w-day { align-items: center; gap: 10px; }
.w-day__name { min-width: 62px; font-size: 14px; }
.w-day__icon svg { width: 26px; height: 26px; display: block; }
.w-day__cond { flex: 1; font-size: 13px; color: var(--text-muted); }
.today-webcam--page { display: block; height: 200px; }
@media (min-width: 1024px) { .today-webcam--page { height: 320px; } }

/* ===== R1c/R1d — Chat-Bubble + Notfall-Seite Feinschliff (2026-07-19) ===== */
.chat-bubble {
    background: var(--accent-light, #f5efe3); border-radius: 18px 18px 18px 4px;
    padding: 14px 16px; max-width: 85%;
}
.chat-bubble__text { margin: 0; font-size: 15px; line-height: 1.4; }

/* ===== R1a — Wetter-Tabs (2026-07-19) ===== */
.w-tabs { display: flex; gap: 8px; }
.w-tab {
    flex: 1; padding: 10px 12px; border-radius: 999px; border: 1px solid rgba(0,0,0,0.08);
    background: #fff; font-size: 14px; font-weight: 600; color: var(--text-muted);
    cursor: pointer; font-family: var(--font-body);
}
.w-tab.is-active { background: var(--primary, #2C3E2D); color: #fff; border-color: transparent; }
