/* ============================================================
   BASKIKIOSK STYLE
   Font: Roboto + Nunito | Primary: #F15C61
   Grid: 4-point | Base: 16px
   ============================================================ */

/* ---------- FONTS ---------- */
@font-face {
  font-family: 'Nunito';
  src: url('/static/fonts/Nunito-VariableFont_wght.ttf') format('truetype');
  font-weight: var(--fw-regular) 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Nunito';
  src: url('/static/fonts/Nunito-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: var(--fw-regular) 900;
  font-style: italic;
  font-display: swap;
}

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

/* ---------- DESIGN TOKENS ---------- */
:root {
  --ink: #15161A;
  --ink2: #484A52;
  --bg: #FAF9F8;
  --surface: #FEFDFC;
  --border: #E8E7EA;
  --accent: #F15C61;
  --accent-hover: #E14B50;
  --accent-active: #D03A40;
  --accent-light: #FDEEEE;
  --accent2: #D03A40;
  --muted: #9A9DA8;
  --success: #1F8A5C;
  --danger: #D6304B;

--font-family: 'Roboto', -apple-system, BlinkMacSystemFont, sans-serif;
--font-display: 'Nunito', sans-serif;

  /* 4-point spacing */
  --sp-1:  4px;
  --sp-2:  8px;
  --sp-3:  12px;
  --sp-4:  16px;
  --sp-5:  20px;
  --sp-6:  24px;
  --sp-8:  32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;
  --sp-24: 96px;

  /* Typography scale (mobile-first, base 16px) */
  --text-xs:   0.75rem;   /* 12px - caption, label */
  --text-sm:   0.875rem;  /* 14px - küçük metin */
  --text-base: 1rem;      /* 16px - body */
  --text-md:   1.125rem;  /* 18px - vurgulu body / h4 */
  --text-lg:   1.375rem;  /* 22px - h3 */
  --text-xl:   1.75rem;   /* 28px - h2 */
  --text-2xl:  2.25rem;   /* 36px - h1 */
  --text-3xl:  3rem;      /* 48px - hero display */

  /* Font weights */
  --fw-regular:  400;
  --fw-medium:   500;
  --fw-semibold: 600;
  --fw-bold:     700;
  --fw-black:    800;

  /* Line heights */
  --lh-tight:   1.15;
  --lh-snug:    1.3;
  --lh-normal:  1.5;
  --lh-relaxed: 1.65;

  --radius-xs: 6px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 3px rgba(15,15,20,.07), 0 1px 2px rgba(15,15,20,.05);
  --shadow-md: 0 4px 16px rgba(15,15,20,.10);
}

/* ---------- BASE RESET ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; -webkit-tap-highlight-color: transparent; touch-action: manipulation; }

html {
  font-size: var(--text-base);
  -webkit-text-size-adjust: 100%;
}
html, body {
  background: var(--bg) !important;
  color: var(--ink) !important;
  color-scheme: light !important;
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: var(--lh-normal);
  min-height: 100dvh;
  overscroll-behavior: none;
  -webkit-font-smoothing: antialiased;
}

/* ---------- TYPOGRAPHY DEFAULTS ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: var(--text-2xl); font-weight: var(--fw-black); }
h2 { font-size: var(--text-xl);  font-weight: var(--fw-bold); }
h3 { font-size: var(--text-lg);  font-weight: var(--fw-bold); }
h4 { font-size: var(--text-md);  font-weight: var(--fw-semibold); line-height: var(--lh-snug); }
p  { line-height: var(--lh-relaxed); }

/* ---------- ICONOGRAPHY ---------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  user-select: none;
  line-height: 1;
}

/* ---------- HEADER ---------- */
header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.logo { display: flex; align-items: center; height: 32px; text-decoration: none; color: inherit; }
.logo img { height: 100%; width: auto; display: block; }
.header-meta { font-size: var(--text-xs); color: var(--muted); font-weight: var(--fw-medium); }

.prog-track { height: 2px; background: #e0ddd8; }
.prog-fill { height: 100%; background: var(--accent); transition: width .4s ease; }

.step-tabs { background: var(--surface); border-bottom: 1px solid var(--border); display: flex; }
.step-tab { flex: 1; padding: 11px 4px 10px; text-align: center; font-size: var(--text-xs); font-weight: var(--fw-semibold); color: var(--muted); border-bottom: 2px solid transparent; display: flex; align-items: center; justify-content: center; gap: 5px; transition: color .2s; letter-spacing: .2px; text-transform: uppercase; }
.step-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.step-tab.done { color: var(--success); border-bottom-color: var(--success); }
.step-num { width: 17px; height: 17px; border-radius: 50%; background: var(--border); font-size: 9px; font-weight: var(--fw-bold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s, color .2s; }
.step-tab.active .step-num { background: var(--accent); color: white; }
.step-tab.done .step-num { background: var(--success); color: white; }

/* ---------- SCREENS / LAYOUT ---------- */
.screen { display: none; }
.screen.active { display: flex; flex-direction: column; min-height: calc(100dvh - 64px - 112px); }
.scroll-area { flex: 1; overflow-y: auto; padding: 16px 16px 0; max-width: 480px; width: 100%; margin: 0 auto; }

/* overflow-y:auto CSS'te overflow-x'i de kısıtlar; upload-zone gölgesi kesilmesin
   diye centering iç sarmalayıcıya taşındı, scroll-area tam genişlikte kalıyor. */
#s1 > .scroll-area { max-width: none; width: auto; margin: 0; padding: 0; }
.scroll-area-inner { max-width: 480px; width: 100%; margin: 0 auto; padding: 16px 16px 0; }

.bottom-bar {
  position: sticky;
  bottom: 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  z-index: 50;
}

/* ---------- HERO ---------- */
.hero { text-align: center; padding: 20px 0 18px; }
.hero-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 10px; color: var(--accent); }
.hero-icon .material-symbols-outlined { font-size: 40px; }
.hero-icon-logo img { width: 32px; height: auto; display: block; }
.hero h1 { font-size: var(--text-lg); font-weight: var(--fw-bold); line-height: 1.25; margin-bottom: 6px; color: var(--ink); }
.hero h1 em { color: var(--accent); font-style: normal; font-weight: var(--fw-black); }
.hero p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; font-weight: var(--fw-regular); }

/* ---------- UPLOAD ZONE ---------- */
.upload-zone {
  border: 1.5px dashed rgba(241,92,97,.4);
  border-radius: var(--radius-md);
  padding: 22px 16px;
  text-align: center;
  cursor: pointer;
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff8f8 100%);
  position: relative;
  transition: border-color .2s, background .2s;
  margin-bottom: 16px;
  box-shadow: 0 8px 28px rgba(241,92,97,.14);
}
.upload-zone:active { background: var(--accent-light); border-color: var(--accent); }
.upload-zone input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-zone .uz-icon { font-size: var(--text-xl); margin-bottom: 6px; display: flex; align-items: center; justify-content: center; color: var(--accent); }
.upload-zone h3 { font-size: var(--text-sm); font-weight: var(--fw-semibold); margin-bottom: 3px; color: var(--ink); }
.upload-zone p { font-size: var(--text-xs); color: var(--muted); }



/* ---------- PHOTO CARDS ---------- */
.photo-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 12px; }

.photo-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.photo-card:active { opacity: .85; }
.photo-card-thumb {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}
.photo-card-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-card-info { flex: 1; min-width: 0; }
.photo-card-name { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--ink); margin-bottom: 2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.photo-card-sub { font-size: var(--text-xs); color: var(--muted); font-weight: var(--fw-regular); }

/* ---------- QTY CONTROL ---------- */
.qty-wrap { display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
.qty-btn {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--ink2);
  transition: background .15s, border-color .15s;
  flex-shrink: 0;
}
.qty-btn span, .qty-btn i { font-size: var(--text-base); display: flex; }
.qty-btn:active { background: var(--bg); }
.qty-btn.del { border-color: #f5c6c2; color: var(--danger); }
.qty-btn.del:active { background: #fdf0ef; }
.qty-num { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--ink); min-width: 22px; text-align: center; }

/* ---------- QR NOTICE ---------- */
.qr-notice {
  background: var(--accent-light);
  border: 1px solid #f0c9af;
  border-radius: var(--radius-md);
  padding: 12px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
.qr-notice-icon { color: var(--accent); flex-shrink: 0; margin-top: 1px; display: flex; }
.qr-notice-text { font-size: var(--text-xs); color: var(--ink2); line-height: 1.55; font-weight: var(--fw-regular); }
.qr-notice-text b { color: var(--accent2); font-weight: var(--fw-bold); }

/* ---------- SUMMARY CARD ---------- */
.summary-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
}
.summary-card-header { padding: 12px 14px 8px; border-bottom: 1px solid var(--border); font-size: var(--text-xs); font-weight: var(--fw-bold); text-transform: uppercase; letter-spacing: .6px; color: var(--muted); }
.summary-row { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; font-size: var(--text-sm); color: var(--ink); border-bottom: 1px solid var(--bg); }
.summary-row:last-child { border-bottom: none; font-weight: var(--fw-bold); font-size: var(--text-base); }
.summary-row .label { color: var(--muted); font-size: var(--text-sm); font-weight: var(--fw-regular); }

/* ---------- PAYMENT ---------- */
.pay-methods { display: flex; gap: 8px; margin-bottom: 16px; }
.pay-method { flex: 1; padding: 10px 6px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); text-align: center; font-size: var(--text-xs); font-weight: var(--fw-semibold); cursor: pointer; background: var(--surface); color: var(--ink2); transition: all .15s; }
.pay-method.active { border-color: var(--accent); background: var(--accent-light); color: var(--accent); }
.pay-method .pm-icon { font-size: var(--text-lg); display: flex; align-items: center; justify-content: center; margin-bottom: 4px; }

.form-group { margin-bottom: 12px; }
.form-label { font-size: var(--text-xs); font-weight: var(--fw-bold); color: var(--muted); margin-bottom: 5px; display: block; text-transform: uppercase; letter-spacing: .4px; }
.form-input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-family: var(--font-family); font-size: var(--text-base); background: var(--surface) !important; color: var(--ink) !important; outline: none; transition: border-color .2s; -webkit-appearance: none; }
.form-input:focus { border-color: var(--accent); }
.form-row { display: flex; gap: 10px; }
.form-row .form-group { flex: 1; }

.secure-note { text-align: center; font-size: var(--text-xs); color: var(--muted); margin-top: 6px; display: flex; align-items: center; justify-content: center; gap: 4px; }

/* ---------- DONE SCREEN ---------- */
.done-wrap { padding: 32px 20px 24px; text-align: center; max-width: 400px; margin: 0 auto; }
.done-check { width: 68px; height: 68px; border-radius: 50%; background: var(--success); display: flex; align-items: center; justify-content: center; color: white; margin: 0 auto 18px; animation: pop .4s cubic-bezier(.34,1.56,.64,1); }
@keyframes pop { from { transform: scale(0); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.done-wrap h2 { font-size: var(--text-xl); font-weight: var(--fw-bold); margin-bottom: 8px; }
.done-wrap p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; margin-bottom: 20px; font-weight: var(--fw-regular); }
.progress-bar-wrap { background: var(--bg); border-radius: var(--radius-full); height: 5px; margin-bottom: 20px; overflow: hidden; }
.progress-bar-anim { height: 100%; background: var(--accent); border-radius: var(--radius-full); width: 0; transition: none; }
.status-list { background: var(--surface); border-radius: var(--radius-md); border: 1px solid var(--border); overflow: hidden; margin-bottom: 20px; text-align: left; }
.status-item { display: flex; align-items: center; gap: 12px; padding: 12px 14px; font-size: var(--text-sm); color: var(--ink); border-bottom: 1px solid var(--bg); font-weight: var(--fw-regular); }
.status-item:last-child { border-bottom: none; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--border); flex-shrink: 0; }
.status-item.done .status-dot { background: var(--success); }
.status-item.active .status-dot { background: var(--accent); animation: pulse 1s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.5;transform:scale(1.6)} }

/* ---------- BUTTONS ---------- */
.btn { width: 100%; padding: 14px; border: none; border-radius: var(--radius-md); font-family: var(--font-family); font-size: var(--text-base); font-weight: var(--fw-semibold); cursor: pointer; transition: opacity .15s, transform .1s; display: flex; align-items: center; justify-content: center; gap: 8px; letter-spacing: .1px; }
.btn:active { opacity: .85; transform: scale(.98); }
.btn + .btn { margin-top: 8px; }
.btn-primary { background: var(--accent); color: white; box-shadow: 0 2px 10px rgba(241,92,97,.28); }
.btn-primary:active { background: var(--accent-active); }
.btn-primary:disabled { background: var(--border); color: var(--muted); box-shadow: none; cursor: not-allowed; transform: none !important; }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--ink2); }
.btn-success { background: var(--success); color: white; }
.btn-danger { background: var(--danger); color: white; }

/* ---------- QR OVERLAY ---------- */
.qr-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); z-index: 200; display: none; flex-direction: column; align-items: center; justify-content: center; padding: 20px; }
.qr-overlay.show { display: flex; }
.qr-sheet { background: var(--surface); border-radius: var(--radius-lg); width: 100%; max-width: 380px; overflow: hidden; box-shadow: var(--shadow-md); }
.qr-header { padding: 14px 18px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.qr-header h3 { font-size: var(--text-base); font-weight: var(--fw-bold); display: flex; align-items: center; gap: 8px; }
.qr-close-btn { width: 28px; height: 28px; border-radius: 50%; background: var(--bg); border: none; color: var(--muted); cursor: pointer; display: flex; align-items: center; justify-content: center; }
.qr-viewport { position: relative; background: #000; aspect-ratio: 1; overflow: hidden; }
.qr-viewport video { width: 100%; height: 100%; object-fit: cover; display: block; }
.qr-frame { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; }
.qr-box { width: 54%; height: 54%; border: 2px solid rgba(255,255,255,.85); border-radius: var(--radius-md); position: relative; }
.qr-box::before { content: ''; position: absolute; left: -2px; right: -2px; top: -2px; height: 3px; background: var(--accent); border-radius: var(--radius-md) var(--radius-md) 0 0; animation: scan 2s ease-in-out infinite; }
@keyframes scan { 0%,100%{top:-2px} 50%{top:calc(100% - 1px)} }
.qr-footer { padding: 12px 18px; }
.qr-hint { font-size: var(--text-xs); color: var(--muted); text-align: center; line-height: 1.5; }

/* ---------- DELETE CONFIRM ---------- */
.del-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 450; display: none; align-items: flex-end; justify-content: center; }
.del-overlay.show { display: flex; }
.del-sheet { background: var(--surface); width: 100%; max-width: 400px; margin: 0 auto; border-radius: var(--radius-lg) var(--radius-lg) 0 0; padding: 24px 16px calc(28px + env(safe-area-inset-bottom)); text-align: center; }
.del-sheet h3 { font-size: var(--text-base); font-weight: var(--fw-bold); margin-bottom: 6px; }
.del-sheet p { font-size: var(--text-sm); color: var(--muted); margin-bottom: 20px; font-weight: var(--fw-regular); }

/* ---------- TOAST ---------- */
.toast { position: fixed; bottom: calc(80px + env(safe-area-inset-bottom)); left: 50%; transform: translateX(-50%) translateY(30px); background: var(--ink); color: white; padding: 9px 18px; border-radius: var(--radius-full); font-size: var(--text-sm); font-weight: var(--fw-medium); z-index: 999; opacity: 0; transition: opacity .25s, transform .25s; max-width: min(90vw, 340px); white-space: normal; text-align: center; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

.limit-alert {
  position: fixed; top: 50%; left: 50%; transform: translate(-50%,-50%) scale(.95);
  background: var(--surface); color: var(--ink);
  border: 1px solid var(--border); box-shadow: var(--shadow-md);
  border-radius: var(--radius-lg);
  padding: var(--sp-6) var(--sp-6);
  max-width: min(86vw, 320px);
  display: flex; flex-direction: column; align-items: center; gap: var(--sp-3);
  text-align: center;
  font-size: var(--text-sm); font-weight: var(--fw-medium); line-height: 1.5;
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: opacity .25s, transform .25s;
}
.limit-alert.show { opacity: 1; transform: translate(-50%,-50%) scale(1); }
.limit-alert-icon { font-size: 32px; color: var(--accent); }

/* ---------- MISC ---------- */
.section-label { font-size: var(--text-xs); font-weight: var(--fw-bold); color: var(--muted); text-transform: uppercase; letter-spacing: .6px; margin-bottom: 8px; margin-top: 4px; }

/* ---------- PRINT PREVIEW ---------- */
.preview-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.88);
  z-index: 400;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.preview-overlay.show { display: flex; }
.preview-close-zone { position: absolute; inset: 0; z-index: 0; }
.preview-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 24px;
  width: 100%;
  max-width: 360px;
}
.preview-label {
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  text-align: center;
  color: rgba(255,255,255,.45);
  text-transform: uppercase;
  letter-spacing: .8px;
  width: 240px;
}
.preview-paper {
  width: 240px;
  height: 360px;
  background: #ffffff;
  box-shadow: 0 4px 32px rgba(0,0,0,.5);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
}
.preview-paper img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
.preview-controls { display: flex; flex-direction: column; align-items: center; gap: 14px; width: 100%; }
.preview-qty-row { display: flex; align-items: center; gap: 20px; }
.preview-qty-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.1);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
  flex-shrink: 0;
}
.preview-qty-btn:active { background: rgba(255,255,255,.2); }
.preview-qty-btn.del { border-color: rgba(255,100,100,.4); color: #ff6b6b; }
.preview-qty-num { font-size: 32px; font-weight: var(--fw-bold); color: white; min-width: 48px; text-align: center; line-height: 1; }
.preview-price { font-size: var(--text-sm); color: rgba(255,255,255,.55); font-weight: var(--fw-regular); letter-spacing: .2px; }
.preview-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  border: none;
  color: rgba(255,255,255,.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
}

/* ---------- HAMBURGER BUTTON ---------- */
.hamburger-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .15s;
}
.hamburger-btn:active { background: var(--bg); }

/* ---------- MENU OVERLAY ---------- */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 150;
  display: none;
  opacity: 0;
  transition: opacity .25s;
}
.menu-overlay.show { display: block; opacity: 1; }

/* ---------- SIDE MENU ---------- */
.side-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 280px;
  height: 100dvh;
  background: var(--surface);
  z-index: 200;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  box-shadow: 4px 0 24px rgba(0,0,0,.1);
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}
.side-menu.open { transform: translateX(0); }

.side-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  height: 64px;
}
.side-menu-close {
  width: 32px;
  height: 32px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--bg);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.side-menu-list {
  list-style: none;
  padding: 8px 0;
  flex: 1;
}
.side-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px;
  font-size: var(--text-base);
  font-weight: var(--fw-medium);
  color: var(--ink);
  text-decoration: none;
  transition: background .15s;
}
.side-menu-item:active,
.side-menu-item:hover { background: var(--bg); }
.side-menu-item.active { color: var(--accent); background: var(--accent-light); }
.side-menu-icon { font-size: 20px; color: var(--muted); }
.side-menu-item.active .side-menu-icon { color: var(--accent); }

/* ============================================================
   BRAND BUTTON — fancy floated (gradient + renkli gölge)
   Kullanım: header CTA, side-menu footer, öne çıkan aksiyonlar
   ============================================================ */
.btn-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  background: linear-gradient(135deg, #FF7A7F 0%, var(--accent) 55%, var(--accent-active) 100%);
  color: #fff;
  text-decoration: none;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(241,92,97,.38), 0 2px 4px rgba(241,92,97,.24);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
}
.btn-brand:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(241,92,97,.46), 0 3px 6px rgba(241,92,97,.28); }
.btn-brand:active { transform: translateY(0); filter: brightness(.97); box-shadow: 0 4px 12px rgba(241,92,97,.34); }
.btn-brand .material-symbols-outlined { flex-shrink: 0; }

/* Header için küçük varyant (aynı stil, daha kompakt padding) */
.btn-brand-sm { padding: 8px 16px; font-size: var(--text-sm); font-weight: var(--fw-semibold); border-radius: var(--radius-sm); box-shadow: 0 4px 12px rgba(241,92,97,.32), 0 1px 3px rgba(241,92,97,.2); }
.btn-brand-sm:hover { transform: translateY(-1px); }

/* Side-menu footer: butonu menünün en altına yaslar */
.side-menu-footer { margin-top: auto; padding: 16px 20px calc(16px + env(safe-area-inset-bottom)); }
.side-menu-footer .btn-brand { width: 100%; }

/* ---------- HEADER CART BUTTON ---------- */
.cart-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: none;
  background: transparent;
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  transition: background .15s;
}
.cart-btn:active { background: var(--bg); }

.cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: white;
  font-size: 10px;
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--surface);
  line-height: 1;
}

/* ---------- CART BOTTOM SHEET ---------- */
.sheet-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 150;
  display: none;
  opacity: 0;
  transition: opacity .3s;
}
.sheet-overlay.show { display: block; opacity: 1; }

.cart-sheet {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  max-width: 480px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  max-height: 80dvh;
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -4px 32px rgba(0,0,0,.12);
}
.cart-sheet.open { transform: translateY(0); }

.sheet-handle-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0 4px;
  flex-shrink: 0;
}
.sheet-handle {
  width: 36px;
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--border);
}
.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 20px 14px;
  flex-shrink: 0;
  border-bottom: 1px solid var(--border);
}
.sheet-title { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--ink); }
.sheet-count { font-size: var(--text-sm); color: var(--muted); font-weight: var(--fw-regular); }
.sheet-body { flex: 1; overflow-y: auto; padding: 8px 0; }
.sheet-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
}
.sheet-item-thumb {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg);
}
.sheet-item-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.sheet-item-info { flex: 1; min-width: 0; }
.sheet-item-name { font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--ink); margin-bottom: 2px; }
.sheet-item-sub { font-size: var(--text-xs); color: var(--muted); }
.sheet-footer {
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  flex-shrink: 0;
}

/* ---------- STEP PROGRESS BAR ---------- */
.step-progress {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  padding: 12px 20px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
  position: sticky;
  top: 64px;
  z-index: 90;
}
.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex: 1;
}
.step-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .2s, box-shadow .2s;
}
.step-item.active .step-icon-wrap {
  border-color: var(--accent);
  box-shadow: 0 2px 10px rgba(241,92,97,.2);
  background: var(--accent-light);
}
.step-item.done .step-icon-wrap {
  border-color: var(--success);
  background: #e8f6ef;
}
.step-icon-img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  opacity: 0.4;
  transition: opacity .2s;
}
.step-item.active .step-icon-img,
.step-item.done .step-icon-img { opacity: 1; }
.step-label {
  font-size: 10px;
  font-weight: var(--fw-semibold);
  color: var(--muted);
  text-align: center;
  letter-spacing: .2px;
  line-height: 1.3;
  white-space: nowrap;
}
.step-item.active .step-label { color: var(--accent); }
.step-item.done .step-label { color: var(--success); }
.step-line {
  flex: 1;
  height: 2px;
  background: var(--border);
  margin: 0 6px;
  margin-bottom: 20px;
  border-radius: var(--radius-full);
  transition: background .3s;
}
.step-line.done { background: var(--success); }

/* ========== PAGES - STATIC SAYFALAR ========== */

/* ---------- HEADER CTA BUTTON ---------- */

/* ---------- FOOTER ---------- */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.footer-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 48px 24px calc(32px + env(safe-area-inset-bottom));
}
.footer-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  padding: 40px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff5f5 100%);
  border: 1px solid rgba(241,92,97,.15);
  position: relative;
  overflow: hidden;
}
.footer-cta::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,92,97,.12) 0%, transparent 70%);
  animation: footer-pulse 3s ease-in-out infinite;
}
@keyframes footer-pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.15); opacity: .7; }
}
.footer-cta-label {
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
}
.footer-cta-heading {
  font-size: var(--text-xl);
  font-weight: var(--fw-black);
  color: var(--ink);
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 22px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  border-radius: var(--radius-md);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  box-shadow: 0 4px 16px rgba(241,92,97,.3);
  transition: transform .2s, box-shadow .2s, background .15s;
}
.footer-cta-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(241,92,97,.4);
}
.footer-cta-btn:active {
  transform: scale(.98);
  background: var(--accent-active);
}
.footer-divider {
  height: 1px;
  background: var(--border);
  margin: 32px 0;
}
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 20px;
}
.footer-nav-link {
  font-size: var(--text-sm);
  color: var(--ink2);
  text-decoration: none;
  font-weight: var(--fw-medium);
  transition: color .15s;
}
.footer-nav-link:hover { color: var(--accent); }
.footer-social-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--ink2);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}
.footer-social-btn:hover { border-color: var(--accent); color: var(--accent); }
.footer-copy {
  font-size: var(--text-xs);
  color: var(--muted);
  margin-top: 20px;
}

/* ---------- NOKTALAR PAGE ---------- */
.noktalar-page {
  min-height: calc(100dvh - 64px);
  display: flex;
  flex-direction: column;
}
.map-wrap {
  width: 100%;
  height: 45vh;
  min-height: 260px;
  position: relative;
  background: #e8e8e8;
}
#map { width: 100%; height: 100%; }
.search-bar {
  padding: 16px;
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: 10px;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.search-input-wrap { flex: 1; position: relative; }
.search-input {
  width: 100%;
  padding: 11px 14px 11px 40px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--text-sm);
  background: var(--bg);
  color: var(--ink);
  outline: none;
  transition: border-color .2s;
}
.search-input:focus { border-color: var(--accent); }
.search-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  font-size: var(--text-md);
  pointer-events: none;
}
.location-list {
  flex: 1;
  overflow-y: auto;
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
  padding: 8px 0 24px;
}
.location-card {
  padding: 20px;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background .15s;
}
.location-card:active { background: var(--bg); }
.location-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 6px;
}
.location-name {
  font-size: var(--text-base);
  font-weight: var(--fw-black);
  color: var(--ink);
  text-transform: uppercase;
  letter-spacing: .3px;
  line-height: 1.2;
}
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--fw-bold);
  white-space: nowrap;
  flex-shrink: 0;
}
.location-badge.open { background: #e8f6ef; color: var(--success); }
.location-badge.closed { background: var(--bg); color: var(--muted); }
.location-hours { font-size: var(--text-sm); color: var(--ink2); margin-bottom: 6px; font-weight: var(--fw-medium); }
.location-address { font-size: var(--text-sm); color: var(--muted); line-height: 1.5; margin-bottom: 12px; }
.location-actions { display: flex; gap: 8px; }
.location-action-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--surface);
  color: var(--ink2);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  transition: border-color .15s, color .15s;
}
.location-action-btn:hover { border-color: var(--accent); color: var(--accent); }
.location-action-btn.primary { background: var(--accent); border-color: var(--accent); color: white; }
.no-results { text-align: center; padding: 48px 20px; color: var(--muted); font-size: var(--text-sm); }

/* ---------- HAKKIMIZDA / LANDING PAGE ---------- */

/* HERO */
.lp-hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-6);
}
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  transform: scale(1.15);
  transform-origin: center center;
  will-change: transform;
}
.lp-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}
.lp-hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.28) 0%, rgba(0,0,0,.15) 40%, rgba(0,0,0,.45) 100%);
}
.lp-hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}
.lp-hero-eyebrow {
  display: inline-block;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  letter-spacing: .5px;
  margin-bottom: var(--sp-5);
}
.lp-hero-title {
  font-family: var(--font-display);
  font-size: clamp(38px, 9vw, 68px);
  font-weight: var(--fw-black);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
}
.lp-hero-title em { color: #fff; font-style: normal; opacity: .92; }
.lp-hero-sub {
  font-size: var(--text-md);
  color: rgba(255,255,255,.9);
  line-height: 1.6;
  max-width: 440px;
  margin: 0 auto var(--sp-8);
  font-weight: var(--fw-regular);
  text-shadow: 0 1px 12px rgba(0,0,0,.3);
}
.lp-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  box-shadow: 0 8px 32px rgba(241,92,97,.5);
  transition: transform .2s, box-shadow .2s;
}
.lp-hero-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(241,92,97,.6); }
.lp-hero-cta:active { transform: scale(.97); }
.lp-scroll-hint {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-1);
  color: rgba(255,255,255,.75);
  font-size: var(--text-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: .5px;
  text-transform: uppercase;
  animation: lp-bounce 2s ease-in-out infinite;
}
@keyframes lp-bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* SHEET */
.lp-sheet {
  position: relative;
  z-index: 2;
  background: var(--bg);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -24px;
  padding-top: var(--sp-4);
  box-shadow: 0 -8px 32px rgba(0,0,0,.08);
}

/* SECTION SHARED */
.lp-section-eyebrow {
  text-align: center;
  font-size: var(--text-sm);
  font-weight: var(--fw-bold);
  color: var(--accent);
  letter-spacing: .5px;
  margin-bottom: var(--sp-3);
}
.lp-section-title {
  font-family: var(--font-display);
  text-align: center;
  font-size: clamp(28px, 6vw, 40px);
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: var(--sp-10);
}
.lp-section-title em { color: var(--accent); font-style: normal; }

/* STEPS */
.lp-steps { padding: var(--sp-16) var(--sp-6) var(--sp-12); max-width: 720px; margin: 0 auto; }
.lp-steps-grid { display: flex; flex-direction: column; gap: var(--sp-4); }
.lp-step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-8) var(--sp-6);
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.lp-step-card.revealed { opacity: 1; transform: translateY(0); }
.lp-step-num {
  position: absolute;
  top: var(--sp-5);
  left: var(--sp-5);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  color: var(--accent);
  font-family: var(--font-display);
  font-size: var(--text-sm);
  font-weight: var(--fw-black);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-step-icon { margin-bottom: var(--sp-4); }
.lp-step-icon img { width: 88px; height: 88px; object-fit: contain; }
.lp-step-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: var(--fw-bold);
  color: var(--ink);
  margin-bottom: var(--sp-2);
}
.lp-step-card p { font-size: var(--text-base); color: var(--muted); line-height: 1.6; max-width: 320px; margin: 0 auto; }

@media (min-width: 720px) {
  .lp-steps-grid { flex-direction: row; }
  .lp-step-card { flex: 1; }
}

/* TRUST */
.lp-trust { padding: var(--sp-12) var(--sp-6) var(--sp-16); max-width: 720px; margin: 0 auto; }
.lp-trust-grid { display: flex; flex-direction: column; gap: var(--sp-4); }
.lp-trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  box-shadow: var(--shadow-sm);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.lp-trust-card.revealed { opacity: 1; transform: translateY(0); }
.lp-trust-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-trust-icon .material-symbols-outlined { font-size: 26px; }
.lp-trust-card h3 {
  font-family: var(--font-display);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  color: var(--ink);
}
.lp-trust-card p { font-size: var(--text-base); color: var(--muted); line-height: 1.6; }

/* FINAL CTA */
.lp-final { padding: 0 var(--sp-6) var(--sp-16); max-width: 720px; margin: 0 auto; }
.lp-final-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff8f8 100%);
  border: 1px solid rgba(241,92,97,.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-12) var(--sp-8);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.lp-final-card::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(241,92,97,.12) 0%, transparent 70%);
  animation: footer-pulse 3s ease-in-out infinite;
}
.lp-final-card h2 {
  font-family: var(--font-display);
  font-size: clamp(26px, 5vw, 36px);
  font-weight: var(--fw-black);
  color: var(--ink);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-3);
  position: relative;
}
.lp-final-card h2 em { color: var(--accent); font-style: normal; }
.lp-final-card p { font-size: var(--text-md); color: var(--ink2); margin-bottom: var(--sp-8); position: relative; }
.lp-final-cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-8);
  background: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-full);
  font-size: var(--text-md);
  font-weight: var(--fw-bold);
  box-shadow: 0 8px 28px rgba(241,92,97,.4);
  transition: transform .2s, box-shadow .2s;
  position: relative;
}
.lp-final-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(241,92,97,.5); }
.lp-final-cta:active { transform: scale(.97); }


/* ---------- İLETİŞİM PAGE ---------- */
.contact-hero {
  padding: 64px 24px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-hero-title {
  font-size: clamp(32px, 7vw, 52px);
  font-weight: var(--fw-black);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}
.contact-hero-sub {
  font-size: var(--text-base);
  color: var(--muted);
  line-height: 1.6;
  max-width: 440px;
}

.contact-cards-section {
  padding: 0 24px 48px;
  max-width: 720px;
  margin: 0 auto;
}
.contact-cards-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-decoration: none;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.contact-card:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 20px rgba(241,92,97,.1);
  transform: translateY(-1px);
}
.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--accent-light);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-card-body { flex: 1; min-width: 0; }
.contact-card-body h3 { font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: 2px; }
.contact-card-body p { font-size: var(--text-sm); color: var(--ink2); margin-bottom: 2px; }
.contact-card-hint { font-size: var(--text-xs); color: var(--muted); }
.contact-card-arrow { font-size: var(--text-md); color: var(--muted); flex-shrink: 0; }

.contact-divider {
  height: 1px;
  background: var(--border);
  max-width: 720px;
  margin: 0 auto;
}

/* FAQ */
.faq-section {
  padding: 48px 24px 64px;
}
.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}
.faq-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--border);
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-semibold);
  color: var(--ink);
  transition: color .15s;
}
.faq-q:hover { color: var(--accent); }
.faq-item.open .faq-q { color: var(--accent); }
.faq-icon {
  font-size: 20px;
  color: var(--muted);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-icon { color: var(--accent); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; padding-bottom: 20px; }
.faq-a p {
  font-size: var(--text-sm);
  color: var(--muted);
  line-height: 1.7;
  font-weight: var(--fw-regular);
}

/* ---------- İLETİŞİM FORM ---------- */
.contact-form-section {
  padding: 0 24px 48px;
}
.contact-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 768px) {
  .contact-form-wrap {
    flex-direction: row;
    align-items: flex-start;
    gap: 32px;
  }
  .contact-form-card { flex: 1; }
  .contact-cards-aside { width: 280px; flex-shrink: 0; }
}

.contact-form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
}

.form-required { color: var(--accent); font-size: 10px; }
.form-optional { color: var(--muted); font-size: 10px; font-weight: var(--fw-regular); text-transform: none; letter-spacing: 0; }

.select-wrap { position: relative; }
.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-right: 40px;
}
.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
  font-size: 20px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-family);
  font-size: var(--text-base);
  line-height: 1.6;
}

.form-input-error {
  border-color: var(--danger) !important;
}

.contact-submit-btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-family);
  font-size: var(--text-base);
  font-weight: var(--fw-bold);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(241,92,97,.28);
  transition: opacity .15s, transform .1s;
  margin-top: 4px;
}
.contact-submit-btn:active { opacity: .85; transform: scale(.98); }
.contact-submit-btn:disabled { background: var(--border); color: var(--muted); box-shadow: none; cursor: not-allowed; }

.contact-form-note {
  font-size: var(--text-xs);
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  line-height: 1.5;
}

.contact-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 16px;
  gap: 14px;
}
.contact-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #e8f6ef;
  color: var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pop .4s cubic-bezier(.34,1.56,.64,1);
}
.contact-success h3 { font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--ink); }
.contact-success p { font-size: var(--text-sm); color: var(--muted); line-height: 1.6; }

.contact-cards-aside {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-divider-full {
  height: 1px;
  background: var(--border);
  max-width: 720px;
  margin: 0 auto;
}

/* ---------- DISPLAY FONT (Nunito) ---------- */
.contact-hero-title,
.contact-success h3,
.footer-cta-heading,
.hero h1,
.done-wrap h2,
.del-sheet h3,
.qr-header h3,
.sheet-title {
  font-family: var(--font-display);
}

/* ---------- GENİŞ EKRAN: FULL-WIDTH BAR ARKA PLANI ---------- */
@media (min-width: 520px) {
  .step-progress,
  .bottom-bar {
    max-width: 100%;
    padding-left: calc((100% - 480px) / 2);
    padding-right: calc((100% - 480px) / 2);
  }
  .bottom-bar {
    padding-top: 12px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
  .step-progress {
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .scroll-area {
    max-width: 512px;
  }
}
/* ============================================================
   PANEL (admin + iş ortağı) — ortak component
   ============================================================ */
.pnl-body { background: var(--bg); min-height: 100dvh; }
.pnl-header {
  background: var(--surface); border-bottom: 1px solid var(--border);
  padding: var(--sp-4) var(--sp-6);
  display: flex; align-items: center; justify-content: space-between;
  position: sticky; top: 0; z-index: 10;
}
.pnl-brand { display: flex; align-items: center; gap: var(--sp-3); }
.pnl-logo-link { display: flex; align-items: center; }
.pnl-logo-link img { height: 22px; display: block; }
.pnl-divider { width: 1px; height: 20px; background: var(--border); }
.pnl-role { font-family: var(--font-display); font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--ink); }
.pnl-cikis { font-size: var(--text-sm); color: var(--muted); text-decoration: none; }
.pnl-main { max-width: 720px; margin: 0 auto; padding: var(--sp-6); }
.pnl-title { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--fw-black); color: var(--ink); margin-bottom: var(--sp-5); }
.pnl-loading { text-align: center; color: var(--muted); padding: var(--sp-10); font-size: var(--text-sm); }

/* Otomat kartı — dropdown */
.otomat-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-lg); margin-bottom: var(--sp-4); overflow: hidden; box-shadow: var(--shadow-sm); }
.otomat-head { padding: var(--sp-5); display: flex; align-items: center; justify-content: space-between; cursor: pointer; user-select: none; }
.otomat-head-left { display: flex; align-items: center; gap: var(--sp-3); }
.otomat-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.otomat-dot.online { background: var(--success); }
.otomat-dot.offline { background: var(--muted); }
.otomat-name { font-family: var(--font-display); font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--ink); }
.otomat-id { font-size: var(--text-xs); color: var(--muted); margin-top: 2px; }
.otomat-head-right { display: flex; align-items: center; gap: var(--sp-3); }
.otomat-status-txt { font-size: var(--text-sm); font-weight: var(--fw-semibold); }
.otomat-status-txt.online { color: var(--success); }
.otomat-status-txt.offline { color: var(--muted); }
.otomat-chevron { transition: transform .3s; color: var(--muted); }
.otomat-card.open .otomat-chevron { transform: rotate(180deg); }
.otomat-detail { max-height: 0; overflow: hidden; transition: max-height .4s ease; border-top: 1px solid transparent; }
.otomat-card.open .otomat-detail { max-height: 1000px; border-top-color: var(--border); }
.otomat-detail-inner { padding: var(--sp-5); }

/* İstatistik kutuları */
.stat-row { display: flex; gap: var(--sp-3); margin-bottom: var(--sp-5); flex-wrap: wrap; }
.stat-box { flex: 1; min-width: 90px; background: var(--bg); border-radius: var(--radius-md); padding: var(--sp-4); text-align: center; }
.stat-num { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--fw-black); color: var(--accent); }
.stat-lbl { font-size: var(--text-xs); color: var(--muted); margin-top: var(--sp-1); }

/* Tarih filtresi */
.filter-row { display: flex; gap: var(--sp-2); margin-bottom: var(--sp-4); }
.filter-btn { flex: 1; padding: var(--sp-2) var(--sp-3); border: 1px solid var(--border); background: var(--surface); border-radius: var(--radius-sm); font-size: var(--text-sm); font-family: var(--font-family); cursor: pointer; color: var(--ink2); transition: all .15s; }
.filter-btn.active { background: var(--accent-light); border-color: var(--accent); color: var(--accent); font-weight: var(--fw-semibold); }

/* Meta liste + admin aksiyon */
.meta-list { font-size: var(--text-sm); color: var(--ink2); margin-top: var(--sp-4); }
.meta-item { display: flex; justify-content: space-between; padding: var(--sp-2) 0; border-bottom: 1px solid var(--border); }
.meta-item:last-child { border-bottom: none; }
.meta-label { color: var(--muted); }
.admin-actions { display: flex; gap: var(--sp-2); margin-top: var(--sp-5); }
.action-btn {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  padding: var(--sp-3) var(--sp-4);
  border-radius: var(--radius-sm);
  font-family: var(--font-family);
  font-size: var(--text-sm); font-weight: var(--fw-semibold);
  cursor: pointer;
  transition: border-color .15s, color .15s, background .15s;
}
.action-btn .material-symbols-outlined { font-size: var(--text-md); }
.btn-secondary { border: 1.5px solid var(--border); background: var(--surface); color: var(--ink2); }
.btn-secondary:hover { border-color: var(--danger); color: var(--danger); }
.btn-secondary:active { background: var(--bg); }

/* Takvim */
.cal-wrap { margin-top: var(--sp-4); background: var(--bg); border-radius: var(--radius-md); padding: var(--sp-4); }
.cal-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: var(--sp-3); }
.cal-title { font-family: var(--font-display); font-size: var(--text-base); font-weight: var(--fw-bold); color: var(--ink); }
.cal-nav { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); width: 32px; height: 32px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--ink2); }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; }
.cal-dow { text-align: center; font-size: var(--text-xs); color: var(--muted); font-weight: var(--fw-semibold); padding: var(--sp-1) 0; }
.cal-day { aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; border-radius: var(--radius-sm); font-size: var(--text-sm); color: var(--ink); cursor: pointer; position: relative; border: 1px solid transparent; }
.cal-day.empty { cursor: default; }
.cal-day.has-print { background: var(--accent-light); color: var(--accent); font-weight: var(--fw-bold); }
.cal-day.selected { border-color: var(--accent); background: var(--accent); color: #fff; }
.cal-day-count { font-size: 9px; line-height: 1; margin-top: 2px; opacity: .8; }
.cal-selected-info { text-align: center; margin-top: var(--sp-4); padding: var(--sp-4); background: var(--surface); border-radius: var(--radius-md); }
.cal-selected-num { font-family: var(--font-display); font-size: var(--text-2xl); font-weight: var(--fw-black); color: var(--accent); }
.cal-selected-lbl { font-size: var(--text-xs); color: var(--muted); margin-top: var(--sp-1); }


/* ============================================================
   İŞ ORTAĞI LANDING (is-ortagi.html)
   ============================================================ */
.io-hero {
  background: linear-gradient(180deg, var(--accent-light) 0%, var(--bg) 100%);
  padding: calc(var(--sp-10) * 1.4) var(--sp-6) calc(var(--sp-10) * 1.4 + 24px);
}
.io-hero-inner { max-width: 780px; margin: 0 auto; text-align: center; }
.io-hero-eyebrow {
  display: inline-block;
  font-size: var(--text-sm); font-weight: var(--fw-bold);
  color: var(--accent); letter-spacing: .04em; text-transform: uppercase;
  margin-bottom: var(--sp-4);
}
.io-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 7vw, 3.2rem);
  font-weight: var(--fw-black); line-height: 1.08;
  color: var(--ink); letter-spacing: -0.02em; margin-bottom: var(--sp-5);
}
.io-hero-title em { color: var(--accent); font-style: normal; }
.io-hero-sub {
  font-size: var(--text-lg); color: var(--ink2); line-height: 1.55;
  max-width: 560px; margin: 0 auto var(--sp-8);
}
.io-hero-cta {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--accent); color: #fff;
  padding: var(--sp-4) var(--sp-8); border-radius: var(--radius-full, 999px);
  font-size: var(--text-base); font-weight: var(--fw-bold);
  text-decoration: none; transition: transform .15s, box-shadow .15s;
  box-shadow: var(--shadow-md, 0 8px 24px rgba(241,92,97,.28));
}
.io-hero-cta:active { transform: translateY(1px); }
.io-hero-note {
  margin-top: var(--sp-5); font-size: var(--text-sm); color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
}

/* Fayda kartları */
.io-benefit-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4);
  margin-top: var(--sp-6);
}
.io-benefit-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: var(--sp-6);
  opacity: 0; transform: translateY(16px);
  transition: opacity .5s ease, transform .5s ease;
}
.io-benefit-card.revealed { opacity: 1; transform: none; }
.io-benefit-icon {
  width: 48px; height: 48px; border-radius: var(--radius-md);
  background: var(--accent-light); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: var(--sp-4);
}
.io-benefit-icon .material-symbols-outlined { font-size: 26px; }
.io-benefit-card h3 { font-family: var(--font-display); font-size: var(--text-md); font-weight: var(--fw-bold); color: var(--ink); margin-bottom: var(--sp-2); }
.io-benefit-card p { font-size: var(--text-sm); color: var(--ink2); line-height: 1.5; }

/* Gelir + şeffaflık */
.io-earn { padding: var(--sp-10) var(--sp-6); background: var(--accent-light); border-radius: var(--radius-xl); margin: var(--sp-8) 0; }
.io-earn-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.io-earn-text { font-size: var(--text-base); color: var(--ink2); line-height: 1.6; margin: var(--sp-5) 0 var(--sp-6); }
.io-earn-features { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.io-earn-feat {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--surface); border-radius: var(--radius-full, 999px);
  padding: var(--sp-2) var(--sp-4); font-size: var(--text-sm);
  font-weight: var(--fw-semibold); color: var(--ink);
}
.io-earn-feat .material-symbols-outlined { font-size: 18px; color: var(--accent); }

/* Step emoji ikon (nasıl çalışır) */
.io-step-emoji { color: var(--accent); margin: var(--sp-2) 0; }
.io-step-emoji .material-symbols-outlined { font-size: 34px; }

/* Kime uygun — chip'ler */
.io-fit-sub { text-align: center; font-size: var(--text-base); color: var(--ink2); margin-bottom: var(--sp-6); }
.io-fit-grid { display: flex; flex-wrap: wrap; gap: var(--sp-3); justify-content: center; }
.io-fit-chip {
  display: inline-flex; align-items: center; gap: var(--sp-2);
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-full, 999px); padding: var(--sp-3) var(--sp-5);
  font-size: var(--text-sm); font-weight: var(--fw-semibold); color: var(--ink);
}
.io-fit-chip .material-symbols-outlined { font-size: 19px; color: var(--accent); }

/* Cihaz */
.io-device { padding: var(--sp-8) var(--sp-6); }
.io-device-inner { max-width: 640px; margin: 0 auto; text-align: center; }
.io-device-text { font-size: var(--text-base); color: var(--ink2); line-height: 1.6; margin: var(--sp-5) 0 var(--sp-6); }
.io-device-specs { display: flex; flex-wrap: wrap; gap: var(--sp-4); justify-content: center; }
.io-spec { display: inline-flex; align-items: center; gap: var(--sp-2); font-size: var(--text-sm); color: var(--ink2); }
.io-spec .material-symbols-outlined { font-size: 20px; color: var(--accent); }

/* Güvence + FOMO */
.io-reassure { padding: var(--sp-6); }
.io-reassure-card {
  background: linear-gradient(135deg, var(--accent-light) 0%, #fff5f5 100%);
  border-radius: var(--radius-xl);
  padding: var(--sp-8); text-align: center; max-width: 640px; margin: 0 auto;
  opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s;
}
.io-reassure-card.revealed { opacity: 1; transform: none; }
.io-reassure-icon { font-size: 40px; color: var(--accent); margin-bottom: var(--sp-4); }
.io-reassure-card h3 { font-family: var(--font-display); font-size: var(--text-xl); font-weight: var(--fw-black); margin-bottom: var(--sp-4); color: var(--ink); }
.io-reassure-card p { font-size: var(--text-base); line-height: 1.6; color: var(--ink2); }
.io-fomo {
  display: flex; align-items: center; justify-content: center; gap: var(--sp-2);
  max-width: 640px; margin: var(--sp-5) auto 0; text-align: center;
  background: var(--accent-light); color: var(--accent);
  border-radius: var(--radius-lg); padding: var(--sp-4) var(--sp-5);
  font-size: var(--text-sm); font-weight: var(--fw-semibold);
  opacity: 0; transform: translateY(16px); transition: opacity .5s, transform .5s;
}
.io-fomo.revealed { opacity: 1; transform: none; }

/* Başvuru formu */
.io-apply { padding: var(--sp-10) var(--sp-6); }
.io-apply-inner { max-width: 640px; margin: 0 auto; }

@media (max-width: 560px) {
  .io-benefit-grid { grid-template-columns: 1fr; }
}

/* io-hero: hakkımızda'daki gibi sheet'in üstüne bineceği yumuşak zemin.
   Böylece .lp-sheet bindirmesi (radius + gölge) her iki sayfada da
   aynı görsel etkiyi verir. */

/* Yeniden kullanılabilir yumuşak vurgu zemini (gelir bölümü bg'si).
   İleride başka yerlerde de kullanılabilir. */
.bg-accent-soft {
  background: var(--accent-light);
  border-radius: var(--radius-xl);
}