/* ==========================================================================
   Valeyever Mobil Uygulama — Etkileşimli HTML Prototipi
   (Flutter geliştirmesi öncesi ekran akışı / mantık önizlemesi)
   ========================================================================== */

.mobil-demo-body { min-height: 100vh; background: radial-gradient(circle at 20% 0%, rgba(47,107,255,0.18), transparent 55%), radial-gradient(circle at 85% 100%, rgba(0,224,198,0.14), transparent 50%), var(--bg); }

.demo-page { max-width: 1000px; margin: 0 auto; padding: 28px 20px 60px; display: flex; flex-direction: column; align-items: center; }
.demo-topbar { width: 100%; display: flex; justify-content: space-between; align-items: center; margin-bottom: 36px; }
.demo-back { font-size: 13.5px; font-weight: 700; color: var(--text-dim); }
.demo-back:hover { color: var(--accent); }
.demo-pill { font-size: 11.5px; font-weight: 800; letter-spacing: .03em; color: var(--accent); background: rgba(0,224,198,0.1); border: 1px solid rgba(0,224,198,0.3); padding: 6px 14px; border-radius: 100px; }
.demo-intro { text-align: center; max-width: 560px; margin-bottom: 40px; }
.demo-intro h1 { font-size: clamp(26px, 3.4vw, 36px); margin: 14px 0 12px; }
.demo-intro p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.demo-footer-note { margin-top: 36px; font-size: 12px; color: var(--text-dimmer); text-align: center; }

/* ---------- Telefon Çerçevesi ---------- */
.phone-shell {
  position: relative; width: 375px; height: 812px; background: #000;
  border-radius: 55px; padding: 12px; box-shadow: 0 40px 100px rgba(0,0,0,0.55), 0 0 0 2px #1a1a1a inset;
  flex-shrink: 0;
}
.phone-notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 126px; height: 26px; background: #000; border-radius: 0 0 16px 16px; z-index: 60;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 44px; overflow: hidden; background: var(--bg);
  position: relative; display: flex; flex-direction: column;
}
.phone-home-indicator {
  position: absolute; bottom: 8px; left: 50%; transform: translateX(-50%);
  width: 134px; height: 5px; border-radius: 4px; background: rgba(255,255,255,0.55); z-index: 60;
}

.app-statusbar {
  display: flex; justify-content: space-between; align-items: center;
  padding: 18px 26px 6px; font-size: 14px; font-weight: 700; color: #fff; flex-shrink: 0; z-index: 40; position: relative;
}
.app-statusicons { display: flex; align-items: center; gap: 5px; }

/* ---------- Ekran Yığını / Geçişler ---------- */
.app-screens { position: relative; flex: 1; overflow: hidden; }
.app-screen {
  position: absolute; inset: 0; display: flex; flex-direction: column;
  background: var(--bg); transform: translateX(100%); opacity: 0;
  transition: transform .34s cubic-bezier(.4,0,.2,1), opacity .28s ease;
  overflow-y: auto; pointer-events: none;
}
.app-screen.active { transform: translateX(0); opacity: 1; pointer-events: auto; z-index: 5; }
.app-screen.leaving-left { transform: translateX(-100%); opacity: 0; }

.app-body { padding: 8px 22px 110px; flex: 1; }
.app-body-center { display: flex; flex-direction: column; justify-content: center; min-height: 100%; padding-top: 40px; padding-bottom: 40px; }

/* ---------- Splash ---------- */
.splash-inner { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; gap: 14px; }
.splash-mark { width: 76px; height: 76px; }
.splash-mark svg { width: 100%; height: 100%; }
.splash-title { font-family: var(--font-display); font-weight: 800; font-size: 26px; color: var(--text); margin-top: 6px; }
.splash-sub { font-size: 12.5px; letter-spacing: .06em; text-transform: uppercase; color: var(--text-dimmer); }

/* ---------- Auth ---------- */
.auth-mark { width: 60px; height: 60px; margin: 0 auto 22px; display: block; }
.auth-mark svg { width: 100%; height: 100%; }
.app-h2 { font-size: 22px; font-weight: 800; text-align: center; margin-bottom: 10px; }
.app-p { font-size: 13.5px; color: var(--text-dim); text-align: center; line-height: 1.6; margin-bottom: 22px; }
.app-field { margin-bottom: 16px; }
.app-field-row2 { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
.app-label { display: block; font-size: 12.5px; font-weight: 700; color: var(--text-dim); margin-bottom: 7px; }
.app-input {
  width: 100%; padding: 14px 16px; border-radius: 14px; background: var(--surface);
  border: 1px solid var(--border); color: var(--text); font-size: 15px; font-family: inherit;
}
.app-input:focus { border-color: var(--primary-2); outline: none; }
.app-textarea { min-height: 72px; resize: vertical; }
.app-phone-input { display: flex; align-items: center; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); overflow: hidden; }
.app-phone-prefix { padding: 14px 0 14px 16px; font-weight: 700; color: var(--text-dim); font-size: 15px; }
.app-phone-input .app-input { border: none; background: none; padding-left: 8px; }
.app-legal { font-size: 11px; color: var(--text-dimmer); text-align: center; margin-top: 16px; line-height: 1.6; }
.app-legal a { color: var(--primary-2); font-weight: 700; }
.app-demo-hint { margin-top: 18px; font-size: 11px; color: var(--text-dimmer); text-align: center; background: var(--surface); border: 1px dashed var(--border-strong); border-radius: 10px; padding: 9px 12px; }

.otp-boxes { display: flex; justify-content: center; gap: 12px; margin-bottom: 18px; }
.otp-box { width: 54px; height: 62px; text-align: center; font-size: 24px; font-weight: 800; border-radius: 14px; border: 1px solid var(--border); background: var(--surface); color: var(--text); }
.otp-box:focus { border-color: var(--primary-2); outline: none; }
.app-otp-resend { text-align: center; font-size: 12.5px; color: var(--text-dimmer); margin-bottom: 22px; }
.app-otp-resend b { color: var(--text-dim); }

/* ---------- Butonlar ---------- */
.app-btn-primary {
  width: 100%; padding: 16px; border-radius: 100px; border: none;
  background: var(--grad-primary); color: #04101f; font-weight: 800; font-size: 15px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: var(--shadow-glow);
}
.app-btn-primary:active { transform: scale(0.98); }
.app-btn-primary:disabled { opacity: .5; }
.app-btn-ghost {
  width: 100%; padding: 15px; border-radius: 100px; border: 1px solid var(--border-strong);
  background: transparent; color: var(--text); font-weight: 700; font-size: 14.5px; margin-top: 10px;
}

/* ---------- Header (alt ekranlar) ---------- */
.app-header { display: flex; align-items: center; justify-content: space-between; padding: 8px 14px 4px; flex-shrink: 0; }
.app-header-tab { padding: 14px 22px 6px; }
.app-back { width: 36px; height: 36px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); font-size: 20px; display: flex; align-items: center; justify-content: center; }
.app-header-title { font-size: 15px; font-weight: 800; }
.app-header-title-lg { font-size: 24px; font-weight: 800; }
.app-icon-btn { width: 38px; height: 38px; border-radius: 50%; background: var(--surface); border: 1px solid var(--border); color: var(--text); display: flex; align-items: center; justify-content: center; }
.app-icon-btn svg { width: 18px; height: 18px; }

.app-progress { height: 3px; background: var(--border); margin: 6px 22px 0; border-radius: 2px; overflow: hidden; flex-shrink: 0; }
.app-progress-fill { display: block; height: 100%; background: var(--grad-primary); transition: width .3s ease; }

/* ---------- Ana Sayfa ---------- */
.home-greeting { display: flex; justify-content: space-between; align-items: flex-start; margin: 14px 0 20px; }
.home-hello { font-size: 20px; font-weight: 800; }
.home-sub { font-size: 12.5px; color: var(--text-dimmer); margin-top: 4px; }

.reminder-banner { display: flex; align-items: center; gap: 12px; background: rgba(255,182,72,0.1); border: 1px solid rgba(255,182,72,0.3); border-radius: 16px; padding: 14px 16px; margin-bottom: 22px; }
.reminder-banner-icon { font-size: 20px; }
.reminder-banner-text { flex: 1; }
.reminder-banner-title { font-size: 13px; font-weight: 800; color: var(--warning); }
.reminder-banner-sub { font-size: 11.5px; color: var(--text-dim); margin-top: 2px; }
.reminder-banner-chevron { color: var(--text-dimmer); font-size: 18px; }

.app-promo-strip { position: relative; display: flex; align-items: center; gap: 8px; background: var(--grad-primary); border-radius: 14px; padding: 11px 30px 14px 14px; margin-bottom: 20px; }
.app-promo-track { position: relative; flex: 1; min-width: 0; height: 17px; }
.app-promo-slide { position: absolute; inset: 0; display: flex; align-items: center; gap: 7px; opacity: 0; transition: opacity .4s ease; color: #04101f; overflow: hidden; }
.app-promo-slide.active { position: relative; opacity: 1; }
.app-promo-icon { font-size: 13px; flex-shrink: 0; }
.app-promo-text { font-size: 12px; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.app-promo-chevron { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: #04101f; opacity: .7; font-size: 15px; }
.app-promo-dots { position: absolute; left: 14px; bottom: 5px; display: flex; gap: 4px; }
.app-promo-dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(4,16,31,0.3); }
.app-promo-dot.active { background: #04101f; }

.app-section-label { font-size: 11.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; color: var(--text-dimmer); margin: 20px 0 12px; display: block; }
.app-section-label-row { display: flex; justify-content: space-between; align-items: center; margin: 22px 0 12px; }
.app-section-label-row .app-section-label { margin: 0; }
.app-link-btn { background: none; border: none; padding: 0; font-size: 12px; font-weight: 700; color: var(--primary-2); display: inline-flex; align-items: center; gap: 2px; }

.quick-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.quick-item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 16px 6px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); text-align: center; }
.quick-item .quick-icon { width: 38px; height: 38px; border-radius: 12px; background: rgba(0,224,198,0.12); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.quick-item .quick-icon svg { width: 19px; height: 19px; }
.quick-item .quick-label { font-size: 10.5px; font-weight: 700; color: var(--text-dim); line-height: 1.3; }

.app-cta-fixed { margin-top: 26px; }

/* ---------- Kartlar / Listeler ---------- */
.mini-talep-card, .vehicle-mini-card, .address-mini-card { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 12px; }
.mini-talep-icon, .vehicle-mini-icon, .address-mini-icon { width: 40px; height: 40px; border-radius: 12px; background: rgba(47,107,255,0.14); color: var(--primary-2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 17px; }
.mini-talep-icon svg, .vehicle-mini-icon svg { width: 19px; height: 19px; }
.mini-talep-info, .vehicle-mini-info, .address-mini-info { flex: 1; min-width: 0; }
.mini-talep-service, .vehicle-mini-plate, .address-mini-label { font-size: 13.5px; font-weight: 800; }
.mini-talep-meta, .vehicle-mini-model, .address-mini-text { font-size: 11.5px; color: var(--text-dimmer); margin-top: 2px; line-height: 1.4; }
.address-remove-btn { width: 30px; height: 30px; border-radius: 50%; background: none; border: 1px solid var(--border); color: var(--text-dimmer); font-size: 13px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }

/* ---------- Puanla / Davet Et ---------- */
.rate-stars { display: flex; justify-content: center; gap: 10px; padding: 14px 4px 20px; }
.rate-star { background: none; border: none; padding: 0; font-size: 30px; line-height: 1; color: var(--border-strong); transition: color .12s ease, transform .12s ease; }
.rate-star.active { color: var(--warning); }
.invite-hero { text-align: center; padding: 10px 0 6px; }
.invite-hero-icon { font-size: 44px; margin-bottom: 10px; }
.invite-code-box { display: flex; align-items: center; justify-content: space-between; gap: 12px; background: var(--surface); border: 1px dashed var(--border-strong); border-radius: 14px; padding: 16px 18px; margin-top: 8px; }
.invite-code-box span { font-family: var(--font-display); font-weight: 800; font-size: 18px; letter-spacing: .04em; color: var(--text); }
.invite-copy-btn { background: var(--grad-primary); color: #04101f; border: none; padding: 9px 16px; border-radius: 100px; font-weight: 800; font-size: 12.5px; flex-shrink: 0; }
.mini-status-badge { font-size: 10px; font-weight: 800; padding: 5px 10px; border-radius: 100px; white-space: nowrap; }
.mini-status-badge.st-beklemede { background: rgba(255,182,72,0.14); color: var(--warning); }
.mini-status-badge.st-onaylandi { background: rgba(111,141,255,0.16); color: var(--primary-2); }
.mini-status-badge.st-yolda, .mini-status-badge.st-islemde { background: rgba(0,224,198,0.14); color: var(--accent); }
.mini-status-badge.st-tamamlandi { background: rgba(43,217,155,0.14); color: var(--success); }
.mini-status-badge.st-iptal { background: rgba(255,95,126,0.14); color: var(--danger); }
.vehicle-countdown { font-size: 10.5px; font-weight: 800; margin-top: 4px; }
.vehicle-countdown.ok { color: var(--success); }
.vehicle-countdown.soon { color: var(--warning); }
.vehicle-countdown.urgent { color: var(--danger); }

.app-empty { text-align: center; padding: 50px 20px; color: var(--text-dimmer); }
.app-empty-icon { font-size: 34px; margin-bottom: 10px; }
.app-empty-title { font-size: 14px; font-weight: 800; color: var(--text-dim); margin-bottom: 6px; }
.app-empty-sub { font-size: 12px; line-height: 1.6; }

.chip-row { display: flex; gap: 8px; margin-bottom: 18px; overflow-x: auto; padding-bottom: 2px; }
.chip-row-wrap { flex-wrap: wrap; overflow: visible; }
.chip { flex-shrink: 0; padding: 9px 16px; border-radius: 100px; background: var(--surface); border: 1px solid var(--border); color: var(--text-dim); font-size: 12.5px; font-weight: 700; }
.chip.active { background: var(--grad-primary); color: #04101f; border-color: transparent; }

/* ---------- Talep Detay (Zaman Çizelgesi) ---------- */
.detay-summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 24px; }
.detay-summary-row { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; }
.detay-summary-row:last-child { border-bottom: none; }
.detay-summary-row .k { color: var(--text-dimmer); }
.detay-summary-row .v { font-weight: 700; text-align: right; }

.mtimeline { display: flex; flex-direction: column; }
.mtimeline-item { display: flex; gap: 14px; position: relative; padding-bottom: 26px; }
.mtimeline-item:last-child { padding-bottom: 0; }
.mtimeline-item::before { content: ""; position: absolute; left: 14px; top: 30px; bottom: 0; width: 2px; background: var(--border); }
.mtimeline-item:last-child::before { display: none; }
.mtimeline-item.done::before { background: var(--accent); }
.mtimeline-dot { width: 28px; height: 28px; border-radius: 50%; background: var(--surface-strong); border: 1px solid var(--border-strong); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 12px; z-index: 1; }
.mtimeline-item.done .mtimeline-dot { background: var(--accent); color: #04101f; border-color: transparent; }
.mtimeline-item.current .mtimeline-dot { background: var(--primary-2); color: #04101f; border-color: transparent; }
.mtimeline-label { font-size: 13px; font-weight: 700; padding-top: 3px; color: var(--text-dimmer); }
.mtimeline-item.done .mtimeline-label, .mtimeline-item.current .mtimeline-label { color: var(--text); }

/* ---------- Araç Detay ---------- */
.vehicle-hero { text-align: center; padding: 22px 0; }
.vehicle-hero-plate { display: inline-block; font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: .03em; background: #04101f; color: #fff; padding: 10px 20px; border-radius: 12px; border: 2px solid var(--accent); }
.vehicle-hero-model { margin-top: 10px; color: var(--text-dim); font-size: 13.5px; }
.vehicle-hero-countdown { margin-top: 14px; font-size: 13px; font-weight: 800; }
.app-btn-danger-ghost { width: 100%; padding: 14px; border-radius: 100px; border: 1px solid rgba(255,95,126,0.35); background: rgba(255,95,126,0.08); color: var(--danger); font-weight: 700; font-size: 13.5px; margin-top: 20px; }

/* ---------- Randevu Akışı ---------- */
.app-step-title { font-size: 17px; font-weight: 800; margin: 16px 0 18px; color: var(--text); }
.service-pick-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: 12px; }
.service-pick-card { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; min-height: 124px; padding: 20px 10px; border-radius: 16px; background: var(--surface); border: 1px solid var(--border); text-align: center; transition: border-color .15s ease, background .15s ease; }
.service-pick-card.selected { border-color: var(--accent); background: rgba(0,224,198,0.1); }
.service-pick-card .sp-icon { width: 46px; height: 46px; border-radius: 13px; background: rgba(0,224,198,0.16); border: 1px solid rgba(0,224,198,0.32); color: var(--accent); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.service-pick-card .sp-icon svg { width: 22px; height: 22px; }
.service-pick-card .sp-label { font-size: 12.5px; font-weight: 800; color: var(--text); line-height: 1.35; }

.vehicle-pick-card { display: flex; align-items: center; gap: 12px; padding: 14px; border-radius: 14px; background: var(--surface); border: 1px solid var(--border); margin-bottom: 10px; }
.vehicle-pick-card.selected { border-color: var(--accent); background: rgba(0,224,198,0.08); }
.vehicle-pick-radio { width: 18px; height: 18px; border-radius: 50%; border: 2px solid var(--border-strong); flex-shrink: 0; position: relative; }
.vehicle-pick-card.selected .vehicle-pick-radio { border-color: var(--accent); }
.vehicle-pick-card.selected .vehicle-pick-radio::after { content: ""; position: absolute; inset: 3px; border-radius: 50%; background: var(--accent); }
.vehicle-pick-info { flex: 1; }
.vehicle-pick-plate { font-size: 13px; font-weight: 800; }
.vehicle-pick-model { font-size: 11.5px; color: var(--text-dimmer); }
.vehicle-pick-divider { text-align: center; font-size: 11px; color: var(--text-dimmer); margin: 14px 0; }

.summary-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 22px; }
.summary-card .row { display: flex; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--border); font-size: 12.5px; gap: 10px; }
.summary-card .row:last-child { border-bottom: none; }
.summary-card .row .k { color: var(--text-dimmer); flex-shrink: 0; }
.summary-card .row .v { font-weight: 700; text-align: right; min-width: 0; overflow-wrap: break-word; }

/* ---------- Kampanya kartları ---------- */
.promo-card { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; padding: 18px; margin-bottom: 14px; }
.promo-card.featured { border-color: var(--accent); background: rgba(0,224,198,0.06); }
.promo-card-badge { display: inline-block; font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .03em; color: var(--accent); background: rgba(0,224,198,0.12); padding: 4px 10px; border-radius: 100px; margin-bottom: 10px; }
.promo-card-title { font-size: 14.5px; font-weight: 800; margin-bottom: 8px; }
.promo-card-amount { font-family: var(--font-display); font-size: 24px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.promo-card-amount span { font-size: 13px; font-weight: 700; color: var(--text-dimmer); margin-left: 4px; }
.promo-card-desc { font-size: 12px; color: var(--text-dim); line-height: 1.6; margin-bottom: 14px; }

.success-check { width: 76px; height: 76px; border-radius: 50%; background: rgba(43,217,155,0.14); color: var(--success); font-size: 34px; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 22px; }
.success-id { text-align: center; font-family: var(--font-display); font-weight: 800; font-size: 15px; background: var(--surface); border: 1px solid var(--border-strong); border-radius: 12px; padding: 10px 16px; margin: 0 auto 26px; display: block; width: fit-content; }

/* ---------- Profil ---------- */
.profile-card { display: flex; flex-direction: column; align-items: center; padding: 22px 0 8px; }
.profile-avatar { width: 68px; height: 68px; border-radius: 50%; background: var(--grad-primary); color: #04101f; font-weight: 800; font-size: 22px; display: flex; align-items: center; justify-content: center; margin-bottom: 12px; }
.profile-name { font-size: 17px; font-weight: 800; }
.profile-phone { font-size: 12.5px; color: var(--text-dimmer); margin-top: 3px; }

.menu-row { display: flex; align-items: center; gap: 12px; padding: 14px 4px; border-bottom: 1px solid var(--border); }
.menu-row-icon { width: 24px; height: 24px; display: flex; align-items: center; justify-content: center; color: var(--text-dim); flex-shrink: 0; }
.menu-row-icon svg { width: 19px; height: 19px; }
.menu-row-danger .menu-row-icon { color: var(--danger); }
.menu-row-label { flex: 1; font-size: 13.5px; font-weight: 600; }
.menu-row-chevron { color: var(--text-dimmer); font-size: 17px; }
.menu-row-danger .menu-row-label { color: var(--danger); }
.app-switch { position: relative; display: inline-block; width: 42px; height: 24px; }
.app-switch input { opacity: 0; width: 0; height: 0; }
.app-switch-track { position: absolute; inset: 0; background: var(--border-strong); border-radius: 100px; transition: background .2s ease; }
.app-switch-track::before { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; background: #fff; border-radius: 50%; transition: transform .2s ease; }
.app-switch input:checked + .app-switch-track { background: var(--accent); }
.app-switch input:checked + .app-switch-track::before { transform: translateX(18px); }
.app-version { text-align: center; font-size: 11px; color: var(--text-dimmer); margin: 30px 0 10px; }

/* ---------- Tab Bar (flat) ---------- */
.app-tabbar {
  display: flex; gap: 2px; position: absolute; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--bg-alt); border-top: 1px solid var(--border);
  padding: 8px 6px 22px;
}
.app-tab {
  flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: none; border: none; color: var(--text-dimmer);
  font-size: 10px; font-weight: 700; padding: 6px 2px; border-radius: 10px;
  transition: color .15s ease, background .15s ease;
}
.app-tab svg { width: 21px; height: 21px; }
.app-tab.active { color: var(--accent); background: rgba(0,224,198,0.1); }

/* ---------- Toast ---------- */
.app-toast {
  position: absolute; left: 20px; right: 20px; bottom: 96px; z-index: 100;
  background: var(--surface-strong); backdrop-filter: blur(16px); border: 1px solid var(--border-strong);
  border-radius: 14px; padding: 13px 16px; font-size: 12.5px; font-weight: 600; text-align: center;
  box-shadow: var(--shadow-soft); transform: translateY(120%); opacity: 0; transition: transform .3s ease, opacity .3s ease; pointer-events: none;
}
.app-toast.show { transform: translateY(0); opacity: 1; }

/* ---------- Küçük ekranlarda telefon boyutu ---------- */
@media (max-width: 430px) {
  .demo-page { padding: 20px 0 40px; }
  .phone-shell { width: 100%; max-width: 375px; height: 780px; border-radius: 40px; }
  .phone-screen { border-radius: 30px; }
}

/* ---------- Mobilde tam ekran native uygulama görünümü ---------- */
@media (max-width: 767px) {
  .topbar, .site-header, .mobile-nav, .page-hero,
  .demo-topbar, .app-badges, .demo-footer-note,
  #ozellikler, .site-footer {
    display: none;
  }
  html, body.mobil-demo-body { overflow: hidden; background: var(--bg); }
  .demo-page { max-width: none; margin: 0; padding: 0; height: 100vh; height: 100svh; }
  .phone-shell {
    width: 100vw; max-width: none; height: 100vh; height: 100svh;
    border-radius: 0; padding: 0; box-shadow: none; background: var(--bg);
  }
  .phone-notch, .phone-home-indicator { display: none; }
  .phone-screen { border-radius: 0; }
}
