:root {
    --blue: #00b0f0;
    --blue-dark: #007fb0;
    --blue-dim: rgba(0,176,240,0.1);
    --blue-border: rgba(0,176,240,0.28);
    --bg: #0e1219;
    --surface: #161b24;
    --surface2: #1e2535;
    --surface3: #252d3d;
    --border: #2a3348;
    --text: #e4eaf5;
    --text-muted: #6b7a99;
    --text-dim: #3d4a66;
    --green: #22c55e;
    --red: #ef4444;
    --yellow: #eab308;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { height: 100%}
body { font-family: 'Barlow', sans-serif; background: #060a10; color: var(--text); display: flex; justify-content: center; align-items: center; height: 100%; }

.phone { width: 100%; max-width: 1200px; height: 100%; background: var(--bg); box-shadow: 0 0 0 2px #1e2535, 0 0 0 10px #060a10, 0 40px 120px rgba(0,0,0,0.95), inset 0 0 0 1px #2a3348, 0 0 80px rgba(0,176,240,0.04); overflow: hidden; position: relative; display: flex; flex-direction: column; }

.statusbar { height: 44px; background: var(--bg); display: flex; align-items: center; justify-content: space-between; padding: 0 24px; font-size: 12px; font-weight: 600; flex-shrink: 0; z-index: 10; }
.statusbar-notch { width: 120px; height: 28px; background: #000; border-radius: 20px; position: absolute; left: 50%; transform: translateX(-50%); top: 8px; }
.statusbar-icons { display: flex; gap: 6px; align-items: center; font-size: 11px; }

.screen { flex: 1; overflow-y: auto; overflow-x: hidden; -webkit-overflow-scrolling: touch; display: none; padding-bottom: 80px; }
.screen.active { display: block; }
.screen::-webkit-scrollbar { display: none; }

/* Bottom Nav */
.bottomnav { height: 80px; background: var(--surface); border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-around; flex-shrink: 0; z-index: 10; padding-bottom: 10px; }
.nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; cursor: pointer; padding: 8px 14px; border-radius: 12px; transition: all 0.2s; color: var(--text-muted); font-size: 10px; font-weight: 600; letter-spacing: 0.05em; text-transform: uppercase; border: none; background: none; position: relative; }
.nav-item.active { color: var(--blue); }
.nav-item svg { width: 22px; height: 22px; }
.nav-dot { width: 4px; height: 4px; border-radius: 50%; background: var(--blue); opacity: 0; transition: opacity 0.2s; }
.nav-item.active .nav-dot { opacity: 1; }
.notif-badge { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); position: absolute; top: 6px; right: 12px; box-shadow: 0 0 6px var(--blue); }

/* ===== LOGIN ===== */
#screen-login { display: flex; flex-direction: column; justify-content: center; align-items: center; padding: 30px 28px; }
.login-logo { font-family: 'Bebas Neue', sans-serif; font-size: 44px; color: var(--blue); letter-spacing: 4px; }
.login-tagline { font-size: 12px; color: var(--text-muted); margin-bottom: 32px; letter-spacing: 0.1em; text-transform: uppercase; }
.login-card { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 20px; padding: 24px; margin-bottom: 16px; }
.login-card-title { font-family: 'Bebas Neue', sans-serif; font-size: 22px; letter-spacing: 1px; margin-bottom: 4px; }
.login-card-sub { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; line-height: 1.4; }
.form-group { margin-bottom: 12px; }
.form-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 6px; display: block; }
.form-input { width: 100%; background: var(--surface2); border: 1px solid var(--border); border-radius: 12px; padding: 13px 15px; color: var(--text); font-family: 'Barlow', sans-serif; font-size: 15px; font-weight: 600; outline: none; transition: border-color 0.2s; }
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-dim); }
.form-input::placeholder { color: var(--text-dim); font-weight: 400; }
.login-btn { width: 100%; background: var(--blue); color: #0e1219; border: none; border-radius: 12px; padding: 15px; font-family: 'Bebas Neue', sans-serif; font-size: 20px; letter-spacing: 2px; cursor: pointer; margin-top: 4px; transition: all 0.2s; }
.login-btn:hover { background: #22c1ff; }
.login-info { font-size: 12px; color: var(--text-dim); text-align: center; margin-bottom: 20px; line-height: 1.5; }
.login-info a { color: var(--blue); text-decoration: none; }
.past-block { width: 100%; background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 16px; }
.past-block-title { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 12px; }
.past-item { display: flex; align-items: center; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--border); }
.past-item:last-child { border-bottom: none; }
.past-item-icon { font-size: 20px; }
.past-item-name { font-size: 13px; font-weight: 700; }
.past-item-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.past-item-pill { margin-left: auto; font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 20px; white-space: nowrap; }
.pill-done { background: rgba(34,197,94,0.1); color: var(--green); border: 1px solid rgba(34,197,94,0.25); }
.pill-active { background: var(--blue-dim); color: var(--blue); border: 1px solid var(--blue-border); }

/* ===== HOME ===== */
.home-header { background: linear-gradient(160deg, #0d1829 0%, var(--bg) 65%); padding: 20px 20px 0; position: relative; overflow: hidden; }
.home-header::before { content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: radial-gradient(circle, rgba(0,176,240,0.08) 0%, transparent 70%); }
.logo-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.logo { font-family: 'Bebas Neue', sans-serif; font-size: 24px; color: var(--blue); letter-spacing: 2px; }
.logo-sub { color: var(--text-muted); font-size: 12px; font-family: 'Barlow', sans-serif; font-weight: 300; margin-top: -3px; }
.icon-btn { width: 38px; height: 38px; border-radius: 12px; background: var(--surface2); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 18px; }
.greeting { font-size: 26px; font-weight: 700; line-height: 1.1; padding-bottom: 16px; }
.greeting span { color: var(--blue); }

/* Countdown */
.countdown-card { margin: 14px 18px; background: linear-gradient(140deg, #003d55 0%, #001e30 100%); border: 1px solid rgba(0,176,240,0.3); border-radius: 20px; padding: 18px; position: relative; overflow: hidden; box-shadow: 0 6px 30px rgba(0,176,240,0.12); }
.countdown-card::before { content: ''; position: absolute; top: -30px; right: -30px; width: 150px; height: 150px; border-radius: 50%; background: rgba(0,176,240,0.07); }
.countdown-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.countdown-label { font-size: 10px; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; opacity: 0.65; }
.countdown-edit-btn { background: rgba(0,176,240,0.18); border: 1px solid rgba(0,176,240,0.35); color: var(--blue); font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px; cursor: pointer; font-family: 'Barlow', sans-serif; letter-spacing: 0.04em; white-space: nowrap; transition: background 0.2s; }
.countdown-edit-btn:hover { background: rgba(0,176,240,0.3); }
.countdown-event { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; margin-bottom: 14px; opacity: 0.9; }
.countdown-numbers { display: flex; gap: 10px; }
.cnum { text-align: center; }
.cnum-val { font-family: 'Bebas Neue', sans-serif; font-size: 34px; line-height: 1; background: rgba(0,176,240,0.15); border: 1px solid rgba(0,176,240,0.22); border-radius: 10px; padding: 4px 10px; min-width: 50px; display: block; }
.cnum-lbl { font-size: 9px; font-weight: 600; opacity: 0.55; margin-top: 4px; text-transform: uppercase; letter-spacing: 0.1em; }

/* Status */
.status-row { margin: 0 18px 14px; display: flex; gap: 10px; }
.status-card { flex: 1; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 13px; }
.sc-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600; margin-bottom: 5px; }
.sc-badge { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; }
.dot { width: 7px; height: 7px; border-radius: 50%; }
.dot-y { background: var(--yellow); box-shadow: 0 0 5px var(--yellow); }
.dot-g { background: var(--green); box-shadow: 0 0 5px var(--green); }
.dot-b { background: var(--blue); box-shadow: 0 0 5px var(--blue); }

/* Section */
.sec-title { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; font-weight: 700; margin: 0 18px 10px; }

/* Phase cards */
.pcard { margin: 0 18px 9px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 14px 16px; display: flex; align-items: center; gap: 13px; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.pcard:hover { border-color: var(--blue); background: var(--surface2); }
.pcard.hi { border-color: var(--blue); box-shadow: inset 3px 0 0 var(--blue); }
.pcard-ico { width: 42px; height: 42px; border-radius: 11px; background: var(--surface2); display: flex; align-items: center; justify-content: center; font-size: 19px; flex-shrink: 0; }
.pcard-ico.hi { background: var(--blue-dim); }
.pcard-content { flex: 1; }
.pcard-title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.pcard-sub { font-size: 11px; color: var(--text-muted); }
.pcard-tag { background: var(--blue-dim); color: var(--blue); font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 20px; border: 1px solid var(--blue-border); white-space: nowrap; }
.pcard-arr { color: var(--text-dim); font-size: 17px; }
.pcard.dim { opacity: 0.38; pointer-events: none; }

/* Team empty */
.team-card { margin: 0 18px 16px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px; }
.team-empty-ico { font-size: 34px; margin-bottom: 10px; text-align: center; }
.team-empty-t { font-weight: 700; font-size: 15px; text-align: center; margin-bottom: 6px; }
.team-empty-s { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.5; margin-bottom: 16px; }
.team-btns { display: flex; gap: 10px; }
.tbtn-p { flex: 1; background: var(--blue); color: #0e1219; border: none; border-radius: 11px; padding: 11px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; }
.tbtn-s { flex: 1; background: var(--surface2); color: var(--text); border: 1px solid var(--border); border-radius: 11px; padding: 11px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; }
/* Team with members */
.team-h { display: flex; justify-content: space-between; align-items: center; margin-bottom: 11px; }
.team-t { font-weight: 700; font-size: 14px; }
.team-m { font-size: 12px; color: var(--blue); font-weight: 600; cursor: pointer; }
.tavs { display: flex; align-items: center; margin-bottom: 8px; }
.tav { width: 34px; height: 34px; border-radius: 50%; border: 2px solid var(--bg); background: var(--surface3); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; margin-left: -7px; color: var(--blue); }
.tav:first-child { margin-left: 0; }
.tav.add { border: 2px dashed var(--border); color: var(--text-dim); cursor: pointer; font-size: 17px; background: transparent; }
.team-meta { font-size: 11px; color: var(--text-muted); }
.team-meta a { color: var(--blue); text-decoration: none; font-weight: 600; }

/* ===== RESERVATION ===== */
.res-header { background: var(--surface); border-bottom: 1px solid var(--border); padding: 14px 18px 16px; position: sticky; top: 0; z-index: 5; }
.back-btn { display: flex; align-items: center; gap: 6px; color: var(--blue); font-weight: 700; font-size: 13px; cursor: pointer; margin-bottom: 10px; border: none; background: none; font-family: 'Barlow', sans-serif; }
.res-title { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; }
.res-sub { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.res-banner { margin: 14px 18px; border-radius: 13px; padding: 13px 15px; display: flex; align-items: flex-start; gap: 11px; }
.res-banner.warn { background: rgba(234,179,8,0.08); border: 1px solid rgba(234,179,8,0.25); }
.res-banner.info { background: var(--blue-dim); border: 1px solid var(--blue-border); }
.rb-ico { font-size: 20px; margin-top: 1px; }
.rb-t { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.rb-s { font-size: 11px; color: var(--text-muted); line-height: 1.4; }
.res-sec { margin: 0 18px 14px; }
.res-sec-t { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 8px; }
.res-list { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.res-row { display: flex; align-items: center; padding: 13px 15px; border-bottom: 1px solid var(--border); gap: 11px; }
.res-row:last-child { border-bottom: none; }
.rr-ico { font-size: 17px; width: 32px; text-align: center; flex-shrink: 0; }
.rr-content { flex: 1; }
.rr-label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.rr-value { font-size: 14px; font-weight: 700; }
.rr-edit { color: var(--blue); font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; }
.rr-locked { font-size: 12px; color: var(--text-dim); }
.rr-empty { color: var(--text-muted); font-weight: 400; }
.res-btn { margin: 0 18px 10px; width: calc(100% - 36px); padding: 14px; border: none; border-radius: 13px; font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; cursor: pointer; display: block; }
.res-btn.primary { background: var(--blue); color: #0e1219; }
.res-btn.secondary { background: var(--surface); color: var(--text); border: 1px solid var(--border); }

/* ===== DEALS ===== */
.scr-header { padding: 20px 18px 12px; background: linear-gradient(160deg, #0d1829 0%, var(--bg) 80%); }
.scr-title { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 2px; }
.scr-sub { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.hero-deal { margin: 0 18px 18px; border-radius: 18px; overflow: hidden; background: linear-gradient(135deg, #091728 0%, #0c1a30 100%); border: 1px solid rgba(0,176,240,0.18); cursor: pointer; transition: transform 0.2s; }
.hero-deal:hover { transform: scale(0.99); }
.hd-img { height: 100px; background: linear-gradient(135deg, #072650 0%, #0a3570 100%); display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.hd-img::before { content: '🎬'; font-size: 50px; opacity: 0.18; position: absolute; right: 18px; top: 50%; transform: translateY(-50%); }
.hd-badge { position: absolute; top: 10px; left: 12px; background: var(--blue); color: #0e1219; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 18px; }
.hd-body { padding: 15px; }
.hd-title { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; margin-bottom: 4px; }
.hd-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.deal-btn { background: var(--blue); color: #0e1219; border: none; padding: 9px 16px; border-radius: 10px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 12px; cursor: pointer; }
.deals-sec { padding: 0 18px 18px; }
.deals-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 10px; }
.deal-card { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 15px; cursor: pointer; transition: all 0.2s; position: relative; overflow: hidden; }
.deal-card:hover { border-color: var(--blue); transform: translateY(-2px); }
.deal-card.used { opacity: 0.4; pointer-events: none; }
.deal-card.used::after { content: 'GENUTZT'; position: absolute; top: 8px; right: 8px; font-size: 9px; font-weight: 700; letter-spacing: 0.1em; background: var(--surface3); color: var(--text-dim); padding: 2px 7px; border-radius: 5px; }
.dc-logo { font-size: 26px; margin-bottom: 9px; }
.dc-name { font-weight: 700; font-size: 13px; margin-bottom: 2px; }
.dc-desc { font-size: 11px; color: var(--text-muted); }
.dc-disc { font-family: 'Bebas Neue', sans-serif; font-size: 21px; color: var(--blue); margin-top: 5px; }

/* ===== SHOP ===== */
.shop-hero { margin: 0 18px 18px; background: linear-gradient(135deg, #0d1829 0%, var(--surface) 100%); border: 1px solid var(--border); border-radius: 18px; padding: 18px; display: flex; align-items: center; justify-content: space-between; overflow: hidden; position: relative; }
.shop-hero::after { content: '🏆'; font-size: 60px; position: absolute; right: 14px; opacity: 0.15; top: 50%; transform: translateY(-50%); }
.sh-badge { font-size: 10px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--blue); margin-bottom: 5px; }
.sh-title { font-family: 'Bebas Neue', sans-serif; font-size: 21px; letter-spacing: 1px; margin-bottom: 3px; }
.sh-sub { font-size: 11px; color: var(--text-muted); }
.unlock-pill { background: var(--blue-dim); border: 1px solid var(--blue-border); color: var(--blue); font-size: 11px; font-weight: 700; padding: 6px 12px; border-radius: 18px; white-space: nowrap; }
.shop-tabs { display: flex; gap: 8px; padding: 0 18px; margin-bottom: 14px; overflow-x: auto; }
.shop-tabs::-webkit-scrollbar { display: none; }
.shop-tab { padding: 8px 15px; border-radius: 18px; font-size: 12px; font-weight: 600; white-space: nowrap; cursor: pointer; border: 1px solid var(--border); background: var(--surface); color: var(--text-muted); transition: all 0.2s; }
.shop-tab.active { background: var(--blue); color: #0e1219; border-color: var(--blue); }
.shop-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; padding: 0 18px; }
.shop-item { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; cursor: pointer; transition: all 0.2s; }
.shop-item:hover { border-color: var(--blue); transform: translateY(-2px); }
.si-img { height: 100px; display: flex; align-items: center; justify-content: center; font-size: 44px; background: var(--surface2); position: relative; }
.si-body { padding: 11px; }
.si-name { font-weight: 700; font-size: 12px; margin-bottom: 3px; }
.si-price { color: var(--blue); font-family: 'Bebas Neue', sans-serif; font-size: 17px; }

/* ===== PROFILE ===== */
.profile-hdr { padding: 18px; background: linear-gradient(160deg, #0d1829 0%, var(--bg) 60%); text-align: center; }
.profile-av { width: 84px; height: 84px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--blue-dark)); display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 700; margin: 0 auto 11px; border: 3px solid var(--blue-border); color: #0e1219; }
.profile-name { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: 2px; }
.profile-email { font-size: 12px; color: var(--text-muted); margin-top: 2px; }
.profile-stats { display: flex; margin: 14px 0 0; }
.pstat { flex: 1; padding: 12px 0; text-align: center; border-top: 1px solid var(--border); }
.pstat + .pstat { border-left: 1px solid var(--border); }
.pstat-v { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: var(--blue); }
.pstat-l { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-top: 1px; font-weight: 600; }
.set-sec { margin: 14px 18px 0; }
.set-sec-t { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--text-muted); margin-bottom: 8px; }
.set-list { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; overflow: hidden; }
.set-item { display: flex; align-items: center; padding: 13px 15px; gap: 13px; cursor: pointer; transition: background 0.15s; border-bottom: 1px solid var(--border); }
.set-item:last-child { border-bottom: none; }
.set-item:hover { background: var(--surface2); }
.set-ico { font-size: 17px; width: 34px; height: 34px; background: var(--surface2); border-radius: 9px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.set-txt { flex: 1; }
.set-t { font-size: 13px; font-weight: 600; margin-bottom: 1px; }
.set-s { font-size: 11px; color: var(--text-muted); }
.set-arr { color: var(--text-dim); font-size: 16px; }
.toggle { width: 42px; height: 24px; background: var(--surface3); border-radius: 12px; position: relative; cursor: pointer; transition: background 0.2s; flex-shrink: 0; border: 1px solid var(--border); }
.toggle.on { background: var(--blue); border-color: var(--blue); }
.toggle::after { content: ''; position: absolute; width: 18px; height: 18px; border-radius: 50%; background: white; top: 2px; left: 2px; transition: transform 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.toggle.on::after { transform: translateX(18px); }
.theme-row { margin: 14px 18px; background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 4px; display: flex; }
.theme-opt { flex: 1; padding: 9px; text-align: center; border-radius: 11px; font-size: 12px; font-weight: 600; cursor: pointer; transition: all 0.2s; color: var(--text-muted); }
.theme-opt.active { background: var(--surface3); color: var(--text); }

/* Toast notification */
.toast { position: absolute; bottom: 96px; left: 50%; transform: translateX(-50%) translateY(10px); background: var(--surface3); border: 1px solid var(--border); color: var(--text); font-size: 13px; font-weight: 600; padding: 12px 20px; border-radius: 20px; white-space: nowrap; opacity: 0; transition: all 0.3s; z-index: 200; pointer-events: none; box-shadow: 0 8px 24px rgba(0,0,0,0.5); }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Missing info highlight on reservation rows */
.res-row.missing { background: rgba(234,179,8,0.06); border-left: 3px solid var(--yellow); }
.res-row.missing .rr-label { color: var(--yellow); }
.res-row.missing .rr-value { color: var(--yellow) !important; }
.rr-missing-tag { font-size: 10px; font-weight: 700; color: var(--yellow); background: rgba(234,179,8,0.12); border: 1px solid rgba(234,179,8,0.3); padding: 3px 8px; border-radius: 20px; white-space: nowrap; }
.rr-filled { color: var(--text-muted); font-size: 18px; }

/* E-Bike toggle row */
.ebike-row { display: flex; align-items: center; padding: 13px 15px; gap: 11px; }
.ebike-label { flex: 1; }
.ebike-label .rr-label { font-size: 10px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.ebike-label .rr-value { font-size: 14px; font-weight: 700; }

/* Pauschale info row */
.info-row { margin: 0 18px 6px; background: var(--blue-dim); border: 1px solid var(--blue-border); border-radius: 12px; padding: 11px 14px; font-size: 12px; color: var(--blue); line-height: 1.5; display: flex; gap: 8px; }

/* Quick-action grid on reservation */
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin: 0 18px 16px; }
.quick-btn {
    background: var(--surface); border: 1px solid var(--border);
    border-radius: 14px; padding: 13px 14px; cursor: pointer;
    transition: all 0.2s; text-align: left; font-family: 'Barlow', sans-serif;
    display: flex; flex-direction: column; gap: 5px;
}
.quick-btn:hover { border-color: var(--blue); background: var(--surface2); }
.quick-btn.primary-action { background: var(--blue-dim); border-color: var(--blue-border); }
.quick-btn.primary-action:hover { background: rgba(0,176,240,0.18); }
.qb-ico { font-size: 20px; }
.qb-label { font-size: 12px; font-weight: 700; color: var(--text); line-height: 1.2; }
.qb-sub { font-size: 10px; color: var(--text-muted); }
.quick-btn.primary-action .qb-label { color: var(--blue); }

/* Toggle row for ebike */
.res-toggle-row { display: flex; align-items: center; padding: 13px 15px; border-bottom: 1px solid var(--border); gap: 11px; }
.res-toggle-row:last-child { border-bottom: none; }

/* Modals */
.modal-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.88); z-index: 100; display: none; align-items: flex-end; backdrop-filter: blur(4px); }
.modal-overlay.open { display: flex; }
.modal { background: var(--surface); border-radius: 26px 26px 0 0; padding: 22px; width: 100%; border-top: 1px solid var(--border); animation: slideUp 0.28s ease; }
@keyframes slideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-handle { width: 38px; height: 4px; background: var(--border); border-radius: 2px; margin: 0 auto 18px; }
.modal-title { font-family: 'Bebas Neue', sans-serif; font-size: 25px; letter-spacing: 1px; margin-bottom: 4px; }
.modal-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }
.code-box { background: var(--bg); border: 1px solid var(--border); border-radius: 13px; padding: 15px; margin-bottom: 14px; display: flex; align-items: center; justify-content: space-between; }
.code-label { font-size: 10px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 3px; }
.code-value { font-family: 'Bebas Neue', sans-serif; font-size: 23px; letter-spacing: 3px; color: var(--blue); }
.copy-btn { background: var(--surface2); border: 1px solid var(--border); color: var(--text-muted); padding: 8px 13px; border-radius: 9px; font-size: 12px; font-weight: 600; cursor: pointer; white-space: nowrap; font-family: 'Barlow', sans-serif; }
.modal-info { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 18px; }
.modal-close { width: 100%; padding: 13px; background: var(--surface2); border: 1px solid var(--border); border-radius: 13px; color: var(--text); font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 14px; cursor: pointer; }

/* Datepicker */
.dp-title { font-family: 'Bebas Neue', sans-serif; font-size: 23px; letter-spacing: 1px; margin-bottom: 3px; }
.dp-sub { font-size: 12px; color: var(--text-muted); margin-bottom: 18px; }
.dp-slots { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.dp-slot { background: var(--surface2); border: 1px solid var(--border); border-radius: 11px; padding: 13px 15px; cursor: pointer; transition: all 0.2s; display: flex; justify-content: space-between; align-items: center; }
.dp-slot:hover, .dp-slot.sel { border-color: var(--blue); background: var(--blue-dim); }
.dp-slot-date { font-weight: 700; font-size: 14px; }
.dp-slot-info { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.dp-avail { font-size: 11px; font-weight: 700; }
.avail-ok { color: var(--green); }
.avail-low { color: var(--yellow); }
.dp-confirm { width: 100%; background: var(--blue); color: #0e1219; border: none; border-radius: 13px; padding: 14px; font-family: 'Bebas Neue', sans-serif; font-size: 18px; letter-spacing: 2px; cursor: pointer; margin-bottom: 9px; }
.dp-cancel { width: 100%; background: var(--surface2); color: var(--text); border: 1px solid var(--border); border-radius: 13px; padding: 12px; font-family: 'Barlow', sans-serif; font-weight: 700; font-size: 13px; cursor: pointer; }
