  :root {
    --bg: #ffffff;
    --panel: #ffffff;
    --ink: #1a1510;
    --ink-muted: #8a7f72;
    --ink-light: #b8ada0;
    --gold: #4a73a0;
    --gold-light: #5b84b2;
    --gold-soft: #e8eff6;
    --gold-tint: #f0f4f9;
    --border: #ece5d4;
    --border-strong: #d9cfb8;
    --success: #4a6fa5;
    --danger: #b64328;
  }
  * { box-sizing: border-box; margin: 0; padding: 0; }
  html, body {
    background: var(--bg);
    color: var(--ink);
    font-family: 'Quicksand', -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", "Segoe UI", Arial, sans-serif;
    font-weight: 300;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
  }
  button { font-family: inherit; font-weight: inherit; }
  input, textarea, select { font-family: inherit; }
  a { color: var(--ink); text-decoration: none; }


  /* DHS menu wrap — AOI style */
  .dhs-menu-wrap {
    display: none !important;
    position: fixed; bottom: 20px; right: 20px; z-index: 800;
    display: flex; flex-direction: column; align-items: flex-end;
  }
  .dhs-menu-items {
    display: flex; flex-direction: column; gap: 0;
    margin-bottom: 18px;
    opacity: 0; pointer-events: none;
    transform: translateY(16px);
    transition: all 0.3s cubic-bezier(.4,0,.2,1);
    align-items: flex-end;
  }
  .dhs-menu-wrap.open .dhs-menu-items {
    opacity: 1; pointer-events: auto;
    transform: translateY(0);
  }
  .dhs-menu-item {
    display: flex; align-items: center; gap: 14px;
    background: transparent;
    padding: 10px 0;
    border: none; cursor: pointer;
    font-size: 13px; font-weight: 400; color: #8a9ab5;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    white-space: nowrap; transition: color 0.2s;
    text-align: right;
  }
  .dhs-menu-item:hover { color: #4a6fa5; }
  .dhs-menu-item.active { color: #4a6fa5; }
  .dhs-menu-item .menu-triskele { width: 22px; height: 22px; opacity: 0.4; flex-shrink: 0; }
  .dhs-menu-item:hover .menu-triskele { opacity: 0.6; }
  /* Submenu */
  .dhs-submenu {
    display: flex; flex-direction: column; align-items: flex-end;
    max-height: 0; overflow: hidden;
    transition: max-height 0.25s ease, opacity 0.25s ease;
    opacity: 0;
  }
  .dhs-submenu.open { max-height: 120px; opacity: 1; }
  .dhs-submenu-item {
    display: block; background: none; border: none; cursor: pointer;
    padding: 6px 54px 6px 0;
    font-size: 11px; font-weight: 400; color: #a0aec0;
    letter-spacing: 0.18em; text-transform: uppercase;
    text-align: right; transition: color 0.15s;
  }
  .dhs-submenu-item:hover { color: #4a6fa5; }
  /* Close button — X circle like AOI */
  .dhs-close-btn {
    width: 46px; height: 46px; border-radius: 50%;
    border: 1.5px solid #b0bdd0;
    background: #fff;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: border-color 0.2s, transform 0.2s;
    color: #8a9ab5; font-size: 20px; line-height: 1;
  }
  .dhs-close-btn:hover { border-color: #4a6fa5; color: #4a6fa5; }
  /* Initially hidden content sections */
  .content-section { display: none; }
  .content-section.visible { display: block; }

  /* Logo badge — fixed bottom-right */
  .topbar { display: none; }
  .logo-badge {
    display: none !important;
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
    padding: 8px 14px 8px 8px;
    border-radius: 14px;
    border: 1px solid #d0d0d5;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    cursor: pointer;
    z-index: 800;
    transition: opacity 0.15s;
  }
  .logo-badge:hover { opacity: 0.8; }
  .logo-badge svg { width: 34px; height: 34px; }
  .logo-badge span {
    font-size: 17px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #999;
    
    display: inline-block;
  }
  .dhs-menu-wrap.open .logo-badge { display: none; }
  .dhs-close-wrap { display: none; }
  .dhs-menu-wrap.open .dhs-close-wrap { display: flex; justify-content: flex-end; }

  .wrap {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 28px;
  }

  .hero {
    text-align: center;
    padding: 10px 0 40px;
    min-height: 50vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.4s ease;
  }
  .hero.compact {
    min-height: auto;
    padding: 0;
    position: fixed;
    bottom: 46px;
    right: 90px;
    left: auto;
    width: auto;
    z-index: 200;
    background: transparent;
    border-top: none;
    box-shadow: none;
  }
  .hero.compact h1,
  .hero.compact .tagline {
    display: none !important;
  }
  .hero.compact .search-box {
    max-width: none;
    width: min(calc(100vw - 120px), 520px);
    margin: 0;
    transform-origin: right center;
    animation: searchSlideIn 0.28s cubic-bezier(.22,.61,.36,1);
  }
  @keyframes searchSlideIn {
    from { opacity: 0; transform: translateX(30px) scaleX(0.97); }
    to { opacity: 1; transform: translateX(0) scaleX(1); }
  }
  .hero.collapsed { display: none !important; }
  .search-nav-item {
    display: none; position: fixed; bottom: 28px; right: 90px; z-index: 795;
    flex-direction: column; align-items: center; gap: 6px; padding: 6px 10px; cursor: pointer;
  }
  .search-nav-item.show { display: flex; }
  .search-nav-item.show.menuopen { display: none; }
  .search-nav-item .mn-icon { width: 40px; height: 40px; position: relative; flex-shrink: 0; }
  .search-nav-item .mn-icon canvas { width: 100%; height: 100%; position: absolute; top: 0; left: 0; }
  .search-nav-item .mn-icon svg { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 50%; height: 50%; pointer-events: none; }
  .search-nav-item .mn-label { font-family: 'Quicksand', sans-serif; font-size: 10px; font-weight: 500; color: #2C3E6B; letter-spacing: 2px; text-transform: uppercase; white-space: nowrap; }
  .search-nav-item:hover .mn-label { color: #4a73a0; }

  /* "Mehr"-Submenü: fährt nach oben aus der Mehr-Bubble */
  .mn-submenu {
    position: fixed; right: 90px; bottom: 106px; z-index: 794;
    display: flex; flex-direction: column-reverse; align-items: center; gap: 12px;
    pointer-events: none;
  }
  .mn-submenu .mn-item { transform: translateY(14px); }
  .mn-submenu .mn-item.visible { transform: translateY(0); }

  .hero h1 {
    font-size: 32px;
    font-weight: 300;
    letter-spacing: 4px;
    color: #2C3E6B;
    margin-bottom: 6px;
    font-family: 'Quicksand', sans-serif;
  }
  .hero h1 strong { font-weight: 500; }
  .hero .tagline {
    font-size: 13px;
    color: #8a9ab5;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
  }

  .search-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 10px 8px 10px 22px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    margin: 22px auto 0;
    max-width: 640px;
    width: 100%;
    box-shadow: 0 2px 14px rgba(26, 21, 16, 0.04);
    transition: border-color 0.15s;
  }
  .search-box:focus-within { border-color: var(--gold-light); box-shadow: 0 2px 20px rgba(196,154,42,0.12); }
  .search-box textarea {
    flex: 1;
    border: none;
    outline: none;
    font-size: 15px;
    background: transparent;
    color: var(--ink);
    font-weight: 400;
    padding: 8px 0;
    resize: none;
    min-height: 24px;
    max-height: 400px;
    line-height: 1.5;
    font-family: inherit;
    overflow-y: auto;
    width: 100%;
  }
  .search-box textarea::placeholder { color: var(--ink-light); font-weight: 300; }
  .search-box .ic {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--gold-tint); display: flex; align-items: center; justify-content: center;
    border: 1px solid var(--border); cursor: pointer;
    color: var(--ink); transition: all 0.15s;
  }
  .search-box .ic svg, .search-box .ic * { pointer-events: none; }
  .hero.compact #locBtn { display: none !important; }
  .search-box .ic:hover { background: var(--gold-soft); border-color: var(--gold-light); }
  .search-box .ic.listening {
    background: var(--danger); color: #fff; border-color: var(--danger);
    animation: pulse 1.2s infinite;
  }
  .search-box .ic.send-primary { background: #4a73a0; color: #fff; border-color: #4a73a0; }
  .search-box .ic.send-primary:hover { background: #000; }
  @keyframes pulse { 0%,100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(182,67,40,0.4); } 50% { transform: scale(1.08); box-shadow: 0 0 0 8px rgba(182,67,40,0); } }
  .mic-indicator {
    display: none; text-align: center; font-size: 12px;
    color: var(--danger); margin-top: 8px; font-weight: 500;
  }
  .mic-indicator.visible { display: block; }
  .mic-indicator .dots::after {
    content: '...'; animation: dots 1.5s infinite;
  }
  @keyframes dots {
    0%, 20% { content: '.'; } 40% { content: '..'; } 60%, 100% { content: '...'; }
  }
  .search-summary {
    display: none;
    max-width: 700px;
    margin: 0 auto 8px;
    text-align: center;
    font-size: 13px;
    line-height: 1.4;
    color: var(--ink-muted);
    background: #f4f7fb;
    border: 1px solid #e8edf2;
    border-radius: 999px;
    padding: 7px 18px;
  }
  .search-summary.visible { display: block; }
  .search-summary strong { color: var(--ink); font-weight: 600; }
  .search-summary .ss-count { color: #4a73a0; font-weight: 600; }

  .hero-response {
    display: none; text-align: left;
    background: transparent; border: none; border-radius: 0;
    padding: 0 28px; font-size: 14px; line-height: 1.55; color: var(--ink);
    box-shadow: none; width: 100%; margin-left: auto; margin-right: auto;
  }
  .hero-response.visible { display: block; }
  /* When compact: results scroll above fixed search bar */
  .hero-response.results-mode {
    position: fixed;
    top: 0; left: 0; right: 0;
    bottom: 85px;
    overflow-y: auto;
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 60px), transparent 100%);
    mask-image: linear-gradient(to bottom, #000 calc(100% - 60px), transparent 100%);
    padding: 24px 28px 70px;
    margin: 0 auto;
    z-index: 50;
    background: #fff;
  }
  .hero-response .rc-summary { text-align: center; font-size: 14px; line-height: 1.5; color: var(--ink-muted); max-width: 960px; margin: 0 auto; padding: 22px 12px 26px; }
  .hero-response .rc-summary strong { color: var(--ink); font-weight: 600; }
  .hero-response .rc-summary .ss-count { color: #4a73a0; font-weight: 600; }
  .hero-response .rc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; max-width: 960px; margin: 0 auto; }
  @media (max-width: 900px) { .hero-response .rc-grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 600px) { .hero-response .rc-grid { grid-template-columns: 1fr; } }
  .hero-response .rc { background: #fff; border: 1px solid transparent; border-radius: 12px; padding: 10px 14px; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
  .hero-response .rc:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.09); }
  .hero-response .rc h4 { font-size: 14px; margin: 0 0 2px; color: var(--ink); font-weight: 700; }
  .hero-response .rc .det { font-size: 12.5px; color: #5b6b7f; font-weight: 500; }
  .hero-response .rc .dst { font-size: 11.5px; color: #008668; font-weight: 600; margin-top: 4px; }
  .hero-response .rc .ra { margin-top: 10px; display: flex; gap: 8px; flex-wrap: wrap; align-items: center; }
  .hero-response .rc .rc-actions { display: flex; align-items: center; gap: 8px; margin-top: 6px; flex-wrap: nowrap; white-space: nowrap; }
  .hero-response .rc .rb { font-size: 13px; padding: 4px 4px; border-radius: 8px; border: none; background: transparent; color: var(--ink); cursor: pointer; text-decoration: none; display: inline-flex; align-items: center; margin: 0; transition: background 0.15s; }
  @media (hover: hover) { .hero-response .rc .rb:hover { background: #f1f5fa; } }
  .hero-response .rc .rb.slot-more { padding: 0; width: 18px; height: 18px; min-width: 18px; justify-content: center; border-radius: 50%; background: #eef2f8; color: #4a73a0; font-weight: 700; font-size: 14px; line-height: 1; margin-left: 1px; }
  @media (hover: hover) { .hero-response .rc .rb.slot-more:hover { background: #4a73a0; color: #fff; } }
  .hero-response .rc .rb.p { background: var(--gold); color: #fff; border-color: var(--gold); }
  .hero-response .rc .rb.p:hover { opacity: 0.85; }

  .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: var(--gold);
    text-transform: uppercase;
    margin: 8px 0 16px;
    padding-left: 4px;
  }

  /* 3-column grid */
  .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }
  @media (max-width: 900px) { .grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 620px) { .grid { grid-template-columns: 1fr; } }

  .card {
    background: var(--panel);
    border: 1px solid transparent;
    border-radius: 14px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.25s cubic-bezier(0.25,0.46,0.45,0.94), border-color 0.2s;
    min-width: 0;
  }
  .card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 8px 30px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
  }
  /* Ensure ALL children pass clicks through to the card itself */
  .card > *, .card > * * { pointer-events: none; }
  .action-box > *, .action-box > * * { pointer-events: none; }
  .ph {
    width: 52px; height: 52px; border-radius: 50%;
    flex-shrink: 0; overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 15px; font-weight: 600; color: #fff;
    background: var(--gold-soft);
  }
  .ph img { width: 100%; height: 100%; object-fit: cover; }
  /* Elegante Blau-Grau-Palette — professionell, medizinisch, dezent */
  .ph.g1 { background: linear-gradient(135deg, #8eafc4 0%, #4a6f8a 100%); color: #fff; }
  .ph.g2 { background: linear-gradient(135deg, #a0b8cc 0%, #5a7d96 100%); color: #fff; }
  .ph.g3 { background: linear-gradient(135deg, #9ab0c8 0%, #506d88 100%); color: #fff; }
  .ph.g4 { background: linear-gradient(135deg, #8ca4ba 0%, #4e6e88 100%); color: #fff; }
  .ph.g5 { background: linear-gradient(135deg, #b8c8d8 0%, #7a98ae 100%); color: #fff; }
  .ph.g6 { background: linear-gradient(135deg, #96b2c8 0%, #5b7f98 100%); color: #fff; }

  .card .info { flex: 1; min-width: 0; }
  .card-rating { margin-top: 2px; line-height: 1; }
  .card-rating svg { vertical-align: -1px; }
  .card .name { font-size: 14px; font-weight: 700; color: var(--ink); letter-spacing: -0.005em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .card .role { font-size: 12px; color: var(--ink-muted); font-weight: 400; margin-top: 1px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* Bottom actions */
  .bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 44px 0 24px;
  }
  @media (max-width: 620px) { .bottom { grid-template-columns: 1fr; } }
  .action-box {
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 20px 22px;
    cursor: pointer;
    transition: all 0.15s;
    text-align: left;
    display: flex; gap: 14px; align-items: flex-start;
  }
  .action-box:hover {
    border-color: var(--gold-light);
    background: var(--gold-tint);
    transform: translateY(-1px);
  }
  .action-box .ic {
    width: 42px; height: 42px; background: var(--gold-soft); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0;
  }
  .action-box h3 { font-size: 15px; font-weight: 700; margin-bottom: 3px; }
  .action-box p { font-size: 13px; color: var(--ink-muted); font-weight: 400; line-height: 1.4; }

  .page-footer {
    text-align: center;
    padding: 30px 20px 80px;
    color: var(--ink-light);
    font-size: 12px;
    font-weight: 400;
  }
  .page-footer .stats { color: var(--ink-muted); margin-bottom: 4px; }

  .view { display: none; }
  .view.active { display: block; }
  .back { background: none; border: none; cursor: pointer; color: var(--ink-muted); font-size: 13px; padding: 6px 0; margin-bottom: 16px; }
  .back:hover { color: var(--gold); }

  /* Symptom chips */
  .symptoms-wrap { margin-top: 40px; margin-bottom: 16px; }
  .symptoms-bar { display: flex; flex-wrap: wrap; gap: 6px; }
  .chip {
    background: transparent; border: 1px solid var(--border); padding: 6px 14px;
    border-radius: 999px; font-size: 12px; cursor: pointer; color: var(--ink-muted);
    font-weight: 400;
  }
  .chip:hover { border-color: var(--gold-light); color: var(--ink); background: var(--gold-tint); }
  .chip.active { background: var(--ink); color: #fff; border-color: var(--ink); }

  /* DOCTOR DETAIL MODAL — matches dhs.berlin style */
  .modal-bg {
    display: none; position: fixed; inset: 0;
    background: rgba(26, 21, 16, 0.35);
    z-index: 200; align-items: flex-start; justify-content: center;
    padding: 40px 20px; overflow-y: auto;
    backdrop-filter: blur(6px);
  }
  .modal-bg.open { display: flex; }
  .modal-doc {
    background: #fff;
    border-radius: 22px;
    max-width: 500px; width: 100%;
    padding: 34px 36px 34px;
    box-shadow: 0 24px 80px rgba(26,21,16,0.25);
    position: relative;
  }
  .modal-doc .close {
    position: absolute; top: 20px; right: 20px;
    width: 32px; height: 32px; border-radius: 50%;
    border: 1px solid var(--border); background: #fff;
    cursor: pointer; font-size: 14px; color: var(--ink-muted);
    display: flex; align-items: center; justify-content: center;
  }
  .modal-doc .close:hover { background: var(--bg); color: var(--ink); }

  .modal-doc .ph-big {
    width: 92px; height: 92px; border-radius: 50%;
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; font-weight: 600; color: #fff;
    background: var(--gold-soft);
    margin-bottom: 20px;
  }
  .modal-doc .ph-big img { width: 100%; height: 100%; object-fit: cover; }
  .modal-doc .dname { font-size: 24px; font-weight: 700; letter-spacing: -0.01em; margin-bottom: 3px; }
  .modal-doc .drole { color: var(--gold); font-size: 14px; margin-bottom: 22px; font-weight: 400; }

  .slots-box {
    background: var(--gold-tint);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 22px;
  }
  .slots-box .hdr {
    display: flex; align-items: center; gap: 8px;
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
  }
  .slots-box .hdr .cal-ic { font-size: 14px; }
  .slot-pill {
    background: #fff; border: 1px solid var(--border); border-radius: 10px;
    padding: 11px 14px; margin-bottom: 6px; cursor: pointer;
    display: flex; align-items: center; justify-content: space-between;
    font-size: 14px; font-weight: 600; color: var(--ink);
    transition: all 0.15s;
  }
  .slot-pill:hover { border-color: var(--gold); box-shadow: 0 2px 8px rgba(196,154,42,0.15); }
  .slot-pill .lbl { display: flex; align-items: center; gap: 10px; }
  .slot-pill .dot { display: none; }
  .slot-pill .arrow { color: var(--ink-light); font-size: 14px; }
  .slot-pill:last-child { margin-bottom: 0; }
  .more-slots {
    display: block; text-align: center; margin-top: 10px;
    font-size: 12px; color: var(--gold); text-decoration: none;
    padding: 6px 0; font-weight: 500;
  }
  .more-slots:hover { color: var(--ink); }

  .section-h {
    font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
    color: var(--gold); text-transform: uppercase;
    margin-top: 18px; margin-bottom: 10px;
  }
  .bullet-list { font-size: 14px; line-height: 1.9; color: var(--ink); font-weight: 400; }
  .bullet-list div::before { content: "• "; }

  .tag-row { display: flex; flex-wrap: wrap; gap: 6px; }
  .tag {
    background: var(--gold-tint); border: 1px solid var(--border);
    padding: 6px 13px; border-radius: 999px;
    font-size: 12px; color: var(--ink); font-weight: 500;
  }
  .addr-block {
    font-size: 13px; color: var(--ink-muted); line-height: 1.6;
    margin-top: 8px;
  }
  .addr-block a { color: var(--ink-muted); }
  .addr-block a:hover { color: var(--gold); }

  /* Full calendar view (when "Alle Termine" clicked) */
  .calendar-view {
    background: #fff; border: 1px solid var(--border); border-radius: 18px;
    padding: 20px; margin-top: 14px;
  }
  .cal-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
  .cal-head .title { font-size: 14px; font-weight: 600; }
  .cal-nav button { background: #fff; border: 1px solid var(--border); padding: 4px 12px; border-radius: 6px; cursor: pointer; font-size: 12px; color: var(--ink-muted); }
  .cal-nav button:hover:not(:disabled) { border-color: var(--gold-light); color: var(--ink); }
  .cal-nav button:disabled { opacity: 0.4; cursor: not-allowed; }
  .days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
  @media (max-width: 700px) { .days { grid-template-columns: repeat(3, 1fr); } }
  .day { background: var(--bg); border: 1px solid var(--border); border-radius: 8px; padding: 8px 5px; min-height: 60px; }
  .day.blocked { opacity: 0.3; }
  .day .date { font-size: 10px; color: var(--ink-muted); text-align: center; margin-bottom: 5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; }
  .slots { display: flex; flex-direction: column; gap: 2px; }
  .slot { font-size: 10px; padding: 2px 0; text-align: center; border-radius: 3px; background: #fff; border: 1px solid var(--border); color: var(--ink); cursor: pointer; font-weight: 400; }
  .slot:hover:not(.booked) { background: var(--gold); border-color: var(--gold); color: #fff; }
  .slot.booked { background: var(--bg); color: var(--ink-light); border-color: var(--border); text-decoration: line-through; cursor: not-allowed; }
  .slot.mine { background: var(--gold-soft); color: var(--ink); border-color: var(--gold-light); font-weight: 600; }

  /* Booking confirm modal (2nd level) */
  .book-modal-bg { display: none; position: fixed; inset: 0; background: rgba(26,21,16,0.5); z-index: 300; align-items: center; justify-content: center; padding: 20px; backdrop-filter: blur(4px); }
  .book-modal-bg.open { display: flex; }
  .book-modal { background: #fff; border-radius: 18px; max-width: 440px; width: 100%; overflow: hidden; box-shadow: 0 20px 60px rgba(26,21,16,0.3); }
  .bm-head { padding: 16px 22px; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; }
  .bm-head strong { font-size: 15px; font-weight: 600; }
  .bm-body { padding: 20px 22px; }
  .bm-body .summary { background: var(--bg); padding: 12px 14px; border-radius: 10px; font-size: 13px; margin-bottom: 14px; font-weight: 400; }
  .bm-body .row { margin-bottom: 12px; }
  .bm-body label { display: block; font-size: 11px; color: var(--ink-muted); margin-bottom: 4px; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
  .bm-body input { width: 100%; padding: 9px 11px; border: 1px solid var(--border); border-radius: 8px; font-size: 14px; background: var(--bg); font-weight: 400; }
  .bm-body input:focus { outline: none; border-color: var(--gold-light); background: #fff; }
  .bm-foot { padding: 14px 22px; border-top: 1px solid var(--border); display: flex; justify-content: flex-end; gap: 8px; }
  .btn { border: 1px solid var(--border); background: #fff; padding: 8px 16px; border-radius: 999px; font-size: 13px; cursor: pointer; color: var(--ink); font-weight: 500; }
  .btn:hover { border-color: var(--border-strong); }
  .btn.primary { background: var(--ink); color: #fff; border-color: var(--ink); }
  .btn.primary:hover { background: #000; }
  .btn.danger { background: var(--danger); color: #fff; border-color: var(--danger); }

  /* My Termine floating button */
  .my-termine {
    position: fixed; top: 18px; right: 200px; z-index: 50;
    background: #fff; border: 1px solid var(--border); border-radius: 999px;
    padding: 7px 13px; font-size: 12px; cursor: pointer;
    display: flex; align-items: center; gap: 6px;
  }
  .my-termine:hover { border-color: var(--gold-light); }
  .my-termine .count { background: var(--gold); color: #fff; padding: 0 7px; border-radius: 10px; font-weight: 600; font-size: 11px; min-width: 16px; text-align: center; }

  .termine-list .titem {
    background: #fff; border: 1px solid var(--border); border-radius: 14px;
    padding: 14px 18px; margin-bottom: 10px;
    display: flex; justify-content: space-between; align-items: center; gap: 12px;
  }
  .termine-list .when { font-size: 14px; font-weight: 600; }
  .termine-list .who { font-size: 12px; color: var(--ink-muted); margin-top: 2px; font-weight: 400; }

  .admin-btn {
    position: fixed; bottom: 14px; right: 14px; z-index: 40;
    background: rgba(26,21,16,0.9); color: #fff; border: none;
    padding: 7px 12px; border-radius: 999px; font-size: 11px; cursor: pointer;
    font-weight: 400;
  }
  .empty { text-align: center; padding: 40px 20px; color: var(--ink-muted); font-size: 14px; font-weight: 400; }

  .flash {
    position: fixed; top: 70px; left: 50%; transform: translateX(-50%); z-index: 400;
    background: #fff; border: 1px solid var(--border-strong);
    border-radius: 12px; padding: 12px 18px; font-size: 13px;
    box-shadow: 0 8px 24px rgba(26,21,16,0.15); max-width: 400px;
  }
  .flash.success { border-color: var(--success); color: var(--success); }
  .flash.error { border-color: var(--danger); color: var(--danger); }

/* --- Navigations-Button --- */
.menu-btn{position:fixed;bottom:28px;right:28px;width:52px;height:52px;cursor:pointer;z-index:800;transition:transform .3s ease;}
.menu-btn:hover{transform:scale(1.08)}
.menu-btn canvas{width:100%;height:100%;position:absolute;top:0;left:0}
.menu-btn .mini-tris{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:50%;height:50%;pointer-events:none;transition:all .45s cubic-bezier(.25,.8,.25,1);}
.menu-btn.open .mini-tris{opacity:0;transform:translate(-50%,-50%) scale(0.5);}
.menu-btn .menu-close{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:40%;height:40%;opacity:0;transition:all .3s;stroke:#2C3E6B;stroke-width:2;}
.menu-btn.open .menu-close{opacity:1;}
.mn-nav{position:fixed;bottom:28px;right:90px;display:flex;flex-direction:row-reverse;align-items:center;gap:6px;z-index:790;pointer-events:none;}
.mn-item{display:flex;flex-direction:column;align-items:center;gap:6px;padding:6px 12px;cursor:pointer;opacity:0;transform:translateX(30px);transition:opacity .35s cubic-bezier(.25,.8,.25,1),transform .35s cubic-bezier(.25,.8,.25,1);pointer-events:none;text-decoration:none;}
.mn-item.visible{opacity:1;transform:translateX(0);pointer-events:auto;}
.mn-item .mn-icon{width:40px;height:40px;position:relative;flex-shrink:0;}
.mn-item .mn-icon canvas{width:100%;height:100%;position:absolute;top:0;left:0;}
.mn-item .mn-icon svg{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:50%;height:50%;pointer-events:none;}
.mn-item .mn-label{font-family:'Quicksand',sans-serif;font-size:10px;font-weight:500;color:#2C3E6B;letter-spacing:2px;text-transform:uppercase;white-space:nowrap;opacity:0;transform:translateY(6px);transition:all .3s cubic-bezier(.25,.8,.25,1);}
.mn-item.visible .mn-label{opacity:1;transform:translateY(0);}
.mn-item:hover .mn-label{color:#4a73a0;}
