:root {
  --bg:#f6f7fb;
  --card:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#e5e7eb;
  --primary:#111827;
  --accent:#f59e0b;
}
*{box-sizing:border-box}
body{margin:0;font-family:Arial,Helvetica,sans-serif;background:var(--bg);color:var(--text)}
a{text-decoration:none;color:inherit}
img{max-width:100%}
.container{width:min(1180px,94%);margin:0 auto}
.topbar{position:sticky;top:0;z-index:20;background:#fff;border-bottom:1px solid var(--line)}
.topbar-inner{display:grid;grid-template-columns:60px 1fr 60px;align-items:center;height:72px}
.icon-btn{width:42px;height:42px;border:none;border-radius:12px;background:#f3f4f6;display:flex;align-items:center;justify-content:center;cursor:pointer;font-size:20px}
.logo{text-align:center;font-size:28px;font-weight:800;letter-spacing:.5px}
.logo span{color:var(--accent)}
.lang-menu,.side-menu{position:fixed;top:72px;background:#fff;border:1px solid var(--line);border-radius:16px;box-shadow:0 20px 40px rgba(0,0,0,.08);padding:10px;display:none;z-index:30}
.lang-menu{right:3%;width:180px}
.side-menu{left:3%;width:240px}
.lang-menu.active,.side-menu.active{display:block}
.lang-menu a,.side-menu a{display:flex;align-items:center;gap:6px;padding:12px 14px;border-radius:12px;color:#111827}.lang-menu a{justify-content:space-between}.side-menu a{justify-content:flex-start}.menu-icon{display:inline-flex;align-items:center;justify-content:center;width:20px;flex:0 0 20px}
.lang-menu a:hover,.side-menu a:hover{background:#f9fafb}
.hero{padding:28px 0 16px}
.slider{position:relative;border-radius:24px;overflow:hidden;background:#ddd;box-shadow:0 20px 45px rgba(0,0,0,.08)}
.slide{display:none;min-height:420px;background-size:cover;background-position:center;position:relative}
.slide.active{display:block}
.slide::after{content:'';position:absolute;inset:0;background:linear-gradient(90deg,rgba(17,24,39,.72),rgba(17,24,39,.22))}
.slide-content{position:absolute;z-index:2;left:40px;bottom:40px;color:#fff;max-width:480px}
.slide h2{margin:0 0 10px;font-size:42px;line-height:1.1}
.slide p{margin:0;font-size:18px;opacity:.95}
.slider-dots{display:flex;gap:8px;justify-content:center;margin-top:14px}
.dot{width:10px;height:10px;border-radius:999px;background:#d1d5db;cursor:pointer}.dot.active{background:#111827}
.grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px;margin:26px 0 40px}
.card{background:var(--card);border:1px solid var(--line);border-radius:20px;padding:20px;box-shadow:0 8px 20px rgba(0,0,0,.04)}
.card h3{margin-top:0}
.badge{display:inline-block;padding:8px 12px;background:#f3f4f6;border-radius:999px;color:#374151;font-size:13px}
.list{display:grid;gap:16px}
.menu-item{display:grid;grid-template-columns:110px 1fr auto;gap:16px;align-items:center;padding:14px;border:1px solid var(--line);border-radius:18px;background:#fff}
.menu-item img{width:110px;height:88px;object-fit:cover;border-radius:14px}
.price{font-weight:800;font-size:20px}
.btn{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;background:#111827;color:#fff;border:none;border-radius:12px;cursor:pointer}
.footer{padding:30px 0;color:var(--muted);text-align:center}
.table{width:100%;border-collapse:collapse;background:#fff;border-radius:16px;overflow:hidden}
.table th,.table td{padding:12px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
.admin-layout{display:grid;grid-template-columns:270px 1fr;min-height:100vh}
.admin-sidebar{background:#111827;color:#fff;padding:24px;position:sticky;top:0;height:100vh}
.admin-sidebar a{display:block;color:#e5e7eb;padding:12px 14px;border-radius:12px;margin-bottom:8px}
.admin-sidebar a:hover,.admin-sidebar a.active{background:#1f2937;color:#fff}
.admin-main{padding:28px}
.form-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:16px}.form-group{display:grid;gap:8px}.form-group.full{grid-column:1/-1}
.input,.textarea,.select{width:100%;padding:12px 14px;border:1px solid #d1d5db;border-radius:12px;background:#fff}.textarea{min-height:110px;resize:vertical}
.alert{padding:14px 16px;border-radius:14px;margin-bottom:18px}.alert-success{background:#ecfdf5;color:#065f46}.alert-error{background:#fef2f2;color:#991b1b}
.login-wrap{min-height:100vh;display:grid;place-items:center;padding:24px}.login-box{width:min(440px,100%);background:#fff;border:1px solid var(--line);padding:28px;border-radius:22px;box-shadow:0 20px 40px rgba(0,0,0,.06)}
@media (max-width:900px){.grid{grid-template-columns:1fr}.menu-item{grid-template-columns:1fr}.admin-layout{grid-template-columns:1fr}.admin-sidebar{position:relative;height:auto}.form-grid{grid-template-columns:1fr}.slide{min-height:320px}.slide h2{font-size:32px}}

.side-menu a span{margin-left:0;padding-left:0}




.quick-menu{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin:30px 0;
}
.quick-card{
    background:#f9fafb;
    border-radius:18px;
    padding:24px 20px;
    text-align:center;
    border-bottom:4px solid #f59e0b;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:12px;
    font-weight:600;
    transition:0.2s;
    min-height:150px;
}
.quick-card:hover{
    transform:translateY(-4px);
}
.quick-card .icon{
    font-size:42px;
    color:#f59e0b;
    line-height:1;
}
@media (max-width: 768px){
    .quick-menu{
        grid-template-columns:repeat(2,1fr);
    }
    .quick-card{
        min-height:130px;
        padding:20px 14px;
    }
    .quick-card .icon{
        font-size:36px;
    }
}



.cart-badge{display:inline-flex;align-items:center;justify-content:center;min-width:22px;height:22px;padding:0 6px;border-radius:999px;background:#111827;color:#fff;font-size:12px;font-weight:700;margin-left:auto}
.qty-input{width:68px;padding:10px 12px;border:1px solid #d1d5db;border-radius:12px;background:#fff}
.checkout-grid{display:grid;grid-template-columns:1.15fr .85fr;gap:18px;margin:20px 0 30px}
.cart-row{display:flex;justify-content:space-between;gap:16px;padding:14px;border:1px solid var(--line);border-radius:18px;background:#fff;align-items:center}
.cart-row-info{display:flex;align-items:center;gap:14px}
.cart-row-info img{width:72px;height:72px;object-fit:cover;border-radius:14px}
.cart-row-actions{display:flex;align-items:center;gap:12px;flex-wrap:wrap;justify-content:flex-end}
.order-total-box{display:flex;justify-content:space-between;align-items:center;padding:16px 18px;border-radius:16px;background:#f9fafb;border:1px solid var(--line)}
.btn-danger{background:#dc2626}
.order-item-list{display:grid;gap:6px;min-width:220px}
@media (max-width:900px){.checkout-grid{grid-template-columns:1fr}.cart-row{flex-direction:column;align-items:flex-start}.cart-row-actions{justify-content:flex-start}}


.review-layout{display:grid;grid-template-columns:420px 1fr;gap:18px;margin:0 0 28px}
.review-public-card{padding:16px;border:1px solid var(--line);border-radius:16px;background:#fff}
.review-rating{display:inline-flex;align-items:center;justify-content:center;padding:6px 10px;border-radius:999px;background:#111827;color:#fff;font-size:13px;font-weight:700}
@media (max-width:900px){
  .review-layout{grid-template-columns:1fr}
}


.product-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:10px;
}
.product-meta span{
  display:inline-flex;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  background:#f3f4f6;
  color:#374151;
  font-size:13px;
}
@media (max-width:900px){
  .product-meta{
    gap:8px;
  }
  .product-meta span{
    font-size:12px;
  }
}


/* Görüşler sayfası boşluk */
.review-layout{
    margin-top:40px !important;
}


.allergy-badge{
  background:#fff7ed !important;
  color:#9a3412 !important;
  border:1px solid #fdba74;
}










.menu-categories-bar{
  margin-top: 16px;

  display:flex;
  flex-wrap:nowrap;
  gap:10px;
  overflow-x:auto;
  overflow-y:hidden;
  white-space:nowrap;
  padding:2px 0 10px 0;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}

.menu-categories-bar::-webkit-scrollbar{
  height:6px;
}

.menu-categories-bar::-webkit-scrollbar-thumb{
  background:#d1d5db;
  border-radius:999px;
}

.menu-categories-bar::-webkit-scrollbar-track{
  background:transparent;
}

.menu-category-link{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:999px;
  background:#111827;
  color:#fff;
  text-decoration:none;
  font-weight:600;
  white-space:nowrap;
}




.product-img{
  width:100%;
  height:220px;
  overflow:hidden;
  border-radius:12px;
  background:#111;
  display:flex;
  align-items:center;
  justify-content:center;
}

.product-img img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:10px;
}

/* Admin panelinden yüklenen logo için */
.logo {
  text-decoration: none;
}
.site-logo-img {
  max-height: 54px;
  max-width: 220px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}

/* Ürün görselleri: koddan şeffaf arka plan + yatay/orantılı gösterim */
.menu-item{
  grid-template-columns:240px 1fr auto !important;
}
.product-img{
  width:100% !important;
  height:150px !important;
  aspect-ratio:16/9;
  overflow:hidden;
  border-radius:14px;
  background:transparent !important;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-img img,
.menu-item .product-img img{
  width:100% !important;
  height:100% !important;
  object-fit:contain !important;
  object-position:center !important;
  padding:0 !important;
  background:transparent !important;
  display:block;
}
.cart-row-info img{
  width:96px !important;
  height:64px !important;
  object-fit:contain !important;
  object-position:center !important;
  background:transparent !important;
}
@media (max-width:900px){
  .menu-item{grid-template-columns:1fr !important;}
  .product-img{height:190px !important;}
}


/* Ana sayfa harita alanı */
.home-map-section{margin:28px 0 40px;}
.home-map-section h2{margin:0 0 14px;font-size:24px;}
.home-map-box{width:100%;min-height:320px;overflow:hidden;border-radius:18px;background:#f3f4f6;border:1px solid var(--line);}
.home-map-box iframe{width:100% !important;height:360px !important;display:block;border:0 !important;}
@media (max-width:768px){.home-map-box iframe{height:300px !important;}}

/* İletişim sayfası */
.contact-page{margin:28px 0;}
.contact-page h1{margin:0 0 12px;font-size:30px;}
.contact-desc{color:var(--muted);line-height:1.6;margin:0 0 20px;}
.contact-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:14px;margin-top:18px;}
.contact-box{display:flex;flex-direction:column;gap:8px;padding:16px;border:1px solid var(--line);border-radius:16px;background:#f9fafb;}
.contact-box strong,.contact-address strong{font-size:14px;color:#111827;}
.contact-box span{color:#374151;line-height:1.5;word-break:break-word;}
.contact-address{margin-top:16px;padding:16px;border:1px solid var(--line);border-radius:16px;background:#fff;}
.contact-address p{margin:8px 0 0;color:#374151;line-height:1.6;}
@media (max-width:768px){.contact-grid{grid-template-columns:1fr}.contact-page h1{font-size:26px}}

.home-social-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px;margin:28px 0 40px;align-items:start}
.home-social-card{min-height:220px;overflow:hidden}
.home-social-head{display:flex;align-items:flex-start;justify-content:space-between;gap:16px;margin-bottom:14px}
.home-social-head h2{margin:4px 0 0;font-size:24px}
.home-social-kicker{display:inline-block;font-size:13px;color:var(--muted);font-weight:700;text-transform:uppercase;letter-spacing:.04em}
.home-embed-box{width:100%;overflow:hidden;border:1px solid var(--line);border-radius:18px;background:#fff;min-height:180px;padding:10px}
.home-embed-box iframe{max-width:100% !important;width:100% !important;border:0 !important;border-radius:14px}
.home-embed-box blockquote{max-width:100% !important;min-width:0 !important;margin:0 auto !important}
.instagram-card{background:linear-gradient(180deg,#fff,#fff7fb)}
.google-review-card{background:linear-gradient(180deg,#fff,#f8fbff)}
.muted-text{color:var(--muted);margin:0;line-height:1.6}
@media (max-width:900px){.home-social-grid{grid-template-columns:1fr}.home-social-head{flex-direction:column}.home-social-head .btn{width:100%;justify-content:center}}

/* === FINAL FIX: HEADER + KATEGORI SABIT === */
html{
  scroll-behavior:smooth;
}
body{
  padding-top:72px !important;
}

/* Gerçek header sınıfı */
.topbar{
  position:fixed !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;
  width:100% !important;
  z-index:10000 !important;
  background:#ffffff !important;
  border-bottom:1px solid var(--line) !important;
}
.topbar-inner{
  height:72px !important;
}

/* Açılır menüler header altında kalsın */
.lang-menu,
.side-menu{
  position:fixed !important;
  top:72px !important;
  z-index:10001 !important;
}

/* Menü kategorileri header altında yapışsın, beyaz zemin olmasın */
.menu-categories-bar,
#menuCategoriesBar{
  position:sticky !important;
  position:-webkit-sticky !important;
  top:72px !important;
  z-index:9999 !important;
  display:flex !important;
  flex-wrap:nowrap !important;
  visibility:visible !important;
  opacity:1 !important;
  transform:none !important;
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
  margin-top:16px !important;
  padding:8px 0 10px 0 !important;
}
.menu-categories-bar::before,
.menu-categories-bar::after,
#menuCategoriesBar::before,
#menuCategoriesBar::after{
  content:none !important;
  display:none !important;
  background:transparent !important;
}
.menu-categories-bar .container,
#menuCategoriesBar .container,
.menu-categories-bar .wrapper,
#menuCategoriesBar .wrapper{
  background:transparent !important;
  box-shadow:none !important;
  border:0 !important;
}

/* Kategori linklerine tıklayınca başlık header altında kaybolmasın */
section[id^="cat-"]{
  scroll-margin-top:150px !important;
}

@media (max-width:768px){
  body{ padding-top:72px !important; }
  .menu-categories-bar,
  #menuCategoriesBar{ top:72px !important; }
  section[id^="cat-"]{ scroll-margin-top:150px !important; }
}
/* === /FINAL FIX === */

/* WHATSAPP SIPARIS BUTONU */
.whatsapp-order-btn{
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  gap:6px !important;
  margin-top:8px !important;
  width:100% !important;
  padding:10px 12px !important;
  border-radius:10px !important;
  background:#25D366 !important;
  color:#ffffff !important;
  text-decoration:none !important;
  font-weight:700 !important;
  font-size:14px !important;
  border:0 !important;
  box-shadow:0 6px 16px rgba(37,211,102,.25) !important;
}
.whatsapp-order-btn:hover{
  background:#1ebe5d !important;
  color:#ffffff !important;
}
@media (max-width:768px){
  .whatsapp-order-btn{
    width:100% !important;
  }
}


/* POPULER URUNLER - ANA SAYFA */
.popular-products-section{
  margin:28px 0 34px;
}
.section-title-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:16px;
}
.section-title-row h2{
  margin:0;
  font-size:28px;
}
.section-title-row p{
  margin:6px 0 0;
  color:var(--muted);
}
.section-link{
  color:#fff;
  background:var(--primary);
  padding:10px 14px;
  border-radius:12px;
  font-weight:700;
  white-space:nowrap;
}
.popular-products-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
.popular-product-card{
  display:block;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 8px 20px rgba(0,0,0,.04);
  transition:transform .18s ease, box-shadow .18s ease;
}
.popular-product-card:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,.08);
}
.popular-product-img{
  height:150px;
  background:#f3f4f6;
  overflow:hidden;
}
.popular-product-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.popular-product-body{
  padding:14px;
}
.popular-product-body h3{
  margin:0 0 8px;
  font-size:17px;
}
.popular-product-body p{
  margin:0 0 10px;
  min-height:38px;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.popular-product-body strong{
  font-size:18px;
  color:var(--primary);
}
@media (max-width:900px){
  .popular-products-grid{grid-template-columns:repeat(2,1fr);}
}
@media (max-width:560px){
  .section-title-row{align-items:flex-start;flex-direction:column;}
  .popular-products-grid{grid-template-columns:1fr;}
}

.trial-sidebar{margin:0 0 14px;padding:12px;border-radius:12px;background:#ecfdf5;color:#166534;display:flex;flex-direction:column;gap:4px;font-size:13px}.trial-sidebar.expired{background:#fef2f2;color:#991b1b}.upgrade-link{background:#f59e0b!important;color:#111827!important;font-weight:800}.trial-banner,.expiry-banner{padding:14px 16px;border-radius:12px;margin-bottom:18px}.trial-banner{background:#eff6ff;color:#1e40af;border:1px solid #bfdbfe}.expiry-banner{background:#fef2f2;color:#991b1b;border:1px solid #fecaca}.trial-banner a,.expiry-banner a{font-weight:800;text-decoration:underline}.subscription-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px}.subscription-card,.bank-card{padding:26px}.status-badge{display:inline-block;padding:8px 12px;border-radius:999px;background:#dcfce7;color:#166534;font-weight:800;font-size:13px}.status-badge.expired{background:#fee2e2;color:#991b1b}.bank-card{background:linear-gradient(145deg,#111827,#1f2937);color:#fff}.bank-icon{width:48px;height:48px;border-radius:14px;background:#f59e0b;color:#111827;display:grid;place-items:center;font-size:25px;font-weight:900}.bank-row{display:flex;flex-direction:column;gap:6px;padding:14px 0;border-bottom:1px solid rgba(255,255,255,.15)}.bank-row span{font-size:13px;color:#cbd5e1}.bank-row strong{font-size:17px;word-break:break-word}.copy-iban{margin-top:18px;width:100%;padding:13px;border:0;border-radius:10px;background:#f59e0b;color:#111827;font-weight:900;cursor:pointer}.bank-note{color:#cbd5e1;font-size:13px}@media(max-width:800px){.subscription-grid{grid-template-columns:1fr}}

/* Admin menü düzeni ve Site Ayarları alt menüsü */
.admin-settings-menu{margin:0 0 8px;border-radius:12px;overflow:hidden}
.admin-settings-menu summary{display:flex;align-items:center;justify-content:space-between;cursor:pointer;list-style:none;color:#e5e7eb;padding:12px 14px;border-radius:12px;font-weight:600;transition:.2s ease}
.admin-settings-menu summary::-webkit-details-marker{display:none}
.admin-settings-menu summary::after{content:"▾";font-size:13px;transition:transform .2s ease}
.admin-settings-menu[open] summary::after{transform:rotate(180deg)}
.admin-settings-menu summary:hover,.admin-settings-menu[open] summary{background:#1f2937;color:#fff}
.admin-settings-submenu{padding:6px 0 2px 12px}
.admin-settings-submenu a{font-size:14px;padding:10px 12px;margin-bottom:5px;border-left:2px solid #374151;border-radius:8px}
.admin-settings-submenu a:hover,.admin-settings-submenu a.active{border-left-color:#8b5cf6;background:#1f2937}

/* ===== Modern Admin UI - Register tasarım dili ===== */
.admin-body{--admin-primary:#4f46e5;--admin-primary-dark:#3730a3;--admin-secondary:#7c3aed;--admin-bg:#f5f7ff;--admin-text:#172033;--admin-muted:#718096;--admin-line:#e7eaf3;--admin-card:#fff;background:radial-gradient(circle at 100% 0,rgba(124,58,237,.09),transparent 30%),var(--admin-bg);color:var(--admin-text);font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif}
.admin-body .admin-layout{display:grid;grid-template-columns:286px minmax(0,1fr);min-height:100vh}
.admin-body .admin-sidebar{position:sticky;top:0;height:100vh;padding:20px 16px 18px;overflow-y:auto;background:linear-gradient(165deg,#172554 0%,#312e81 48%,#6d28d9 100%);color:#fff;box-shadow:20px 0 50px rgba(49,46,129,.15);z-index:100}
.admin-brand{display:flex;align-items:center;gap:12px;padding:3px 5px 16px;border-bottom:1px solid rgba(255,255,255,.12)}
.admin-brand-mark{width:42px;height:42px;display:grid;place-items:center;border-radius:14px;background:linear-gradient(135deg,#fff,#ddd6fe);color:#4c1d95;font-size:21px;font-weight:900;box-shadow:0 10px 22px rgba(0,0,0,.18)}
.admin-brand strong{display:block;font-size:15px;max-width:160px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}.admin-brand span{display:block;margin-top:3px;font-size:11px;color:rgba(255,255,255,.68);letter-spacing:.04em;text-transform:uppercase}.sidebar-close{display:none;margin-left:auto;border:0;background:rgba(255,255,255,.12);color:#fff;width:34px;height:34px;border-radius:10px;font-size:23px;cursor:pointer}
.admin-support-box{margin:12px 2px 10px;padding:9px 12px;border:1px solid rgba(255,255,255,.12);border-radius:12px;background:rgba(255,255,255,.07);font-size:11px;line-height:1.5;color:rgba(255,255,255,.78)}.admin-support-box span,.admin-support-box a{display:block}.admin-support-box a{color:#fff;font-weight:750}
.admin-body .trial-sidebar{display:flex;align-items:center;gap:10px;margin:0 2px 12px;padding:11px 12px;border:1px solid rgba(255,255,255,.14);border-radius:14px;background:rgba(255,255,255,.1);color:#fff}.trial-sidebar-icon{width:32px;height:32px;display:grid;place-items:center;flex:0 0 32px;border-radius:10px;background:#fbbf24;color:#422006;font-weight:900}.admin-body .trial-sidebar strong,.admin-body .trial-sidebar span{display:block}.admin-body .trial-sidebar strong{font-size:12px}.admin-body .trial-sidebar span{margin-top:2px;font-size:11px;color:rgba(255,255,255,.7)}.admin-body .trial-sidebar.expired .trial-sidebar-icon{background:#fca5a5;color:#7f1d1d}.admin-body .trial-sidebar.paid .trial-sidebar-icon{background:#86efac;color:#14532d}
.admin-nav{display:grid;gap:3px}.admin-body .admin-sidebar a,.admin-settings-menu summary{display:flex;align-items:center;gap:11px;margin:0;padding:10px 12px;border-radius:12px;color:rgba(255,255,255,.78);font-size:13px;font-weight:650;transition:.18s ease;cursor:pointer}.admin-body .admin-sidebar a:hover,.admin-body .admin-sidebar a.active,.admin-settings-menu summary:hover,.admin-settings-menu[open]>summary{background:rgba(255,255,255,.13);color:#fff;transform:translateX(2px)}.admin-body .admin-sidebar a.active{background:#fff;color:#4338ca;box-shadow:0 8px 20px rgba(17,24,39,.16)}.nav-icon{width:24px;height:24px;display:grid;place-items:center;flex:0 0 24px;border-radius:8px;background:rgba(255,255,255,.1);font-size:14px}.admin-body .admin-sidebar a.active .nav-icon{background:#eef2ff;color:#4f46e5}.admin-settings-menu{margin:0}.admin-settings-menu summary{list-style:none}.admin-settings-menu summary::-webkit-details-marker{display:none}.menu-chevron{margin-left:auto;transition:.2s}.admin-settings-menu[open] .menu-chevron{transform:rotate(180deg)}.admin-settings-submenu{display:grid;gap:2px;padding:4px 0 4px 35px}.admin-body .admin-settings-submenu a{padding:8px 10px;font-size:12px}
.admin-sidebar-footer{display:grid;gap:5px;margin-top:13px;padding-top:13px;border-top:1px solid rgba(255,255,255,.12)}.admin-body .admin-sidebar .upgrade-link{background:linear-gradient(135deg,#fbbf24,#f59e0b)!important;color:#422006!important;font-weight:850;box-shadow:0 9px 20px rgba(245,158,11,.2)}.admin-body .admin-sidebar .logout-link{color:#fecaca}
.admin-body .admin-main{min-width:0;padding:0}.admin-topbar{height:86px;display:flex;align-items:center;gap:16px;padding:0 30px;background:rgba(255,255,255,.86);backdrop-filter:blur(16px);border-bottom:1px solid rgba(226,232,240,.85);position:sticky;top:0;z-index:80}.admin-topbar h1{margin:2px 0 0;font-size:22px;line-height:1.15;color:#172033}.admin-breadcrumb{font-size:11px;font-weight:750;color:#7c3aed;text-transform:uppercase;letter-spacing:.08em}.sidebar-toggle{display:none;width:42px;height:42px;border:1px solid var(--admin-line);border-radius:13px;background:#fff;color:#4338ca;font-size:20px;cursor:pointer}.admin-view-site{margin-left:auto;display:inline-flex;align-items:center;gap:8px;padding:11px 15px;border-radius:12px;background:linear-gradient(135deg,var(--admin-primary),var(--admin-secondary));color:#fff;font-size:13px;font-weight:750;box-shadow:0 10px 22px rgba(79,70,229,.22)}
.admin-content{padding:26px 30px 44px;max-width:1600px;margin:0 auto}.admin-body .card,.admin-body .login-box,.admin-body .subscription-card,.admin-body .bank-card{border:1px solid rgba(226,232,240,.88);border-radius:20px;box-shadow:0 12px 35px rgba(51,65,85,.07)}.admin-body .card{padding:22px}.admin-body .card h2,.admin-body .card h3{color:#172033}.admin-body .table{border:1px solid var(--admin-line);border-radius:16px;box-shadow:none}.admin-body .table th{background:#f8f9ff;color:#64748b;font-size:11px;text-transform:uppercase;letter-spacing:.04em}.admin-body .table th,.admin-body .table td{padding:13px 14px}.admin-body .table tr:last-child td{border-bottom:0}.admin-body .table tbody tr:hover{background:#fafaff}.admin-body .input,.admin-body .textarea,.admin-body .select{border:1px solid #dfe3ef;border-radius:12px;padding:12px 14px;box-shadow:0 1px 2px rgba(15,23,42,.02);transition:.18s}.admin-body .input:focus,.admin-body .textarea:focus,.admin-body .select:focus{outline:0;border-color:#7c3aed;box-shadow:0 0 0 4px rgba(124,58,237,.1)}.admin-body .btn{border-radius:12px;padding:11px 15px;background:linear-gradient(135deg,var(--admin-primary),var(--admin-secondary));box-shadow:0 8px 18px rgba(79,70,229,.17);font-weight:750}.admin-body .btn-danger{background:linear-gradient(135deg,#dc2626,#ef4444)}
.admin-body .trial-banner,.admin-body .expiry-banner{display:flex;align-items:center;gap:10px;padding:13px 15px;border-radius:15px;margin-bottom:20px}.admin-body .trial-banner{background:#eef2ff;color:#3730a3;border:1px solid #d8ddff}.admin-body .expiry-banner{background:#fff1f2;color:#9f1239;border:1px solid #fecdd3}.admin-body .trial-banner span,.admin-body .expiry-banner span{color:inherit;opacity:.82}.admin-body .trial-banner a,.admin-body .expiry-banner a{margin-left:auto;padding:8px 11px;border-radius:9px;background:#fff;text-decoration:none;white-space:nowrap;box-shadow:0 4px 12px rgba(15,23,42,.06)}.waiter-alert-box{display:none;position:fixed;right:22px;top:105px;z-index:99999;background:linear-gradient(135deg,#312e81,#7c3aed);color:#fff;padding:14px 18px;border-radius:14px;box-shadow:0 15px 35px rgba(49,46,129,.28);font-weight:750}.sidebar-overlay{display:none}
@media(max-width:980px){.admin-body .admin-layout{grid-template-columns:1fr}.admin-body .admin-sidebar{position:fixed;left:0;top:0;width:min(300px,88vw);transform:translateX(-105%);transition:transform .25s ease}.admin-body.sidebar-open .admin-sidebar{transform:translateX(0)}.admin-body.sidebar-open .sidebar-overlay{display:block;position:fixed;inset:0;background:rgba(15,23,42,.48);backdrop-filter:blur(2px);z-index:90}.sidebar-close,.sidebar-toggle{display:grid;place-items:center}.admin-topbar{padding:0 18px;height:76px}.admin-content{padding:20px 16px 35px}.admin-view-site{padding:10px 12px;font-size:12px}.admin-topbar h1{font-size:19px}}
@media(max-width:600px){.admin-view-site{font-size:0}.admin-view-site span{font-size:17px}.admin-body .trial-banner,.admin-body .expiry-banner{align-items:flex-start;flex-wrap:wrap}.admin-body .trial-banner a,.admin-body .expiry-banner a{margin-left:0}.admin-content{padding-left:12px;padding-right:12px}.admin-body .card{padding:16px;border-radius:17px}.admin-body .table{display:block;overflow-x:auto;white-space:nowrap}}

/* === ADMIN TOP SPACE FIX 20260712 === */
html:has(body.admin-body),
body.admin-body{
  margin:0 !important;
  padding:0 !important;
  min-height:100% !important;
}
body.admin-body .admin-layout{
  margin:0 !important;
  padding:0 !important;
  min-height:100vh !important;
}
body.admin-body .admin-sidebar{
  top:0 !important;
}
body.admin-body .admin-main{
  margin:0 !important;
  padding-top:0 !important;
}
body.admin-body .admin-topbar{
  margin-top:0 !important;
  top:0 !important;
}
@media (max-width:768px){
  body.admin-body{padding-top:0 !important;}
}
/* === /ADMIN TOP SPACE FIX === */

/* === QR MENU SITE MODERN DESIGN 20260712 === */
body:not(.admin-body){
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,"Segoe UI",sans-serif;
  background:
    radial-gradient(circle at 100% 0,rgba(124,58,237,.08),transparent 34%),
    radial-gradient(circle at 0 28%,rgba(245,158,11,.07),transparent 30%),
    var(--bg);
  color:var(--text);
  min-height:100vh;
}
body:not(.admin-body) .container{width:min(1180px,calc(100% - 32px))}
body:not(.admin-body) .topbar{
  background:rgba(255,255,255,.88)!important;
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  border-bottom:1px solid rgba(226,232,240,.85);
  box-shadow:0 8px 30px rgba(15,23,42,.045);
}
body:not(.admin-body) .topbar-inner{height:76px}
body:not(.admin-body) .icon-btn{
  width:44px;height:44px;border-radius:15px;
  color:var(--primary);background:rgba(248,250,252,.95);
  border:1px solid rgba(226,232,240,.95);
  box-shadow:0 6px 18px rgba(15,23,42,.06);
  transition:.2s ease;
}
body:not(.admin-body) .icon-btn:hover{transform:translateY(-2px);box-shadow:0 10px 22px rgba(15,23,42,.1)}
body:not(.admin-body) .logo{font-size:27px;letter-spacing:-.6px}
body:not(.admin-body) .site-logo-img{max-height:50px;max-width:210px;object-fit:contain}
body:not(.admin-body) .side-menu,
body:not(.admin-body) .lang-menu{
  top:84px!important;border:1px solid rgba(226,232,240,.9);border-radius:20px;
  box-shadow:0 24px 60px rgba(15,23,42,.16);padding:10px;
}
body:not(.admin-body) .side-menu a,
body:not(.admin-body) .lang-menu a{border-radius:13px;font-weight:700;transition:.18s ease}
body:not(.admin-body) .side-menu a:hover,
body:not(.admin-body) .lang-menu a:hover{background:#f3f4ff;color:#4f46e5;transform:translateX(2px)}
body:not(.admin-body) main.container{padding-top:18px;padding-bottom:18px}
body:not(.admin-body) .hero{padding:18px 0 10px}
body:not(.admin-body) .slider{
  border-radius:28px;border:1px solid rgba(255,255,255,.8);
  box-shadow:0 24px 60px rgba(15,23,42,.13);
}
body:not(.admin-body) .slide{min-height:430px}
body:not(.admin-body) .slide::after{background:linear-gradient(90deg,rgba(15,23,42,.82),rgba(15,23,42,.12) 75%)}
body:not(.admin-body) .slide-content{left:44px;bottom:44px;max-width:560px}
body:not(.admin-body) .slide h2{font-size:46px;letter-spacing:-1.2px;text-shadow:0 3px 20px rgba(0,0,0,.25)}
body:not(.admin-body) .slide p{font-size:18px;line-height:1.6}
body:not(.admin-body) .dot{width:9px;height:9px;transition:.2s ease}
body:not(.admin-body) .dot.active{width:28px;background:var(--accent)}
body:not(.admin-body) .card{
  border:1px solid rgba(226,232,240,.9);border-radius:22px;
  box-shadow:0 14px 38px rgba(15,23,42,.065);padding:22px;
  background:rgba(255,255,255,.94);
}
body:not(.admin-body) .quick-menu{gap:18px;margin:28px 0 36px}
body:not(.admin-body) .quick-card{
  min-height:154px;padding:24px 18px;border:1px solid rgba(226,232,240,.9);
  border-bottom:0;border-radius:22px;background:rgba(255,255,255,.94);
  box-shadow:0 12px 32px rgba(15,23,42,.06);position:relative;overflow:hidden;
}
body:not(.admin-body) .quick-card::before{content:"";position:absolute;left:0;right:0;bottom:0;height:4px;background:linear-gradient(90deg,var(--accent),var(--primary))}
body:not(.admin-body) .quick-card:hover{transform:translateY(-6px);box-shadow:0 20px 42px rgba(15,23,42,.11)}
body:not(.admin-body) .quick-card .icon{width:58px;height:58px;display:grid;place-items:center;border-radius:18px;background:linear-gradient(145deg,#fff7ed,#fffbeb);font-size:30px;box-shadow:inset 0 0 0 1px rgba(245,158,11,.15)}
body:not(.admin-body) .section-title-row h2{font-size:30px;letter-spacing:-.6px}
body:not(.admin-body) .section-link,
body:not(.admin-body) .btn{
  border-radius:14px;padding:11px 16px;font-weight:800;
  box-shadow:0 9px 20px rgba(15,23,42,.13);transition:.18s ease;
}
body:not(.admin-body) .section-link:hover,
body:not(.admin-body) .btn:hover{transform:translateY(-2px);filter:brightness(1.06)}
body:not(.admin-body) .popular-products-grid{gap:18px}
body:not(.admin-body) .popular-product-card{
  border-radius:22px;border:1px solid rgba(226,232,240,.9);
  box-shadow:0 12px 30px rgba(15,23,42,.065);background:rgba(255,255,255,.96)
}
body:not(.admin-body) .popular-product-img{height:180px}
body:not(.admin-body) .popular-product-body{padding:17px}
body:not(.admin-body) .popular-product-body h3{font-size:18px}
body:not(.admin-body) .input,
body:not(.admin-body) .textarea,
body:not(.admin-body) .select,
body:not(.admin-body) .qty-input,
body:not(.admin-body) .category-search,
body:not(.admin-body) .category-select{
  border:1px solid #dfe3ec;border-radius:14px;background:#fff;
  box-shadow:0 4px 14px rgba(15,23,42,.035);transition:.18s ease;
}
body:not(.admin-body) .input:focus,
body:not(.admin-body) .textarea:focus,
body:not(.admin-body) .select:focus,
body:not(.admin-body) .qty-input:focus,
body:not(.admin-body) .category-search:focus,
body:not(.admin-body) .category-select:focus{outline:0;border-color:var(--accent);box-shadow:0 0 0 4px color-mix(in srgb,var(--accent) 16%,transparent)}
body:not(.admin-body) .alert{border-radius:16px;box-shadow:0 8px 22px rgba(15,23,42,.05)}
body:not(.admin-body) .cart-row,
body:not(.admin-body) .review-public-card{
  border-radius:19px;border:1px solid rgba(226,232,240,.9);
  box-shadow:0 10px 28px rgba(15,23,42,.05)
}
body:not(.admin-body) .order-total-box{border-radius:17px;background:linear-gradient(145deg,#f8fafc,#fff)}
body:not(.admin-body) .contact-box{border-radius:18px}
body:not(.admin-body) .home-map-box{border-radius:20px;overflow:hidden}
body:not(.admin-body) .footer{padding:28px 0 34px;font-size:13px}
body:not(.admin-body) .footer .container{padding:18px;border-top:1px solid rgba(226,232,240,.85)}
/* Menü sayfası */
body:not(.admin-body) .category-page{padding-top:10px!important}
body:not(.admin-body) .category-page-title,
body:not(.admin-body) .product-category-title{font-size:30px!important;letter-spacing:-.6px}
body:not(.admin-body) .category-filterbar{padding:16px;background:rgba(255,255,255,.88);border:1px solid rgba(226,232,240,.9);border-radius:20px;box-shadow:0 12px 32px rgba(15,23,42,.05)}
body:not(.admin-body) .category-grid{gap:20px!important}
body:not(.admin-body) .category-card{
  border-radius:24px!important;border:1px solid rgba(226,232,240,.9)!important;
  box-shadow:0 14px 34px rgba(15,23,42,.075)!important;background:rgba(255,255,255,.96)!important;
}
body:not(.admin-body) .category-card:hover{transform:translateY(-7px)!important;box-shadow:0 24px 45px rgba(15,23,42,.13)!important}
body:not(.admin-body) .category-card-image{height:210px!important}
body:not(.admin-body) .category-card-image::before{content:"";position:absolute;inset:0;z-index:1;background:linear-gradient(180deg,transparent 58%,rgba(15,23,42,.3))}
body:not(.admin-body) .category-count{z-index:3!important;padding:7px 11px!important;backdrop-filter:blur(10px)}
body:not(.admin-body) .category-card-body{padding:18px 14px!important}
body:not(.admin-body) .category-card-title{font-size:19px!important;letter-spacing:-.2px}
body:not(.admin-body) .product-back-button{border-radius:15px!important;box-shadow:0 7px 18px rgba(15,23,42,.07)}
body:not(.admin-body) .product-card-modern{
  border-radius:22px!important;border:1px solid rgba(226,232,240,.92)!important;
  box-shadow:0 14px 34px rgba(15,23,42,.065)!important;transition:.2s ease;
}
body:not(.admin-body) .product-card-modern:hover{transform:translateY(-4px);box-shadow:0 22px 42px rgba(15,23,42,.11)!important}
body:not(.admin-body) .product-card-image{min-height:190px!important}
body:not(.admin-body) .product-card-content{padding:18px!important}
body:not(.admin-body) .product-card-title{font-size:20px!important;letter-spacing:-.25px}
body:not(.admin-body) .product-card-price{font-size:22px!important;color:var(--primary)!important}
body:not(.admin-body) .product-meta span{border:1px solid rgba(226,232,240,.9);background:#f8fafc}
body:not(.admin-body) .product-whatsapp{padding:7px 10px;border-radius:10px;background:#ecfdf5;color:#15803d!important}
@media(max-width:768px){
  body:not(.admin-body){padding-top:76px!important}
  body:not(.admin-body) .container{width:min(100% - 22px,1180px)}
  body:not(.admin-body) main.container{padding-top:10px}
  body:not(.admin-body) .slide{min-height:310px}
  body:not(.admin-body) .slide-content{left:24px;right:24px;bottom:28px}
  body:not(.admin-body) .slide h2{font-size:32px}
  body:not(.admin-body) .slide p{font-size:15px}
  body:not(.admin-body) .slider{border-radius:22px}
  body:not(.admin-body) .quick-menu{grid-template-columns:repeat(2,1fr);gap:12px}
  body:not(.admin-body) .quick-card{min-height:125px;padding:18px 10px;border-radius:18px}
  body:not(.admin-body) .quick-card .icon{width:48px;height:48px;font-size:25px;border-radius:15px}
  body:not(.admin-body) .section-title-row h2{font-size:24px}
  body:not(.admin-body) .popular-products-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  body:not(.admin-body) .popular-product-img{height:130px}
  body:not(.admin-body) .popular-product-body{padding:13px}
  body:not(.admin-body) .popular-product-body p{display:none}
  body:not(.admin-body) .category-filterbar{padding:12px;border-radius:17px}
  body:not(.admin-body) .category-grid{gap:12px!important}
  body:not(.admin-body) .category-card{border-radius:18px!important}
  body:not(.admin-body) .category-card-image{height:145px!important}
  body:not(.admin-body) .category-card-body{padding:13px 8px!important}
  body:not(.admin-body) .product-card-modern{border-radius:18px!important}
  body:not(.admin-body) .product-card-image{min-height:165px!important}
  body:not(.admin-body) .product-card-content{padding:14px!important}
}
@media(max-width:420px){
  body:not(.admin-body) .popular-products-grid{grid-template-columns:1fr 1fr}
  body:not(.admin-body) .category-card-image{height:128px!important}
  body:not(.admin-body) .category-card-title{font-size:15px!important}
}
/* === /QR MENU SITE MODERN DESIGN === */


/* Slider görünürlük ve görsel yolu düzeltmesi */
body:not(.admin-body) .hero{display:block!important;visibility:visible!important;opacity:1!important}
body:not(.admin-body) .slider{display:block!important;visibility:visible!important;opacity:1!important;min-height:320px!important;background:#161518!important}
body:not(.admin-body) .slide{position:relative!important;min-height:430px!important;overflow:hidden!important;background:#161518!important}
body:not(.admin-body) .slide.active{display:block!important;visibility:visible!important;opacity:1!important}
body:not(.admin-body) .slide-bg{position:absolute!important;inset:0!important;width:100%!important;height:100%!important;object-fit:cover!important;display:block!important;z-index:0!important}
body:not(.admin-body) .slide::after{z-index:1!important;pointer-events:none!important}
body:not(.admin-body) .slide-content{z-index:2!important}
@media(max-width:768px){
  body:not(.admin-body) .slider{min-height:280px!important}
  body:not(.admin-body) .slide{min-height:310px!important}
}
