/* =========================
   ENB UI TOKENS (NO PINK/INSTAGRAM)
========================= */
:root{
  --enb-bg: #0b1220;
  --enb-panel: rgba(255,255,255,.06);
  --enb-border: rgba(255,255,255,.10);
  --enb-border2: rgba(15,23,42,.18);

  --enb-text: #e5e7eb;
  --enb-text-dim: rgba(255,255,255,.72);

  --enb-indigo: #4f46e5;     /* indigo-600 */
  --enb-indigo2:#4338ca;     /* indigo-700 */
  --enb-emerald:#10b981;     /* emerald-500 */
  --enb-emerald2:#059669;    /* emerald-600 */
  --enb-amber:#f59e0b;       /* amber-500 */
  --enb-amber2:#d97706;      /* amber-600 */
}

/* =========================
   TAB PANEL VISIBILITY
========================= */
.tab-panel { display:none; }
.tab-panel.active{ display:block; }

/* =========================
   ENB BUTTON BOX (GRID + MODAL)
   - readable labels
   - compact
========================= */
.enb-btn-box{
  position: relative;
  overflow: hidden;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:4px;

  background:#ffffff;
  border:1px solid rgba(148,163,184,.35);
  border-radius:14px;
  padding:10px 8px;

  min-height:64px; /* daha dengeli */
  width:100%;

  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 10px 20px rgba(0,0,0,.10);

  transition:
    transform .16s ease,
    box-shadow .16s ease,
    border-color .16s ease,
    background .16s ease;
  cursor:pointer;
  user-select:none;
  -webkit-tap-highlight-color: transparent;
}

.enb-btn-box:hover{
  transform: translateY(-2px);
  box-shadow:
    0 6px 14px rgba(0,0,0,.12),
    0 18px 34px rgba(0,0,0,.16);
  border-color: rgba(79,70,229,.35);
}

.enb-btn-box:active{
  transform: translateY(0);
}

.enb-btn-box.active{
  background: rgba(79,70,229,.08);
  border-color: rgba(79,70,229,.55);
  box-shadow:
    0 0 0 2px rgba(79,70,229,.25),
    0 12px 28px rgba(79,70,229,.20);
}

.enb-btn-box .icon{
  font-size:18px;
  line-height:1;
  transition: transform .18s ease, filter .18s ease;
}

.enb-btn-box .label{
  font-size:11px;
  font-weight:800;
  color:#0f172a;
  text-align:center;
  line-height:1.15;
  padding:0 4px;
}

.enb-btn-box .desc{
  font-size:10px;
  font-weight:700;
  color:#475569;
}

.enb-btn-box:hover .icon{
  transform: scale(1.12);
  filter: brightness(1.05);
}

/* =========================
   PRIMARY (Rezervasyon) - NO PINK
========================= */
.enb-btn-primary{
  background: linear-gradient(90deg, var(--enb-indigo), var(--enb-indigo2));
  border-color: transparent;
}

.enb-btn-primary .label,
.enb-btn-primary .icon,
.enb-btn-primary .desc{
  color:#fff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.20);
}

.enb-btn-primary:hover{
  box-shadow:
    0 10px 24px rgba(79,70,229,.28),
    0 22px 44px rgba(2,6,23,.22);
}

/* =========================
   REVIEW (Deneyim) - emerald/teal vibe
========================= */
.enb-btn-review{
  background: linear-gradient(90deg, var(--enb-emerald), #0ea5e9); /* emerald -> sky */
  border-color: transparent;
}

.enb-btn-review .label,
.enb-btn-review .icon,
.enb-btn-review .desc{
  color:#fff !important;
  text-shadow: 0 1px 0 rgba(0,0,0,.20);
}

/* =========================
   CTA (Hızlı Menü küçük + hareketli)
========================= */
.enb-qm-cta{
  width: min(220px, 100%);
  min-height:54px;
  padding:10px 10px;
  border-radius:16px;
  background: rgba(255,255,255,.92);
  border-color: rgba(148,163,184,.35);
  box-shadow:
    0 12px 26px rgba(0,0,0,.18),
    0 0 0 1px rgba(255,255,255,.06) inset;
}

@keyframes enbPulse{
  0%{ transform: translateY(0); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
  50%{ transform: translateY(-1px); box-shadow: 0 16px 34px rgba(0,0,0,.22); }
  100%{ transform: translateY(0); box-shadow: 0 12px 26px rgba(0,0,0,.18); }
}
.enb-qm-cta{
  animation: enbPulse 2.6s ease-in-out infinite;
}
.enb-qm-cta:hover{
  animation: none;
  transform: translateY(-2px);
  border-color: rgba(79,70,229,.45);
}

/* =========================
   RIPPLE EFFECT (indigo)
========================= */
.enb-btn-box::after{
  content:"";
  position:absolute;
  left: var(--ripple-x, 50%);
  top:  var(--ripple-y, 50%);
  width: 0;
  height: 0;
  transform: translate(-50%,-50%);
  background: rgba(79,70,229,.20);
  border-radius: 999px;
  opacity: 0;
  pointer-events:none;
}

.enb-btn-box.ripple-animate::after{
  animation: enbRipple .55s ease-out;
}
@keyframes enbRipple{
  0%   { width: 0; height: 0; opacity: .75; }
  100% { width: 520px; height: 520px; opacity: 0; }
}

/* =========================
   MODAL (QuickMenu + Profiles)
========================= */
.enb-qm-open{ overflow:hidden; }

.enb-qm{
  position: fixed;
  inset: 0;
  z-index: 9999;
  display:grid;
  place-items:center;
  padding: 18px;
}
.enb-qm.hidden{ display:none; }

.enb-qm__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.66);
}

.enb-qm__panel{
  position: relative;
  width: min(980px, 100%);
  max-height: min(80vh, 760px);
  overflow:auto;

  background: var(--enb-bg);
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 18px;

  box-shadow: 0 30px 100px rgba(0,0,0,.55);
}

.enb-qm__head{
  display:flex;
  align-items:center;
  justify-content:space-between;

  padding: 14px 14px 12px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}

.enb-qm__title{ display:flex; gap:10px; align-items:center; }
.enb-qm__badge{
  width:38px; height:38px;
  display:grid; place-items:center;
  border-radius: 14px;
  background: rgba(79,70,229,.18); /* indigo */
  border: 1px solid rgba(255,255,255,.10);
}
.enb-qm__h{ font-weight:900; color:#fff; line-height:1.1; }
.enb-qm__p{ font-size:12px; color: var(--enb-text-dim); margin-top:2px; }

.enb-qm__x{
  width:40px; height:40px;
  border-radius: 14px;
  background: rgba(255,255,255,.08);
  color:#fff;
  border: 1px solid rgba(255,255,255,.10);
  cursor:pointer;
  transition: transform .15s ease, background .15s ease;
}
.enb-qm__x:hover{ transform: translateY(-1px); background: rgba(255,255,255,.12); }

.enb-qm__body{ padding: 14px; }

/* Modal içindeki enb-btn-box arka planı "daha koyu panel" gibi dursun */
#enbQuickMenuModal .enb-btn-box,
#enbProfilesModal .enb-btn-box{
  background: rgba(255,255,255,.92);
}

/* =========================
   PROFILES CARD (enb-prof)
========================= */
.enb-prof{
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.enb-prof__more{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.06);
  border-radius: 14px;
}

/* =========================
   GALLERY SELECT OVERLAY
========================= */
.gallery-item{ position: relative; width:100%; text-align:left; }

.gallery-item .enb-gsel{
  position:absolute;
  top:12px;
  left:12px;
  z-index: 20;

  display:inline-flex;
  align-items:center;
  gap:8px;

  padding:8px 10px;
  border-radius: 999px;

  background: rgba(15,23,42,.78);
  border: 1px solid rgba(255,255,255,.18);
  color:#fff;

  font-size:12px;
  font-weight:900;

  backdrop-filter: blur(10px);
  box-shadow: 0 10px 22px rgba(0,0,0,.25);
  transform: translateY(0);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.gallery-item:hover .enb-gsel{
  transform: translateY(-1px);
  background: rgba(15,23,42,.88);
  border-color: rgba(79,70,229,.35);
  box-shadow: 0 14px 28px rgba(0,0,0,.32);
}

.gallery-item .enb-gsel:active{ transform: scale(.98); }

.gallery-item .enb-gsel .dot{
  width:10px; height:10px; border-radius:999px;
  background: var(--enb-indigo);
  box-shadow: 0 0 0 4px rgba(79,70,229,.22);
}

/* seçildi badge */
.gallery-item .enb-gsel-ok{
  position:absolute;
  top:12px;
  right:12px;
  z-index: 20;

  display:none;
  padding:6px 10px;
  border-radius:999px;
  background: rgba(16,185,129,.88);
  border: 1px solid rgba(255,255,255,.20);
  color:#fff;
  font-size:11px;
  font-weight:900;
  backdrop-filter: blur(10px);
}
.gallery-item.is-chosen .enb-gsel-ok{ display:inline-flex; }

/* =========================
   LIVE TICKER (if used)
========================= */
.live-ticker{
  display:inline-block;
  width: min(680px, 100%);
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(2,6,23,.55);
  border: 1px solid rgba(255,255,255,.12);
  color: #fff;
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 800;
}
.live-ticker b{ color:#fff; }
@keyframes tickIn{
  from{ transform: translateY(4px); opacity:0; }
  to{ transform: translateY(0); opacity:1; }
}
.live-ticker.tick-in{ animation: tickIn .35s ease; }

/* =========================
   SMALL FIXES
========================= */
button.enb-btn-box{ -webkit-appearance:none; appearance:none; border:1px solid rgba(148,163,184,.35); }
#enbQuickMenuModal .enb-btn-box .label,
#enbProfilesModal .enb-btn-box .label{ color:#0f172a; }
#enbQuickMenuModal .enb-btn-primary .label,
#enbProfilesModal .enb-btn-primary .label{ color:#fff !important; }

/* =========================
   DOĞAL / DAHA AZ MEKANİK OVERRIDE
   (dosyanın en altına ekle)
========================= */

/* Hover animasyonlarını yumuşat */
.enb-btn-box{
  border-radius: 12px;
  border-color: rgba(148,163,184,.28);
  box-shadow:
    0 1px 2px rgba(0,0,0,.05),
    0 8px 18px rgba(2,6,23,.10);
  transition:
    transform .14s ease,
    box-shadow .14s ease,
    border-color .14s ease,
    background .14s ease;
}

.enb-btn-box:hover{
  transform: translateY(-1px);
  box-shadow:
    0 2px 6px rgba(0,0,0,.08),
    0 14px 28px rgba(2,6,23,.12);
  border-color: rgba(79,70,229,.28);
}

.enb-btn-box:active{
  transform: translateY(0);
  box-shadow:
    0 1px 2px rgba(0,0,0,.06),
    0 10px 20px rgba(2,6,23,.10);
}

/* Icon büyütme daha sakin */
.enb-btn-box:hover .icon{
  transform: scale(1.06);
  filter: none;
}

/* Yazıyı doğal yap: daha az “block” hissi */
.enb-btn-box .label{
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1px;
  color: rgba(15,23,42,.88);
}
.enb-btn-box .desc{
  color: rgba(71,85,105,.85);
}

/* Primary / Review çok “plastik” olmasın: gradient’i sadeleştir */
.enb-btn-primary{
  background: linear-gradient(90deg, rgba(79,70,229,1), rgba(67,56,202,1));
  box-shadow:
    0 10px 22px rgba(79,70,229,.22),
    0 2px 6px rgba(2,6,23,.12);
}
.enb-btn-review{
  background: linear-gradient(90deg, rgba(16,185,129,1), rgba(14,165,233,1));
  box-shadow:
    0 10px 22px rgba(16,185,129,.18),
    0 2px 6px rgba(2,6,23,.12);
}

/* Hızlı Menü CTA: pulse iptal, daha doğal */
.enb-qm-cta{
  animation: none !important;
  min-height: 52px;
  border-radius: 14px;
  box-shadow:
    0 10px 24px rgba(2,6,23,.18);
}
.enb-qm-cta:hover{
  transform: translateY(-1px);
  box-shadow:
    0 14px 30px rgba(2,6,23,.20);
}

/* Modal içi daha “soft” */
.enb-qm__panel{
  border-radius: 16px;
  border-color: rgba(255,255,255,.09);
  box-shadow: 0 26px 90px rgba(0,0,0,.50);
}
.enb-qm__badge{
  border-radius: 12px;
  background: rgba(79,70,229,.14);
}

/* =====================================================
   ENB - NATURAL FEEL OVERRIDES (NO PINK)
   -> EN ALTTA dursun
===================================================== */

/* --- Genel: animasyonları sakinleştir --- */
:root{
  --enb-soft-shadow: 0 12px 40px rgba(2,6,23,.10);
  --enb-soft-shadow2: 0 6px 18px rgba(2,6,23,.08);
  --enb-ring: 0 0 0 3px rgba(79,70,229,.16);
  --enb-border-soft: rgba(148,163,184,.22);
  --enb-border-soft2: rgba(148,163,184,.14);
}

/* =====================================================
   BUTTONS: Kart gibi değil "buton" gibi dursun
===================================================== */
.enb-btn-box{
  border-radius: 12px;
  border: 1px solid var(--enb-border-soft);
  background: rgba(255,255,255,.96);

  /* “plastik” gibi duran sert shadow’ları azalt */
  box-shadow: var(--enb-soft-shadow2);

  /* zıplama yok, doğal yaklaşma */
  transition:
    transform .14s ease,
    box-shadow .14s ease,
    border-color .14s ease,
    filter .14s ease,
    background .14s ease;
}

.enb-btn-box:hover{
  transform: translateY(-1px);
  box-shadow: var(--enb-soft-shadow);
  border-color: rgba(79,70,229,.22);
  filter: saturate(1.02);
}

.enb-btn-box:active{
  transform: translateY(0);
  box-shadow: 0 8px 22px rgba(2,6,23,.10);
}

.enb-btn-box.active{
  background: rgba(79,70,229,.06);
  border-color: rgba(79,70,229,.28);
  box-shadow: var(--enb-ring), var(--enb-soft-shadow2);
}

.enb-btn-box .icon{
  font-size: 17px;
  transform: none !important;
  filter: none !important;
}

.enb-btn-box .label{
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .1px;
  color: rgba(15,23,42,.88);
  line-height: 1.2;
}

.enb-btn-box .desc{
  font-size: 10px;
  font-weight: 650;
  color: rgba(71,85,105,.82);
}

/* =====================================================
   PRIMARY / REVIEW: Gradient’i öldür, doğal tona çek
   (hala vurgu var ama "instagram" vibe yok)
===================================================== */
.enb-btn-primary{
  background: rgba(79,70,229,.92); /* tek ton */
  border-color: rgba(79,70,229,.20);
  box-shadow: 0 10px 24px rgba(79,70,229,.20);
}
.enb-btn-primary:hover{
  background: rgba(79,70,229,.96);
  box-shadow: 0 14px 34px rgba(79,70,229,.22);
}

.enb-btn-review{
  background: rgba(16,185,129,.92); /* tek ton */
  border-color: rgba(16,185,129,.22);
  box-shadow: 0 10px 24px rgba(16,185,129,.18);
}
.enb-btn-review:hover{
  background: rgba(16,185,129,.96);
  box-shadow: 0 14px 34px rgba(16,185,129,.20);
}

.enb-btn-primary .label,
.enb-btn-primary .icon,
.enb-btn-primary .desc,
.enb-btn-review .label,
.enb-btn-review .icon,
.enb-btn-review .desc{
  color:#fff !important;
  text-shadow: none; /* daha doğal */
}

/* =====================================================
   Hızlı Menü CTA: pulse/oyun hissini kaldır
===================================================== */
.enb-qm-cta{
  animation: none !important;
  width: min(240px, 100%);
  min-height: 52px;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
  border: 1px solid var(--enb-border-soft);
  box-shadow: var(--enb-soft-shadow2);
}
.enb-qm-cta:hover{
  transform: translateY(-1px);
  box-shadow: var(--enb-soft-shadow);
  border-color: rgba(79,70,229,.22);
}

/* =====================================================
   MODALS: “kutu” değil, “sheet” hissi
===================================================== */
.enb-qm__backdrop{
  background: rgba(2,6,23,.68);
  backdrop-filter: blur(6px);
}

.enb-qm__panel{
  background: rgba(11,18,32,.92);   /* cam gibi */
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;

  box-shadow: 0 40px 140px rgba(0,0,0,.55);
}

.enb-qm__head{
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.enb-qm__badge{
  background: rgba(79,70,229,.12);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
}

.enb-qm__x{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  transition: transform .14s ease, background .14s ease, border-color .14s ease;
}
.enb-qm__x:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.12);
}

/* Modal içindeki butonlar: “kart” gibi bağırmasın */
#enbQuickMenuModal .enb-btn-box,
#enbProfilesModal .enb-btn-box{
  background: rgba(255,255,255,.92);
  border-color: rgba(148,163,184,.20);
  box-shadow: 0 6px 16px rgba(2,6,23,.10);
}

/* =====================================================
   PROFILES CARD: kart hissini azalt, içerik hissi ver
===================================================== */
.enb-prof{
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.05);
  box-shadow: 0 14px 40px rgba(0,0,0,.18);
}
.enb-prof__more{
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

/* =====================================================
   Gallery overlay seç butonu: daha az “badge”
===================================================== */
.gallery-item .enb-gsel{
  background: rgba(2,6,23,.60);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}
.gallery-item:hover .enb-gsel{
  background: rgba(2,6,23,.72);
  border-color: rgba(79,70,229,.24);
}

/* Ripple: daha sakin */
.enb-btn-box::after{
  background: rgba(79,70,229,.16);
}

/* ✅ Rezervasyon + Deneyimini Paylaş: yazıları siyah olsun */
.enb-btn-box.enb-btn-primary,
.enb-btn-box.enb-btn-review{
  color: #0f172a !important; /* slate-900 */
}

.enb-btn-box.enb-btn-primary .label,
.enb-btn-box.enb-btn-primary .icon,
.enb-btn-box.enb-btn-review .label,
.enb-btn-box.enb-btn-review .icon{
  color: #0f172a !important;
}

/* ✅ Hızlı menü modalı içinde: Rezervasyon + Deneyimini Paylaş yazıları siyah */
#enbQuickMenuModal .enb-btn-box.enb-btn-primary,
#enbQuickMenuModal .enb-btn-box.enb-btn-review{
  color: #0f172a !important;
}

#enbQuickMenuModal .enb-btn-box.enb-btn-primary .label,
#enbQuickMenuModal .enb-btn-box.enb-btn-primary .icon,
#enbQuickMenuModal .enb-btn-box.enb-btn-review .label,
#enbQuickMenuModal .enb-btn-box.enb-btn-review .icon{
  color: #0f172a !important;
}

/* ✅ Eğer modal içinde span'larda text-white gibi sınıf varsa bunu da ezer */
#enbQuickMenuModal .enb-btn-box.enb-btn-primary .label[class*="text-"],
#enbQuickMenuModal .enb-btn-box.enb-btn-review .label[class*="text-"]{
  color: #0f172a !important;
}

#enbProfilesModal .enb-prof .enb-btn-primary{
  background: linear-gradient(135deg,#6366f1,#4f46e5);
  color:#fff !important;
  border:none;
}

#enbProfilesModal .enb-prof .enb-btn-primary .label,
#enbProfilesModal .enb-prof .enb-btn-primary .icon{
  color:#fff !important;
}

/* =========================
   TOPLAM DOCK (MOBİLDE YUKARI AL)
========================= */

/* Dock görünürken sayfanın altına boşluk aç */
body.enb-has-dock{
  padding-bottom: 110px; /* biraz artırdım */
}

/* Varsayılan (desktop) */
.enb-total-dock{
  position: fixed;
  z-index: 9998;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom, 0px));
  width: min(420px, calc(100vw - 24px));
  pointer-events: none;
}

/* İç kutu */
.enb-total-dock__inner{
  pointer-events: auto;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-radius: 18px;
  padding: 12px 12px;
  border: 1px solid rgba(15, 23, 42, .10);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(15,23,42,.14);
}

.enb-total-dock__title{
  font-weight: 900;
  color: #0f172a;
  line-height: 1.1;
}

.enb-total-dock__sub{
  margin-top: 2px;
  font-size: 12px;
  color: rgba(15,23,42,.70);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 240px;
}

.enb-total-dock__amount{
  font-weight: 900;
  font-size: 18px;
  color: #0f172a;
  line-height: 1.1;
}

.enb-total-dock__btn{
  margin-top: 6px;
  border: 0;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
  color: #fff;
  background: #4f46e5;
}
.enb-total-dock__btn:hover{ filter: brightness(.95); }

/* ✅ Mobil: alt barı kapatmasın diye yukarı taşı */
@media (max-width: 640px){
  body.enb-has-dock{
    padding-bottom: 140px; /* mobilde daha fazla */
  }

  .enb-total-dock{
    left: 12px;
    right: 12px;

    /* 🔥 asıl çözüm: bottom'u yükseltiyoruz */
    bottom: calc(78px + env(safe-area-inset-bottom, 0px));

    width: auto;
  }

  .enb-total-dock__inner{
    border-radius: 16px;
    padding: 12px 12px;
  }

  .enb-total-dock__sub{ max-width: 180px; }
}
/* =========================
   HERO CTA MOTION
========================= */
@keyframes enbCtaFloat {
  0%   { transform: translateY(0);   box-shadow: 0 10px 24px rgba(2,6,23,.18); }
  50%  { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(2,6,23,.22); }
  100% { transform: translateY(0);   box-shadow: 0 10px 24px rgba(2,6,23,.18); }
}

@keyframes enbCtaPulseRing {
  0%   { box-shadow: 0 0 0 0 rgba(79,70,229,.22); }
  70%  { box-shadow: 0 0 0 12px rgba(79,70,229,0); }
  100% { box-shadow: 0 0 0 0 rgba(79,70,229,0); }
}

.hero-cta{
  animation: enbCtaFloat 2.6s ease-in-out infinite, enbCtaPulseRing 2.8s ease-out infinite;
  will-change: transform;
}

.hero-cta:hover{
  animation: none;
  transform: translateY(-2px);
}

