/* Baba Onbaşılar Kebap — Theme-like single page
   - No build required
   - Tailwind CDN + small custom CSS
*/

:root{
  --brand:#e10600;
  /* fallback; JS will update this to exact header height */
  --header-h:76px;
}

html{ scroll-behavior:smooth; }

/* Fixed header spacing */
.pt-header{ padding-top: var(--header-h); }

.container-max{
  width: min(1200px, 92vw);
  margin-inline:auto;
}

.site-header{
  position:fixed;
  inset:0 0 auto 0;
  z-index:80;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(15,23,42,.08);
  transition: box-shadow .2s ease, background .2s ease;
}
.site-header.is-scrolled{
  box-shadow: 0 10px 30px -25px rgba(0,0,0,.35);
  background: rgba(255,255,255,.98);
}

.logo-badge{
  width:44px; height:44px;
  display:grid; place-items:center;
  background: var(--brand);
  border-radius: 10px;
  box-shadow: 0 12px 25px -18px rgba(225,6,0,.6);
}

.navlink-theme{
  color: rgba(15,23,42,.70);
  position: relative;
  text-transform: uppercase;
}
.navlink-theme:hover{ color: rgba(15,23,42,.92); }
.navlink-theme::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-14px;
  height:3px;
  background: transparent;
  transform: scaleX(.22);
  transform-origin:left;
  transition: background .18s ease, transform .18s ease;
}
.navlink-theme:hover::after{
  background: var(--brand);
  transform: scaleX(.48);
}

.mini-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 38px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  color: rgba(15,23,42,.78);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .02em;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}

/* Icon pills for header quick links */
.icon-pill{
  width: 40px;
  height: 40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.12);
  background: rgba(255,255,255,.95);
  color: rgba(15,23,42,.76);
  transition: transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.icon-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.22);
  color: rgba(15,23,42,.92);
  background: rgba(15,23,42,.02);
}
.icon-pill-cta{
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.icon-pill-cta:hover{
  background: #c5141f;
  border-color: #c5141f;
  color: white;
}
.mini-pill:hover{
  transform: translateY(-1px);
  border-color: rgba(15,23,42,.22);
  color: rgba(15,23,42,.92);
}
.mini-pill-cta{
  background: var(--brand);
  border-color: var(--brand);
  color: white;
}
.mini-pill-cta:hover{
  background: #c5141f;
  border-color: #c5141f;
  color:white;
}

.drawer-link{
  display:flex;
  align-items:center;
  height:48px;
  padding: 0 14px;
  border-radius: 12px;
  font-weight: 700;
  color: rgba(15,23,42,.82);
  background: rgba(15,23,42,.04);
}
.drawer-link:hover{ background: rgba(225,6,0,.08); color: rgba(15,23,42,.95); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  height: 46px;
  padding: 0 18px;
  border-radius: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  transition: transform .15s ease, filter .15s ease, background .15s ease, border-color .15s ease;
}
.btn-square{ border-radius: 2px; }
.btn-primary{
  background: var(--brand);
  border: 1px solid var(--brand);
  color: #fff;
}
.btn-primary:hover{ filter: brightness(.95); transform: translateY(-1px); }
.btn-outline{
  border: 1px solid rgba(15,23,42,.18);
  color: rgba(15,23,42,.86);
  background: #fff;
}
.btn-outline:hover{ border-color: rgba(15,23,42,.28); transform: translateY(-1px); }
.btn-outline-white{
  border: 1px solid rgba(255,255,255,.55);
  color: #fff;
  background: rgba(255,255,255,.08);
}
.btn-outline-white:hover{ background: rgba(255,255,255,.14); transform: translateY(-1px); }

/* Hero */
.hero-wrap{ position:relative; overflow:hidden; background:#0b0b0b; }
.hero-bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
}
.hero-overlay{
  position:absolute; inset:0;
  background: radial-gradient(90% 90% at 25% 40%, rgba(0,0,0,.65), rgba(0,0,0,.25) 45%, rgba(0,0,0,.10) 70%, rgba(0,0,0,.0));
}
.hero-kicker{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background: var(--brand);
  color:#fff;
  font-weight: 800;
  letter-spacing: .06em;
  font-size: 12px;
  padding: 8px 12px;
  text-transform: uppercase;
}
.hero-title{
  margin-top: 18px;
  font-family: Oswald, ui-sans-serif, system-ui;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  line-height: .95;
  font-size: clamp(44px, 5vw, 78px);
}
.hero-sub{
  margin-top: 16px;
  max-width: 48ch;
  color: rgba(255,255,255,.80);
  font-size: 15px;
  line-height: 1.6;
}

.hero-strip{
  position:relative;
  background: var(--brand);
}
.strip-item{
  display:flex;
  gap:14px;
  align-items:center;
  justify-content:center;
}
.strip-icon{
  width:54px; height:54px;
  display:grid; place-items:center;
  font-size: 34px;
  filter: saturate(1.05);
}
.strip-title{
  font-family: Oswald, ui-sans-serif, system-ui;
  font-weight: 700;
  letter-spacing: .06em;
  color: #fff;
  text-transform: uppercase;
}
.strip-sub{
  font-size: 12px;
  color: rgba(255,255,255,.78);
}

/* Sections */
.section{ padding: 70px 0; }
.section-tight{ padding: 62px 0; }
.eyebrow{
  display:inline-block;
  background: rgba(225,6,0,.14);
  color: var(--brand);
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 11px;
  padding: 6px 10px;
  text-transform: uppercase;
}
.h2-theme{
  font-family: Oswald, ui-sans-serif, system-ui;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.h2{ font-size: clamp(28px, 2.8vw, 40px); line-height: 1.05; }
.p-muted{ color: rgba(15,23,42,.62); }

/* Menu cards */
.menu-card{
  border: 1px solid rgba(15,23,42,.10);
  border-radius: 14px;
  background: #fff;
  padding: 18px 18px 16px;
}
.menu-card-title{
  font-family: Oswald, ui-sans-serif, system-ui;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: .05em;
  font-size: 18px;
  margin-bottom: 12px;
}
.menu-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 0;
  border-top: 1px dashed rgba(15,23,42,.14);
  color: rgba(15,23,42,.82);
}
.menu-row:first-of-type{ border-top: 0; }
.menu-price{ font-weight: 800; color: rgba(15,23,42,.92); }

/* Offer tiles */
.offer-tile{
  position:relative;
  min-height: 360px;
  background-size:cover;
  background-position:center;
  isolation:isolate;
}
.offer-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.32) 52%, rgba(0,0,0,.12) 100%);
  z-index:-1;
}
.offer-content{
  padding: 44px 42px;
  color:#fff;
  max-width: 520px;
}
.offer-new{
  display:inline-flex;
  background: var(--brand);
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.offer-title{
  margin-top: 14px;
  font-family: Oswald, ui-sans-serif, system-ui;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(34px, 3.4vw, 54px);
  line-height: 1.02;
}
.offer-desc{
  margin-top: 10px;
  max-width: 55ch;
  color: rgba(255,255,255,.74);
  font-size: 14px;
  line-height: 1.55;
}
.offer-prices{ margin-top: 18px; display:flex; align-items:baseline; gap:14px; }
.offer-price{ font-size: 44px; font-weight: 900; }
.offer-old{ color: rgba(255,255,255,.42); font-size: 32px; text-decoration: line-through; }
.offer-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top: 18px;
  width: 150px;
  height: 44px;
  border: 2px solid rgba(255,255,255,.70);
  color:#fff;
  font-weight: 900;
  letter-spacing: .12em;
  font-size: 12px;
  text-transform: uppercase;
}
.offer-btn:hover{ background: rgba(255,255,255,.10); }

@media (max-width: 640px){
  :root{ --header-h: 78px; }
  .offer-content{ padding: 34px 20px; }
  .offer-price{ font-size: 38px; }
  .offer-old{ font-size: 26px; }
}

/* Gallery */
.gallery-img{
  width:100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid rgba(15,23,42,.10);
  transition: transform .18s ease, box-shadow .18s ease;
}
.gallery-img:hover{ transform: translateY(-2px); box-shadow: 0 18px 45px -35px rgba(0,0,0,.45); }

/* Contact */
.contact-left{
  background: #1f242b;
  color: #fff;
  padding: 54px 48px;
}
.contact-badge{
  display:inline-flex;
  background: var(--brand);
  padding: 6px 10px;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.contact-phone{
  margin-top: 16px;
  font-family: Oswald, ui-sans-serif, system-ui;
  font-weight: 700;
  font-size: 40px;
  letter-spacing: .02em;
}
.contact-meta{ margin-top: 26px; display:grid; gap: 14px; }
.contact-row{ display:flex; gap: 14px; align-items:flex-start; color: rgba(255,255,255,.86); }
.contact-ico{ width:42px; height:42px; display:grid; place-items:center; border: 2px solid rgba(225,6,0,.65); border-radius: 999px; color: var(--brand); }
.contact-label{ font-weight: 900; letter-spacing: .04em; text-transform: uppercase; font-size: 12px; color: rgba(255,255,255,.92); }
.contact-val{ margin-top: 2px; font-size: 14px; color: rgba(255,255,255,.68); }

.social-btn{
  width: 44px; height: 44px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border: 2px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.88);
  font-weight: 900;
}
.social-btn:hover{ border-color: rgba(255,255,255,.35); background: rgba(255,255,255,.06); }

.contact-map{ min-height: 380px; position:relative; }
.map-placeholder{
  position:absolute; inset:0;
  display:grid;
  place-items:center;
  text-align:center;
  padding: 32px;
  background:
    repeating-linear-gradient(45deg, rgba(15,23,42,.06), rgba(15,23,42,.06) 10px, rgba(15,23,42,.03) 10px, rgba(15,23,42,.03) 20px);
}

.download-bar{
  margin-top: 22px;
  background: var(--brand);
  /* Full-bleed background (edge-to-edge), even inside padded sections */
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.download-title{
  font-family: Oswald, ui-sans-serif, system-ui;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 700;
  color:#fff;
  font-size: 28px;
  padding: 26px 0;
}
.download-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height: 48px;
  width: 180px;
  border: 2px solid rgba(255,255,255,.65);
  color:#fff;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 20px 0;
}
.download-btn:hover{ background: rgba(255,255,255,.12); }

/* To top */
.to-top{
  position:fixed;
  right: 18px;
  bottom: 18px;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(15,23,42,.92);
  color:#fff;
  z-index: 70;
  box-shadow: 0 16px 50px -35px rgba(0,0,0,.65);
}
.to-top:hover{ filter: brightness(1.05); }

/* Scroll locking (mobile drawer) */
html.no-scroll, body.no-scroll{ overflow:hidden; }


/* ===== Final polish ===== */
.site-header{
  transition: background .35s ease, border-color .35s ease, box-shadow .35s ease;
  background: rgba(255,255,255,0.0);
  border-bottom-color: rgba(255,255,255,0.0);
  box-shadow:none;
}
.site-header.is-scrolled{
  background: rgba(255,255,255,.96);
  border-bottom-color: rgba(15,23,42,0.10);
  box-shadow: 0 10px 30px rgba(2,6,23,.10);
}

/* Hero slider (fade) */
.hero-wrap{ position:relative; overflow:hidden; background:#0b0b0b; }
.hero-slider{ position:absolute; inset:0; }
.hero-slide{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;
  opacity:0;
  transform: scale(1.06);
  will-change: opacity, transform;
}

/* Per-slide positioning */
.hero-slide.hero-1{ background-position: 84% 40%; }
.hero-slide.hero-2{ background-position:center 30%; }

/* 2-slide crossfade */
.hero-slide:nth-child(1){ animation: heroFade1 12s infinite; }
.hero-slide:nth-child(2){ animation: heroFade2 12s infinite; }

@keyframes heroFade1{
  0%{opacity:0; transform:scale(1.06);}
  6%{opacity:1; transform:scale(1.00);}
  44%{opacity:1; transform:scale(1.00);}
  50%{opacity:0; transform:scale(1.03);}
  100%{opacity:0; transform:scale(1.06);}
}
@keyframes heroFade2{
  0%{opacity:0; transform:scale(1.06);}
  44%{opacity:0; transform:scale(1.06);}
  50%{opacity:1; transform:scale(1.00);}
  94%{opacity:1; transform:scale(1.00);}
  100%{opacity:0; transform:scale(1.03);}
}

/* Remove old hero strip spacing if exists */
.hero-strip{ display:none !important; }

/* Buttons (used in Tarihçe) */
.btn-primary{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  background: var(--brand);
  color:#fff;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  box-shadow: 0 14px 30px rgba(225,6,0,.25);
}
.btn-primary:hover{ filter:brightness(.96); }
.btn-outline{
  display:inline-flex; align-items:center; justify-content:center;
  padding: .85rem 1.1rem;
  border-radius: 999px;
  border:1px solid rgba(15,23,42,.18);
  background: rgba(255,255,255,.85);
  color:#0f172a;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}
.btn-outline:hover{ background:#fff; }

/* Masonry gallery */
.gallery-masonry{
  columns: 1;
  column-gap: 16px;
}
@media (min-width: 640px){ .gallery-masonry{ columns: 2; } }
@media (min-width: 1024px){ .gallery-masonry{ columns: 3; } }

.gallery-item{
  display:block;
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 16px;
  overflow:hidden;
  position:relative;
  box-shadow: 0 10px 28px rgba(2,6,23,.10);
  transform: translateZ(0);
}
.gallery-item img{
  width:100%;
  height:auto;
  display:block;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.05); }

/* Lightbox */
.lightbox{
  position:fixed; inset:0;
  background: rgba(2,6,23,.90);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index: 999;
  padding: 20px;
}
.lightbox.hidden{ display:none; }
#lbImg{
  max-width: min(980px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.lb-close, .lb-prev, .lb-next{
  position:fixed;
  top: 18px;
  width: 48px; height:48px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.10);
  color:#fff;
  font-size: 22px;
  display:flex; align-items:center; justify-content:center;
  backdrop-filter: blur(8px);
}
.lb-close{ right:18px; }
.lb-prev, .lb-next{
  top: 50%;
  transform: translateY(-50%);
  width: 54px; height:54px;
  font-size: 34px;
}
.lb-prev{ left:18px; }
.lb-next{ right:18px; }

/* Order CTA full bleed */
.order-bar{
  background: var(--brand);
  padding: 16px 0;
}
.order-bar .download-title{ color:#fff; letter-spacing:.12em; font-weight:900; }
.order-bar .download-btn{
  background:#fff; color:#111827;
  border-radius: 999px;
  padding: .9rem 1.2rem;
  font-weight: 900;
  letter-spacing:.08em;
}
.order-bar .download-btn:hover{ filter:brightness(.96); }

/* Big order modal */
.order-modal{
  position:fixed; inset:0;
  z-index: 1000;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 18px;
}
.order-modal.hidden{ display:none; }
.order-backdrop{ position:absolute; inset:0; background: rgba(2,6,23,.70); }
.order-sheet{
  position:relative;
  width: min(980px, 96vw);
  max-height: 92vh;
  overflow:auto;
  background:#fff;
  border-radius: 22px;
  box-shadow: 0 30px 90px rgba(2,6,23,.35);
  padding: 18px;
}
.order-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 14px;
  padding: 6px 6px 14px 6px;
  border-bottom: 1px solid rgba(15,23,42,.08);
}
.order-kicker{
  font-size: 12px;
  letter-spacing:.18em;
  font-weight: 900;
  color: rgba(225,6,0,.95);
}
.order-title{ font-size: 22px; font-weight: 900; letter-spacing:-.02em; }
.order-x{
  width: 44px; height:44px;
  border-radius: 14px;
  border:1px solid rgba(15,23,42,.10);
  background:#fff;
}
.order-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 14px 6px 10px;
}
@media (min-width: 640px){
  .order-grid{ grid-template-columns: 1fr 1fr; gap: 14px; }
}
.order-card{
  display:flex;
  align-items:center;
  gap: 12px;
  padding: 16px;
  border-radius: 18px;
  border:1px solid rgba(15,23,42,.10);
  background: linear-gradient(180deg, rgba(255,255,255,1), rgba(248,250,252,1));
}
.order-card:hover{ box-shadow: 0 14px 32px rgba(2,6,23,.10); }
.order-logo{ width: 56px; height:56px; object-fit:contain; }
.order-ig, .order-phone{
  width:56px; height:56px;
  border-radius: 16px;
  display:flex; align-items:center; justify-content:center;
  background: rgba(15,23,42,.06);
  color:#0f172a;
  font-weight: 900;
  font-size: 22px;
}
.order-meta{ min-width:0; }
.order-name{ font-size: 18px; font-weight: 900; }
.order-sub{ font-size: 13px; color: rgba(15,23,42,.60); margin-top:2px; }
.order-go{ margin-left:auto; font-size: 22px; color: rgba(15,23,42,.45); }
.order-foot{
  padding: 10px 6px 4px;
}
.order-address{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(225,6,0,.06);
  border: 1px solid rgba(225,6,0,.18);
  font-weight: 800;
}
.order-address span{ font-weight: 900; color: var(--brand); white-space:nowrap; }

@media (max-width: 639px){
  .order-sheet{ padding: 14px; }
  .order-card{ padding: 18px; }
  .order-name{ font-size: 19px; }
  .order-logo,.order-ig,.order-phone{ width: 64px; height:64px; }
  .order-bar .download-btn{ width:100%; justify-content:center; }
}

iframe{width:100%!important;height:100%!important;}

/* header logo adjustments */
.tiktok-logo{height:21px;width:auto;object-fit:contain}
.youtube-logo{height:20px;width:auto;object-fit:contain}

/* allow horizontal logos */
.icon-pill{width:44px;height:44px;display:inline-flex;align-items:center;justify-content:center}
.icon-pill img{max-height:70%;max-width:70%}
.wide-pill{width:auto;min-width:64px;padding:0 10px;border-radius:9999px}
.wide-pill img{max-height:24px;max-width:none}


/* mobile contact redesign */
@media(max-width:640px){
.contact-card{padding:20px 18px}
.contact-phone{font-size:34px;line-height:1.1;text-align:left}
.contact-meta{display:flex;gap:12px;align-items:flex-start}
.contact-icons{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}
.social-btn{width:64px;height:64px;border-radius:16px}
.social-btn svg{width:30px;height:30px}
.social-btn-tt,.social-btn-yt{background:#fff;border:1px solid #e5e7eb}
}


.social-btn{display:inline-flex;align-items:center;justify-content:center}
.social-logo{height:28px;width:auto;max-width:60px;object-fit:contain}
/* Yemeksepeti logo is wide */
.social-logo-tt{height:24px;max-width:88px}
.social-logo-yt{height:24px;max-width:88px}
@media(max-width:640px){
  .social-logo{height:30px;max-width:88px}
  .social-logo-tt,.social-logo-yt{height:26px;max-width:96px}
}



/* ===== Contact section: mobile fixes (phone + icons + alignment) ===== */
.contact-phone{display:block; max-width:100%}
.contact-ico svg{display:block}

/* Icons row */
.contact-icons{display:flex; gap:12px; margin-top:18px}
.contact-icons .social-btn{
  width:56px; height:56px;
  border-radius:16px;
  display:inline-flex; align-items:center; justify-content:center;
  overflow:hidden;
}
/* Make brand buttons consistent */
.contact-icons .social-btn-tt,
.contact-icons .social-btn-yt{
  background:#fff;
  border: 2px solid rgba(255,255,255,.15);
}

/* SVG icons (Instagram / Phone) */
.contact-icons .social-btn svg{width:28px;height:28px}

/* Image logos (Yemeksepeti / Getir) - bigger */
.contact-icons .social-btn img.social-logo{
  width:100%; height:100%;
  object-fit:contain;
  display:block;
  padding:12px; /* bigger logos */
}
/* Yemeksepeti is wide */
.contact-icons .social-btn-tt img.social-logo{padding:12px 10px}
.contact-icons .social-btn-yt img.social-logo{padding:12px 10px}

/* Mobile layout */
@media(max-width:640px){
  .contact-left{padding:26px 18px}
  .contact-badge{margin-bottom:10px}
  .contact-phone{
    margin-top: 6px;
    font-size: 32px;
    line-height: 1.05;
    letter-spacing: 0;
    word-spacing: 2px;
  }
  .contact-icons{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:12px;
    max-width: 380px;
  }
  .contact-icons .social-btn{width:76px;height:76px;border-radius:20px}
  .contact-icons .social-btn svg{width:34px;height:34px}
  .contact-icons .social-btn img.social-logo{padding:12px}
  .contact-icons .social-btn-tt img.social-logo{padding:12px 10px}
  .contact-icons .social-btn-yt img.social-logo{padding:12px 10px}
}


/* === Horizontal carousels (Mekandan Kareler / Ürünlerimiz) === */
.hcarousel{ position:relative; margin-top:18px; }
.hcarousel-track{
  display:flex;
  gap:16px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
  padding:4px 56px 14px 8px;
}
.hcarousel-track::-webkit-scrollbar{ height:8px; }
.hcarousel-track::-webkit-scrollbar-thumb{ background:rgba(0,0,0,.15); border-radius:999px; }
.hcarousel-item{
  flex:0 0 320px;
  scroll-snap-align:start;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 24px rgba(0,0,0,.12);
  background:#fff;
}
.hcarousel-item img{ width:100%; height:230px; object-fit:cover; display:block; }
.hcarousel-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:2;
  user-select:none;
}
.hcarousel-btn:hover{ background:#fff; }
.hcarousel-btn.prev{ left:6px; }
.hcarousel-btn.next{ right:6px; }

@media (max-width: 900px){
  .hcarousel-item{ flex-basis:300px; }
}
@media (max-width: 640px){
  .hcarousel-track{ padding:4px 14px 14px 14px; }
  .hcarousel-item{ flex-basis:82%; }
  .hcarousel-item img{ height:240px; }
  .hcarousel-btn{ display:none; }
}

/* === Hero mobile: keep subject visible === */
@media (max-width: 640px){
  .hero-wrap::before, .hero-wrap::after{ display:none; }
  .hero-slide{
    background-size:cover !important;
    background-repeat:no-repeat !important;
    background-color:#0b0b0b !important;
  }
  .hero-slide.hero-1{ background-position:84% 55% !important; }
  .hero-slide.hero-2{ background-position:center 35% !important; }
}


.map-pin-badge{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-115%);
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:10px 14px;
  border-radius:999px;
  background:rgba(255,255,255,.96);
  color:#991b1b;
  border:1px solid rgba(225,6,0,.22);
  box-shadow:0 18px 40px rgba(15,23,42,.18);
  font-weight:800;
  letter-spacing:.01em;
  backdrop-filter:blur(6px);
}
.map-pin-badge:hover{ background:#fff; }
.map-pin-icon{
  width:28px;
  height:28px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background:rgba(225,6,0,.08);
  font-size:16px;
}
.order-logo-tiktok,.order-logo-youtube{
  width:72px;
  max-width:72px;
}
@media (max-width: 640px){
  .tiktok-logo,.youtube-logo{height:19px;}
  .map-pin-badge{
    top:52%;
    padding:9px 12px;
    font-size:13px;
    transform:translate(-50%,-110%);
  }
  .map-pin-icon{width:24px;height:24px;font-size:14px;}
  .order-logo-tiktok,.order-logo-youtube{width:64px;max-width:64px;}
}
