:root{
  --brand:#ce9f35;

  --bg:#fbfaf7;
  --surface:#ffffff;
  --text:#151515;
  --muted:#5c5c5c;
  --border:#e6e1d6;

  --brandSoft: rgba(206,159,53,.16);
  --shadow: 0 10px 26px rgba(0,0,0,.08);

  --font: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;

  --fs-base:17px;
  --fs-nav:16px;
  --fs-h1-min:32px;
  --fs-h1-max:52px;
  --fs-small:15px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:var(--font);
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
  font-size:var(--fs-base);
  font-weight:650;
  -webkit-font-smoothing:antialiased;
  text-rendering:geometricPrecision;
}

a{color:inherit;text-decoration:none}
ul{margin:0;padding:0;list-style:none}
img{max-width:100%;display:block}

.container{
  width:min(1100px,92%);
  margin:0 auto;
}

/* =========================
   Buttons
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:.5rem;
  padding:.78rem 1.15rem;
  border-radius:12px;
  border:1px solid transparent;
  font-weight:900;
  font-family:var(--font);
  letter-spacing:.2px;
  cursor:pointer;
  transition:transform .16s ease, filter .16s ease, background .16s ease, border-color .16s ease;
  font-size:16px;
  user-select:none;
}
.btn--primary{
  background:var(--brand);
  border-color:rgba(0,0,0,.08);
  color:#fff;
}
.btn--primary:hover{filter:brightness(.96)}
.btn--primary:active{transform:translateY(1px)}
.btn--light{
  background:rgba(255,255,255,.92);
  color:#111;
  border-color:rgba(255,255,255,.45);
}
.btn--light:hover{background:#fff}

/* =========================
   Header
========================= */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:#fff;
  border-bottom:1px solid var(--border);
  overflow:visible;
  transition:box-shadow .22s ease;
}

/* Sol (lang) | orta (logo+nav) | sağ (cta+burger) */
.header__row{
  height:92px;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:14px;
}

/* Orta grup (masaüstü) */
.header__center{
  justify-self:center;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:18px;
  min-width:0;
}

/* Nav */
.nav{
  display:flex;
  align-items:center;
  gap:20px;
  font-weight:900;
  letter-spacing:.25px;
  font-size:var(--fs-nav);
  white-space:nowrap;
}
.nav a{
  color:#1c1c1c;
  position:relative;
  padding:10px 0;
}
.nav a:hover{color:#000}
.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:3px;
  height:3px;
  width:0%;
  background:var(--brand);
  transition:width .18s ease;
}
.nav a:hover::after{width:100%}
.nav--left{justify-self:end}
.nav--right{justify-self:start}

/* Logo */
.logo{display:inline-flex}
.logo--center{justify-self:center}
.logo-badge{
  background:#fff;
  border:1px solid var(--border);
  width:128px;
  height:128px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:var(--shadow);
  transform:translateY(18px);
}
.logo-badge img{
  width:92px;
  max-width:92px;
  max-height:92px;
  height:auto;
  object-fit:contain;
}

/* Sağ aksiyonlar */
.header__right{
  justify-self:end;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
}
.header__cta{
  height:46px;
  padding:0 16px;
  line-height:1;
  display:inline-flex;
  align-items:center;
  justify-content:center;
}

/* Burger */
.burger{
  display:none;
  width:46px;
  height:46px;
  border:1px solid var(--border);
  border-radius:12px;
  background:#fff;
  padding:11px;
  cursor:pointer;
  flex-direction:column;
  justify-content:center;
  gap:6px;
}
.burger span{
  display:block;
  width:100%;
  height:2px;
  background:#1c1c1c;
  border-radius:2px;
}

/* Mobil Menü Paneli */
.mobile-panel{
  max-height:0;
  overflow:hidden;
  border-bottom:1px solid var(--border);
  background:#fff;
  transition:max-height .25s ease;
}
.mobile-panel.is-open{max-height:520px}
.mobile-panel__inner{
  padding:16px 0 20px;
  display:grid;
  gap:12px;
}
.mobile-panel a{
  font-weight:900;
  color:#1c1c1c;
  font-size:16px;
}
.mobile-panel a:hover{color:#000}
.mobile-panel .btn{width:fit-content}

/* =========================
   Slider
========================= */
.slider{
  position:relative;
  height:500px;
  overflow:hidden;
  background:#000;
}
.slide{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  opacity:0;
  transition:opacity .55s ease;
}
.slide::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to bottom, rgba(0,0,0,.20), rgba(0,0,0,.68));
}
.slide.is-active{opacity:1}

/* Slider yazıları ortalı */
.slide__content{
  position:relative;
  height:100%;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  text-align:center;
  color:#fff;
  max-width:820px;
  padding-top:10px;
  margin:0 auto;
}
.slide__content .btn{
  width:fit-content;
  padding:.70rem 1.00rem;
}
.slide__content h1{
  margin:0 0 10px;
  font-size:clamp(var(--fs-h1-min),4vw,var(--fs-h1-max));
  line-height:1.05;
  letter-spacing:.2px;
  font-weight:950;
}
.slide__content p{
  margin:0 0 18px;
  color:rgba(255,255,255,.92);
  max-width:62ch;
  font-size:18px;
  font-weight:800;
}

/* Slider arrows + dots */
.slider__arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:46px;height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.35);
  background:rgba(0,0,0,.22);
  color:#fff;
  font-size:30px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .18s ease, transform .18s ease;
}
.slider__arrow:hover{background:rgba(0,0,0,.35)}
.slider__arrow--left{left:14px}
.slider__arrow--right{right:14px}

.slider__dots{
  position:absolute;
  left:0;right:0;bottom:14px;
  display:flex;
  justify-content:center;
  gap:9px;
}
.dot{
  width:11px;height:11px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.65);
  background:transparent;
  cursor:pointer;
  opacity:.95;
}
.dot.is-active{
  background:var(--brand);
  border-color:rgba(0,0,0,.15);
}

/* =========================
   Dil Seçici
========================= */
.lang{
  position:relative;
  justify-self:start;
}
.lang__trigger{
  display:inline-flex;
  align-items:center;
  gap:10px;
  height:46px;
  padding:0 10px;
  border-radius:12px;
  border:0;
  background:transparent;
  font:inherit;
  color:inherit;
  cursor:pointer;
  transition:background .18s ease, transform .18s ease;
}
.lang__trigger:hover{background:rgba(0,0,0,.03)}
.lang__trigger img{
  width:42px;
  height:30px;
  object-fit:cover;
  border-radius:6px;
  border:1px solid var(--border);
}
.flag__text{
  font-weight:950;
  letter-spacing:.2px;
  font-size:14px;
  color:#1c1c1c;
  white-space:nowrap;
}
.lang__chev{
  font-size:12px;
  line-height:1;
  opacity:.75;
  margin-left:2px;
}

.lang-menu{
  position:absolute;
  top:calc(100% + 6px);
  left:0;
  min-width:190px;
  padding:8px;
  display:grid;
  gap:6px;
  background:#fff;
  border:1px solid var(--border);
  border-radius:12px;
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(-6px);
  pointer-events:none;
  transition:opacity .16s ease, transform .16s ease;
  z-index:60;
}

/* JS ile aç/kapat */
.lang.is-open .lang-menu{
  opacity:1;
  transform:translateY(0);
  pointer-events:auto;
}

/* Hover/focus sadece mouse olan cihazlarda */
@media (hover:hover) and (pointer:fine){
  .lang:hover .lang-menu,
  .lang:focus-within .lang-menu{
    opacity:1;
    transform:translateY(0);
    pointer-events:auto;
  }

  /* tetikleyici ile menü arasında köprü */
  .lang::after{
    content:"";
    position:absolute;
    left:0; right:0;
    top:100%;
    height:12px;
    pointer-events:auto;
  }
}

.lang-option{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:10px;
  font-weight:900;
  color:#1c1c1c;
}
.lang-option:hover{background:rgba(0,0,0,.03)}
.lang-flag{
  width:28px;
  height:20px;
  object-fit:cover;
  border-radius:5px;
  border:1px solid var(--border);
}
.lang-label{white-space:nowrap}

/* =========================
   Scroll ile Header/Logo küçültme
========================= */
.header__row,
.logo-badge,
.logo-badge img,
.lang__trigger,
.lang__trigger img,
.header__cta{
  transition:
    height .22s ease,
    width .22s ease,
    transform .22s ease,
    padding .22s ease,
    font-size .22s ease;
}

.header.is-compact{box-shadow:var(--shadow)}
.header.is-compact .header__row{height:72px}

.header.is-compact .logo-badge{
  width:84px;
  height:84px;
  transform:translateY(10px);
}
.header.is-compact .logo-badge img{
  width:60px;
  max-width:60px;
  max-height:60px;
}

.header.is-compact .header__cta{
  height:40px;
  padding:0 14px;
}

.header.is-compact .lang__trigger{
  height:40px;
  padding:0 10px;
}
.header.is-compact .lang__trigger img{
  width:38px;
  height:27px;
}

/* =========================
   PRODUCT PANELS (seamless + hover gap fix)
========================= */
.product-panels{
  padding:54px 0;
  background:#f3f2ee;
}

.pp-grid{
  display:flex;                 /* ✅ grid yerine flex: subpixel çizgiler biter */
  gap:0;
  border-radius:14px;
  overflow:hidden;
  background:#000;              /* arka sızıntı olursa görünmesin */
  box-shadow:0 26px 70px rgba(0,0,0,.16);
}

/* Panel */
.pp{
  flex:1 1 0;
  min-width:0;
  position:relative;
  min-height:360px;
  padding:34px 34px 30px;
  color:#fff;
  display:flex;
  flex-direction:column;
  isolation:isolate;
  text-decoration:none;

  overflow:hidden;              /* ✅ hover büyümesi panel içinde kalsın */
  background:#000;              /* ✅ arka sızıntı olursa görünmesin */
}

/* ✅ Asıl çözüm: 1px overlap (boşluk kalmaz) */
.pp + .pp{
  margin-left:-1px;             /* ✅ aradaki “boşluğu” fiziksel olarak kapatır */
  border-left:1px solid rgba(255,255,255,.14); /* ince ayırıcı çizgi (isteğe bağlı) */
}

/* Arka plan görseli + scale (GPU ile pürüzsüz) */
.pp::before{
  content:"";
  position:absolute;
  inset:-12px;                  /* ✅ kenarlarda seam kalmasın */
  background:
    var(--bg, none) center/cover no-repeat,
    linear-gradient(135deg, rgba(0,0,0,.25), rgba(0,0,0,.55));
  transform: translateZ(0) scale(1.01);
  will-change: transform;
  backface-visibility: hidden;
  transition: transform .38s ease;
  z-index:-2;
}

/* Overlay */
.pp::after{
  content:"";
  position:absolute;
  inset:-12px;                  /* ✅ kenarlarda seam kalmasın */
  background: linear-gradient(180deg,
      rgba(206,159,53,.16) 0%,
      rgba(0,0,0,.22) 38%,
      rgba(0,0,0,.86) 100%);
  z-index:-1;
}

/* Hover: büyüme var ama artık “boşluk büyümez” */
.pp:hover::before{
  transform: translateZ(0) scale(1.08);
}
.pp:hover{
  box-shadow: inset 0 0 0 1px rgba(206,159,53,.22);
}
.pp:focus-visible{
  outline:3px solid rgba(206,159,53,.55);
  outline-offset:-3px;
}

/* ikon çemberi */
.pp-icon{
  width:88px;
  height:88px;
  border-radius:999px;
  display:grid;
  place-items:center;
  margin:6px auto 0;
  border:2px solid rgba(255,255,255,.78);
  background:rgba(0,0,0,.10);
  backdrop-filter:blur(6px);
  -webkit-backdrop-filter:blur(6px);
  color:#fff;
}

.pp-spacer{flex:1}

.pp h3{
  margin:0 0 8px;
  font-size:22px;
  font-weight:900;
  letter-spacing:-0.02em;
}
.pp p{
  margin:0 0 12px;
  font-size:15px;
  line-height:1.6;
  color:rgba(255,255,255,.90);
  font-weight:650;
  max-width:38ch;
}
.pp-cta{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  letter-spacing:.02em;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.16);
  padding-top:12px;
  width:fit-content;
}

/* Responsive: alt alta (overlap mantığı dikeyde) */
@media (max-width: 980px){
  .pp-grid{flex-direction:column}
  .pp{min-height:320px}
  .pp + .pp{
    margin-left:0;
    margin-top:-1px;            /* ✅ dikeyde de boşluk kalmaz */
    border-left:0;
    border-top:1px solid rgba(255,255,255,.14);
  }
  .pp-icon{margin:6px 0 0}
}


/* =========================
   Footer
========================= */
.footer{
  border-top:1px solid var(--border);
  background:#fff;
}

.footer__grid{
  padding:38px 0;
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:26px;
  align-items:start;
}

.footer__brand{display:flex}
.footer__logo{
  width:200px;
  display:inline-flex;
}
.footer__logo img{width:100%; height:auto}

.footer h4{
  margin:0 0 10px;
  font-size:16px;
  letter-spacing:.3px;
  font-weight:950;
}

.footer li{
  margin:9px 0;
  color:var(--muted);
  font-size:var(--fs-small);
  font-weight:800;
}

.footer a{color:var(--muted)}
.footer a:hover{
  color:#222;
  text-decoration:underline;
  text-decoration-color:var(--brand);
  text-underline-offset:4px;
}

/* Bar */
.footer__bar{
  border-top:1px solid var(--border);
  padding:14px 0;
  background:var(--bg);
  color:var(--muted);
}

.footer__bar-inner{
  text-align:center; /* ✅ ortalı */
}

.footer__bar small{
  font-size:14px;
  font-weight:800;
}

/* İstanbulMarka linki şık dursun */
.im-link{
  color:#222;
  font-weight:950;
}
.im-link:hover{
  color:#000;
  text-decoration:underline;
  text-decoration-color:var(--brand);
  text-underline-offset:4px;
}

/* =========================
   Responsive (mobil düzen)
   - Logo ortalı
   - Sayfalar + Ürünler yan yana 2 sütun
   - İletişim altta tam genişlik
========================= */
@media (max-width: 760px){
  .footer__grid{
    grid-template-columns:1fr 1fr;
    gap:18px;
    padding:28px 0;
  }

  /* Logo satırı: 2 sütunu kaplasın ve ortalansın */
  .footer__brand{
    grid-column:1 / -1;
    justify-content:center;
  }
  .footer__logo{width:190px}

  /* Sayfalar ve Ürünler yan yana kalır */
  .footer__pages{grid-column:1 / 2}
  .footer__products{grid-column:2 / 3}

  /* İletişim altta tek sütun */
  .footer__contact{
    grid-column:1 / -1;
  }
}


/* =========================
   Responsive
========================= */
@media (max-width: 900px){
  .footer__grid{grid-template-columns:1fr 1fr}
  .pp-grid{grid-template-columns:1fr}
  .pp{min-height:320px}
  .pp + .pp{box-shadow: inset 0 1px 0 rgba(255,255,255,.10)}
  .pp-icon{margin:6px 0 0}
}

@media (max-width: 760px){
  /* Mobilde: nav + header CTA gizli, burger açık */
  .nav, .header__cta{display:none}
  .burger{display:flex}
  .header__row{height:88px}

  /* Mobilde Türkçe yazısı gizli */
  .flag__text, .lang__chev{display:none}

  /* Mobilde logo gerçekten ortada kalsın */
  .header__center{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:0;
  }
  .logo--center{margin:0 auto}

  .logo-badge{
    width:108px;
    height:108px;
    transform:translateY(12px);
  }
  .logo-badge img{
    width:76px;
    max-width:76px;
    max-height:76px;
  }

  .footer__grid{grid-template-columns:1fr}

  /* Mobilde slider okları olmasın */
  .slider__arrow{display:none}

  /* Mobilde dil menüsü: sadece bayraklar */
  .lang-menu{
    min-width:auto;
    grid-auto-flow:row;
    gap:10px;
    padding:10px;
  }
  .lang-option{
    padding:0;
    width:44px;
    height:44px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:12px;
  }
  .lang-label{display:none}
  .lang-flag{
    width:32px;
    height:22px;
  }

  /* Compact (mobil) */
  .header.is-compact .header__row{height:72px}
  .header.is-compact .logo-badge{
    width:74px;
    height:74px;
    transform:translateY(8px);
  }
  .header.is-compact .logo-badge img{
    width:52px;
    max-width:52px;
    max-height:52px;
  }
  .header.is-compact .lang__trigger{height:40px}
  .header.is-compact .lang__trigger img{
    width:38px;
    height:27px;
  }
}


/* =========================
   PRODUCTS MARQUEE (no horizontal scroll + seamless loop)
========================= */
.products-marquee{
  padding: 46px 0 56px;
  background: #fff;
  border-top: 1px solid rgba(0,0,0,.06);
  overflow: hidden;            /* ✅ yatay scroll’u kes */
}

.pm-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom: 14px;
}

.pm-head h2{
  margin:0;
  font-weight:950;
  letter-spacing:-0.02em;
  font-size: clamp(22px, 2.2vw, 30px);
}

/* Track artık %100 — 100vw/margin hack yok (scroll bar üretmez) */
.pm-track{
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 14px 24px;

  /* Şık kenar fade */
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 7%, #000 93%, transparent 100%);
}

/* Hareketli bant: iki set yan yana, -50% ile tam bir set kayar */
.pm-move{
  display:flex;
  width: max-content;
  will-change: transform;
  transform: translate3d(0,0,0);
  animation: pmScroll var(--pm-duration, 46s) linear infinite;
}

/* Bir set: içeride gap var, ama setler arası boşluk olmasın diye
   satırın sonunda sadece 1 “gap” kadar padding veriyoruz */
.pm-row{
  display:flex;
  gap: 14px;
  padding-right: 14px;       /* ✅ seam’de de aynı aralık oluşur */
}

/* Kutu kutu ürün */
.pm-item{
  width: 150px;
  aspect-ratio: 1 / 1;       /* ✅ 1:1 */
  border-radius: 14px;
  overflow: hidden;
  background: #f2f2f2;
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 10px 22px rgba(0,0,0,.10);
  flex: 0 0 auto;
  pointer-events: none;      /* ✅ tıklanabilir olmasın */
}

.pm-item img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transform: scale(1.01);
  transition: transform .25s ease, filter .25s ease;
}

/* Hover: sadece görsel zoom (pause yok) */
.pm-track:hover .pm-item img{
  filter: saturate(1.03) contrast(1.02);
}
.pm-item:hover img{
  transform: scale(1.05);
}

/* Sonsuz akış */
@keyframes pmScroll{
  from { transform: translate3d(0,0,0); }
  to   { transform: translate3d(-50%,0,0); }
}

/* Motion hassasiyeti */
@media (prefers-reduced-motion: reduce){
  .pm-move{ animation: none; }
}

/* Responsive */
@media (max-width: 900px){
  .pm-track{ padding: 12px 18px; }
  .pm-item{ width: 120px; border-radius: 12px; }
  .pm-row{ gap: 12px; padding-right: 12px; }
}

@media (max-width: 560px){
  .pm-item{ width: 104px; }
}
/* =========================
   SUSTAINABILITY HERO (örnekteki gibi)
========================= */
.sustain{
  padding: 44px 0 56px;
  background: transparent;
}

.sustain__card{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  min-height: 520px;

  /* arka plan sizde */
  background: var(--sustain-bg, #0b0f14);

  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 26px 70px rgba(0,0,0,.18);
  isolation: isolate;
}

/* Okunabilirlik için overlay (solda daha güçlü, sağa doğru açılır) */
.sustain__card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.46) 35%,
      rgba(0,0,0,.18) 62%,
      rgba(0,0,0,.00) 100%);
  z-index: 0;
}

/* Hafif vignette */
.sustain__card::after{
  content:"";
  position:absolute;
  inset:-2px;
  background: radial-gradient(1200px 520px at 30% 40%,
    rgba(0,0,0,.15) 0%,
    rgba(0,0,0,.55) 70%,
    rgba(0,0,0,.70) 100%);
  mix-blend-mode: multiply;
  opacity: .55;
  z-index: 0;
}

.sustain__content{
  position: relative;
  z-index: 1;
  padding: 64px 60px;
  max-width: 720px;
  color: #fff;
}

.sustain__content h2{
  margin: 0 0 18px;
  font-weight: 950;
  letter-spacing: -0.03em;
  line-height: 1.03;
  font-size: clamp(34px, 4.1vw, 56px);
  text-shadow: 0 10px 24px rgba(0,0,0,.35);
}

.sustain__accent{
  color: var(--eco, #22c55e);
}

.sustain__content p{
  margin: 0 0 26px;
  max-width: 62ch;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,.80);
  font-weight: 750;
}

/* Buton (örnekteki gibi outline) */
.btn--eco{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(34,197,94,.85);
  padding: .82rem 1.35rem;
  border-radius: 999px;
  box-shadow: 0 0 0 0 rgba(34,197,94,.0);
  transition: background .18s ease, transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.btn--eco:hover{
  background: rgba(34,197,94,.14);
  box-shadow: 0 10px 30px rgba(34,197,94,.18);
  border-color: rgba(34,197,94,1);
}

.btn--eco:active{ transform: translateY(1px); }

/* Responsive */
@media (max-width: 900px){
  .sustain__card{ min-height: 480px; }
  .sustain__content{ padding: 54px 28px; max-width: 640px; }
  .sustain__card::before{
    background: linear-gradient(180deg,
      rgba(0,0,0,.62) 0%,
      rgba(0,0,0,.40) 45%,
      rgba(0,0,0,.12) 80%,
      rgba(0,0,0,.00) 100%);
  }
}

@media (max-width: 560px){
  .sustain__card{ min-height: 440px; }
  .sustain__content{ padding: 42px 20px; }
}



@media (max-width: 760px){
  /* 3 sütun: Sayfalar | Ürünler | İletişim */
  .footer__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 26px 0;
    align-items: start;
  }

  /* ✅ Logo tam ortada, 3 sütunu kaplasın */
  .footer__brand{
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
  }
  .footer__logo{
    width: 190px;
    margin: 0 auto;          /* ✅ ortalama garantisi */
  }

  /* Sütunlara yerleşim */
  .footer__pages{ grid-column: 1 / 2; }
  .footer__products{ grid-column: 2 / 3; }
  .footer__contact{ grid-column: 3 / 4; }

  /* ✅ Metinleri çok az küçültelim */
  .footer h4{
    font-size: 14px;
    margin: 0 0 8px;
    letter-spacing: .2px;
  }
  .footer li{
    font-size: 13px;
    margin: 7px 0;
  }

  /* Mobilde link alt çizgisi daha temiz dursun */
  .footer a:hover{
    text-underline-offset: 3px;
  }
}

@media (max-width: 760px){
  .footer__grid{
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;                 /* ✅ sütun arası daha az */
    padding: 22px 0;
    align-items: start;
  }

  /* Logo tam ortada */
  .footer__brand{
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .footer__logo{
    width: 175px;
    margin: 0 auto;
    display: block;
  }

  .footer__pages{ grid-column: 1 / 2; }
  .footer__products{ grid-column: 2 / 3; }
  .footer__contact{ grid-column: 3 / 4; }

  /* ✅ Başlıkları ve metinleri biraz daha küçült */
  .footer h4{
    font-size: 13px;
    margin: 0 0 6px;
    letter-spacing: .15px;
    line-height: 1.15;
  }

  .footer li{
    font-size: 12px;
    margin: 5px 0;           /* ✅ daha sıkı */
    line-height: 1.25;       /* ✅ sığması için */
  }

  /* Linkler çok taşarsa kırabilsin (özellikle e-posta) */
  .footer__contact a{
    word-break: break-word;
  }
}


@media (max-width: 760px){
  .footer__grid{
    grid-template-columns: 25% 30% 45%; /* ✅ %30 / %30 / %40 */
    gap: 8px;
    padding: 22px 0;
    align-items: start;
  }

  /* Logo tam ortada */
  .footer__brand{
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .footer__logo{
    width: 175px;
    margin: 0 auto;
    display: block;
  }

  .footer__pages{ grid-column: 1 / 2; }
  .footer__products{ grid-column: 2 / 3; }
  .footer__contact{ grid-column: 3 / 4; }

  /* Yazılar biraz küçük + sıkı */
  .footer h4{
    font-size: 13px;
    margin: 0 0 6px;
    letter-spacing: .15px;
    line-height: 1.15;
  }

  .footer li{
    font-size: 12px;
    margin: 5px 0;
    line-height: 1.25;
  }

  /* E-posta gibi uzun şeyler taşmasın */
  .footer__contact a{
    word-break: break-word;
  }
}


.about-hero {
  position: relative;
  height: 280px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-hero__overlay h1 {
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  letter-spacing: 0.5px;
}

.about-content {
  padding: 60px 0 80px;
  background: #fbfaf7;
  color: #151515;
}

.about-intro h2 {
  font-size: 26px;
  margin-bottom: 14px;
  color: #ce9f35;
  font-weight: 900;
}
.about-intro p {
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: #3a3a3a;
}

.about-values {
  margin-top: 50px;
}
.about-values h3,
.about-goals h3,
.about-concept h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #ce9f35;
  font-weight: 900;
}
.about-values ul {
  list-style: none;
  padding: 0;
}
.about-values li {
  margin-bottom: 10px;
  padding-left: 16px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}
.about-values li::before {
  content: "•";
  color: #ce9f35;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.about-goals {
  margin-top: 50px;
}
.goals-list {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}
.goals-list li {
  padding-left: 16px;
  margin-bottom: 8px;
  position: relative;
}
.goals-list li::before {
  content: "›";
  color: #ce9f35;
  position: absolute;
  left: 0;
  font-weight: bold;
}

.about-concept {
  margin-top: 50px;
}
.about-concept p {
  font-size: 16.5px;
  line-height: 1.65;
  color: #3a3a3a;
}

/* Responsive */
@media (max-width: 760px) {
  .about-hero { height: 180px; }
  .about-hero__overlay h1 { font-size: 28px; }
  .about-content { padding: 40px 0 60px; }
}
/* Products hero */
.page-hero{
  position:relative;
  height:240px;
  overflow:hidden;
  background:#000;
}
.page-hero__bg{
  position:absolute; inset:0;
  background:url("../assets/slider1.jpg") center/cover no-repeat;
  transform:scale(1.03);
}
.page-hero__bg::after{
  content:"";
  position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.44) 45%, rgba(0,0,0,.20) 100%);
}
.page-hero__inner{
  position:relative;
  height:100%;
  display:flex;
  align-items:center;
}
.page-hero h1{
  margin:0;
  color:#fff;
  font-size:clamp(28px, 3.2vw, 44px);
  font-weight:950;
  letter-spacing:.2px;
  line-height:1.08;
}
.page-hero p{
  margin:10px 0 0;
  color:rgba(255,255,255,.90);
  max-width:70ch;
  font-weight:800;
}

/* Page */
.products{
  padding:56px 0 78px;
  background:var(--bg);
}
.products__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.products__head h2{
  margin:0 0 6px;
  font-size:22px;
  font-weight:950;
  letter-spacing:.2px;
}
.products__head p{
  margin:0;
  color:var(--muted);
  font-weight:800;
  font-size:15px;
}

/* Tabs */
.tabs{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  padding:12px;
  border:1px solid var(--border);
  border-radius:16px;
  background:#fff;
  box-shadow:var(--shadow);
  margin-bottom:16px;
}
.tab{
  appearance:none;
  border:1px solid var(--border);
  background:rgba(0,0,0,.02);
  color:#151515;
  border-radius:999px;
  padding:10px 14px;
  font:inherit;
  font-weight:950;
  letter-spacing:.15px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:.18s ease;
  white-space:nowrap;
}
.tab__count{
  display:inline-grid;
  place-items:center;
  min-width:28px;
  height:22px;
  padding:0 8px;
  border-radius:999px;
  background: reminding;
  background:rgba(206,159,53,.14);
  border:1px solid rgba(206,159,53,.28);
  font-size:12px;
  font-weight:950;
}
.tab:hover{ background:rgba(0,0,0,.03); }
.tab.is-active{
  background:rgba(206,159,53,.18);
  border-color:rgba(206,159,53,.35);
}
.tab:focus-visible{
  outline:3px solid rgba(206,159,53,.45);
  outline-offset:2px;
}

/* Grid */
.pgrid{
  display:grid;
  grid-template-columns:repeat(6, minmax(0, 1fr));
  gap:12px;
}
.pitem{
  background:#fff;
  border:1px solid var(--border);
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 10px 22px rgba(0,0,0,.08);
  transform:translateZ(0);
}
.pitem img{
  width:100%;
  aspect-ratio: 1 / 1;
  object-fit:cover;
  display:block;
  user-select:none;
  -webkit-user-drag:none;
  pointer-events:none; /* tıklanabilir olmasın */
}
.pitem.is-hidden{ display:none; }

/* Hover sadece hafif premium (tıklama yok) */
@media (hover:hover) and (pointer:fine){
  .pitem{ transition:transform .18s ease, box-shadow .18s ease; }
  .pitem:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 32px rgba(0,0,0,.12);
  }
}

/* Responsive */
@media (max-width: 1100px){
  .pgrid{ grid-template-columns:repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 980px){
  .pgrid{ grid-template-columns:repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 760px){
  .page-hero{ height:190px; }
  .page-hero__bg::after{
    background:linear-gradient(180deg, rgba(0,0,0,.66), rgba(0,0,0,.28));
  }
  .tabs{ gap:8px; padding:10px; }
  .tab{ padding:9px 12px; }
  .pgrid{ grid-template-columns:repeat(3, minmax(0, 1fr)); gap:10px; }
}
@media (max-width: 420px){
  .pgrid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
}
/* Grid */
.pgrid{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr)); /* ✅ masaüstü 5 sütun */
  gap:12px;
}

@media (max-width: 980px){
  .pgrid{ grid-template-columns:repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 760px){
  .pgrid{ grid-template-columns:1fr; gap:10px; } /* ✅ mobil tek sütun */
}

@media (max-width: 420px){
  .pgrid{ grid-template-columns:1fr; }
}

.page-hero__bg{
  position:absolute;
  inset:0;
  background:url("../assets/slider3.jpg") center/cover no-repeat; /* ✅ 3. slider */
  transform:scale(1.03);
}
