:root{
  --brand-dark:#5b1c1c;
  --brand-gold:#f1b05b;
  --brand-cream:#f7efe6;
  --bg:#ffffff;
  --text:#1b1b1b;
  --muted:#6b6b6b;
  --border:rgba(0,0,0,.12);
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --radius:16px;
}

*{box-sizing:border-box;}
html,body{height:100%;}
body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.55;
}

img{max-width:100%;height:auto;display:block;}
a{color:inherit;text-decoration:none;}
a:hover{text-decoration:underline;}

.container{width:min(1180px, calc(100% - 32px)); margin:0 auto;}

.sr-only{
  position:absolute!important;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* Header */
.site-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(255,255,255,.88);
  backdrop-filter:saturate(180%) blur(12px);
  border-bottom:1px solid var(--border);
}
.header-inner{display:flex;align-items:center;gap:14px; padding:12px 0;}
.brand{display:flex;align-items:center;gap:10px;}
.brand img{height:100px;width:auto;}

.site-nav{flex:1;}
.nav-links{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:8px;
  flex-wrap:wrap;
}
.nav-link{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:999px;
  font-weight:600;
  font-size:13.5px;
  color:var(--brand-dark);
  border:1px solid transparent;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
}
.nav-link i{color:var(--brand-dark);opacity:.9;}
.nav-link:hover{
  text-decoration:none;
  background:rgba(241,176,91,.16);
  border-color:rgba(241,176,91,.45);
}
.nav-link.is-active{
  background:rgba(91,28,28,.08);
  border-color:rgba(91,28,28,.25);
}

.nav-toggle{
  display:none;
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.nav-toggle span{display:block;height:2px;background:var(--brand-dark);margin:6px 10px;border-radius:2px;}

/* Mobile nav */
.mobile-nav{
  position:fixed;
  inset:0;
  display:none;
}
.mobile-nav.is-open{display:block;}
.mobile-nav-backdrop{
  position:absolute;inset:0;
  background:rgba(0,0,0,.55);
}
.mobile-nav-panel{
  position:absolute;
  top:0;right:0;
  height:100vh;
  width:min(420px, 92vw);
  background:#fff;
  border-left:1px solid var(--border);
  display:flex;
  flex-direction:column;
  padding:14px;
  gap:12px;
  transform:translateX(0);
}
.mobile-nav-top{display:flex;align-items:center;justify-content:space-between;gap:10px;}
.mobile-brand img{height:44px;width:auto;}
.mobile-close{
  width:44px;height:44px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  cursor:pointer;
}
.mobile-close i{font-size:18px;color:var(--brand-dark);}

.mobile-search{padding-top:2px;}
.search-input{display:flex;align-items:center;gap:10px;border:1px solid var(--border);border-radius:12px;padding:10px 12px;}
.search-input i{color:var(--muted);}
.search-input input{border:0;outline:0;width:100%;font-size:14px;}
.search-results{
  margin-top:10px;
  border:1px solid var(--border);
  border-radius:12px;
  overflow:hidden;
  display:none;
}
.search-results.is-visible{display:block;}
.search-results a{
  display:block;
  padding:10px 12px;
  border-top:1px solid rgba(0,0,0,.06);
  text-decoration:none;
}
.search-results a:first-child{border-top:0;}
.search-results a:hover{background:rgba(241,176,91,.14);}
.search-results .sr-title{font-weight:700;color:var(--brand-dark);}
.search-results .sr-cat{font-size:12.5px;color:var(--muted);margin-top:2px;}

.mobile-links{
  display:flex;
  flex-direction:column;
  gap:6px;
  overflow-y:auto;
  padding-right:6px;
  flex:1;
  border-top:1px solid rgba(0,0,0,.06);
  padding-top:10px;
}
.mobile-links .nav-link{justify-content:flex-start;font-size:14px;}

.mobile-contact{border-top:1px solid rgba(0,0,0,.06);padding-top:10px;display:flex;flex-direction:column;gap:8px;font-size:13.5px;}
.mobile-contact a{display:flex;align-items:center;gap:10px;color:var(--brand-dark);text-decoration:none;}
.mobile-contact a:hover{text-decoration:underline;}

/* Hero */
.hero{
  background:linear-gradient(135deg, rgba(91,28,28,.08), rgba(241,176,91,.14));
  border-bottom:1px solid var(--border);
}
.hero-inner{padding:36px 0 30px 0;}
.hero-title{
  margin:0;
  font-size:clamp(22px, 3vw, 34px);
  color:var(--brand-dark);
  display:flex;
  align-items:center;
  gap:10px;
}
.hero-title i{color:var(--brand-dark);}
.hero-subtitle{margin:10px 0 0 0;color:var(--muted);max-width:72ch;}

.hero-home .hero-inner{padding:44px 0 36px 0;}
.hero-actions{margin-top:18px;display:flex;flex-wrap:wrap;gap:10px;}

.breadcrumbs{font-size:13px;color:var(--muted);margin-bottom:10px;}
.breadcrumbs a{color:var(--muted);text-decoration:none;}
.breadcrumbs a:hover{text-decoration:underline;}
.breadcrumbs .sep{margin:0 8px;color:rgba(0,0,0,.25);}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:10px 14px;
  border-radius:12px;
  border:1px solid var(--border);
  background:#fff;
  color:var(--brand-dark);
  font-weight:700;
  cursor:pointer;
  text-decoration:none;
  transition:transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform:translateY(-1px);box-shadow:var(--shadow);text-decoration:none;}
.btn:active{transform:translateY(0);box-shadow:none;}
.btn-primary{background:var(--brand-dark);color:#fff;border-color:rgba(91,28,28,.2);}
.btn-primary i{color:#fff;}
.btn-outline{background:#fff;}
.btn-sm{padding:8px 12px;border-radius:12px;font-size:13.5px;}

.section{padding:28px 0;}
.section-alt{background:linear-gradient(180deg, rgba(247,239,230,.6), rgba(255,255,255,1));}
.section-head{margin-bottom:14px;}
.section-head h2{margin:0;font-size:20px;color:var(--brand-dark);display:flex;align-items:center;gap:10px;}
.section-head p{margin:6px 0 0 0;}
.section-head--split{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;flex-wrap:wrap;}

.muted{color:var(--muted);} 
.small{font-size:13px;}

/* Cards / products */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
}

.product-scroll{
  display:flex;
  gap:14px;
  overflow-x:auto;
  padding:6px 4px 12px 4px;
  scroll-snap-type:x mandatory;
  -webkit-overflow-scrolling:touch;
}
.product-scroll > .product-card{scroll-snap-align:start;}

.product-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  box-shadow:0 4px 14px rgba(0,0,0,.04);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
.product-scroll .product-card{flex:0 0 260px;}

.product-image-wrap{
  position:relative;
  background:var(--brand-cream);
  aspect-ratio: 4 / 3;
  overflow:hidden;
}
.product-image-wrap--big{aspect-ratio: 4 / 3; border-radius:var(--radius); border:1px solid rgba(0,0,0,.08);}
.product-img{width:100%;height:100%;object-fit:contain;}

.zoom-btn{
  position:absolute;
  top:10px;right:10px;
  z-index:2;
  width:40px;height:40px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.55);
  background:rgba(0,0,0,.45);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.zoom-btn i{color:#fff;}
.zoom-btn:hover{background:rgba(0,0,0,.55);}

.img-loader{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg, rgba(91,28,28,.08), rgba(241,176,91,.18));
  color:var(--brand-dark);
  font-weight:700;
}
.img-loader img{width:90px;height:auto;opacity:.95;}
.img-loader span{font-size:13px;}
.img-loader.is-hidden{display:none;}

.product-card-body{padding:14px 14px 16px 14px;display:flex;flex-direction:column;gap:8px;}
.product-scroll .product-name{
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-cat{margin:0;color:var(--muted);font-size:13px;}

/* Product page layout */
.product-layout{display:grid;grid-template-columns: 420px 1fr;gap:18px;align-items:start;}
.product-media{display:flex;flex-direction:column;gap:12px;}
.product-actions{display:flex;gap:10px;flex-wrap:wrap;}
.product-details{display:flex;flex-direction:column;gap:14px;}

.panel{
  border:1px solid rgba(0,0,0,.08);
  border-radius:var(--radius);
  background:#fff;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
  padding:16px;
}
.panel h2{margin:0 0 10px 0;font-size:17px;color:var(--brand-dark);display:flex;align-items:center;gap:10px;}
.panel p{margin:0;}

.table-wrap{overflow:auto;}
.info-table{width:100%;border-collapse:collapse;min-width:320px;}
.info-table th,
.info-table td{padding:10px 12px;border-top:1px solid rgba(0,0,0,.08);text-align:left;}
.info-table tr:first-child th,
.info-table tr:first-child td{border-top:0;}
.info-table th{font-weight:800;color:var(--brand-dark);white-space:nowrap;}
.info-table th i{margin-right:8px;color:var(--brand-gold);}

/* Contact */
.contact-cards{display:grid;grid-template-columns:repeat(4, 1fr);gap:12px;}
.contact-card{
  display:flex;align-items:center;justify-content:center;gap:10px;
  padding:14px;border-radius:14px;border:1px solid rgba(0,0,0,.08);
  background:#fff;
  font-weight:800;color:var(--brand-dark);
  text-decoration:none;
}
.contact-card:hover{text-decoration:none;box-shadow:var(--shadow);}

.contact-page{display:grid;grid-template-columns:repeat(3, 1fr);gap:14px;}
.big-link{font-size:18px;font-weight:900;color:var(--brand-dark);text-decoration:none;}
.big-link:hover{text-decoration:underline;}

/* Certificates */
.cert-grid{display:grid;grid-template-columns:repeat(4, 1fr);gap:14px;}
.cert-card{border-radius:var(--radius);border:1px solid rgba(0,0,0,.08);overflow:hidden;background:#fff;}
.cert-btn{width:100%;border:0;background:none;padding:0;cursor:pointer;text-align:left;}
.cert-btn img{width:100%;aspect-ratio:3/4;object-fit:cover;display:block;}
.cert-label{display:flex;align-items:center;gap:8px;padding:12px;font-weight:800;color:var(--brand-dark);}
.cert-label i{color:var(--brand-gold);}

/* PDF */
.katalog-head{display:flex;align-items:flex-start;justify-content:space-between;gap:12px;flex-wrap:wrap;}
.pdf-wrap{margin-top:12px;border:1px solid rgba(0,0,0,.1);border-radius:14px;overflow:hidden;background:var(--brand-cream);}
.pdf-wrap iframe{width:100%;height:min(75vh, 820px);border:0;display:block;}

/* Footer */
.site-footer{background:linear-gradient(180deg, rgba(91,28,28,.04), rgba(0,0,0,.02));border-top:1px solid var(--border);}
.footer-grid{display:grid;grid-template-columns: 1.3fr 1fr 1fr 1fr;gap:16px;padding:28px 0;}
.footer-brand img{height:100px;width:auto;margin-bottom:10px;}
.footer-brand p{margin:0 0 10px 0;color:var(--muted);}
.footer-contact{display:flex;flex-direction:column;gap:8px;font-size:13.5px;}
.footer-contact a,
.footer-contact span{display:flex;align-items:flex-start;gap:10px;color:var(--brand-dark);text-decoration:none;}
.footer-contact a:hover{text-decoration:underline;}

.footer-col h3{margin:0 0 10px 0;color:var(--brand-dark);font-size:16px;}
.footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px;font-size:13.5px;}
.footer-links a{display:flex;align-items:center;gap:10px;color:var(--brand-dark);text-decoration:none;}
.footer-links a i{color:var(--brand-gold);}
.footer-links a:hover{text-decoration:underline;}

.footer-cta{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:8px;}
.footer-note{margin:0;color:var(--muted);font-size:13.5px;}

.footer-bottom{border-top:1px solid rgba(0,0,0,.08);padding:12px 0;}
.footer-bottom-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap;color:var(--muted);font-size:13px;}
.footer-small{opacity:.8;}

/* Lightbox */
.lightbox{position:fixed;inset:0;display:none;z-index:2000;}
.lightbox.is-open{display:block;}
.lightbox-backdrop{position:absolute;inset:0;background:rgba(0,0,0,.72);}
.lightbox-dialog{
  position:absolute;
  inset: 18px;
  margin:auto;
  max-width:1100px;
  max-height:calc(100vh - 36px);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  border-radius:18px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
}
.lightbox-title{
  position:absolute;
  left:14px;right:14px;top:10px;
  color:#fff;
  font-weight:900;
  text-shadow:0 6px 18px rgba(0,0,0,.35);
  padding-right:120px;
}
.lightbox-dialog img{max-width:100%;max-height:calc(100vh - 90px);object-fit:contain;}

.lightbox-close,
.lightbox-prev,
.lightbox-next{
  position:absolute;
  border:1px solid rgba(255,255,255,.25);
  background:rgba(0,0,0,.4);
  color:#fff;
  width:44px;height:44px;
  border-radius:14px;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;
}
.lightbox-close{top:10px;right:10px;}
.lightbox-prev{left:10px;top:50%;transform:translateY(-50%);}
.lightbox-next{right:10px;top:50%;transform:translateY(-50%);}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover{background:rgba(0,0,0,.55);}

/* Responsive */
@media (max-width: 1050px){
  .product-grid{grid-template-columns:repeat(3, 1fr);}  
  .footer-grid{grid-template-columns:1.4fr 1fr 1fr;}
  .footer-col:last-child{grid-column:1/-1;}
}

@media (max-width: 860px){
  .site-nav{display:none;}
  .nav-toggle{display:block;}
  .product-layout{grid-template-columns:1fr;}
  .product-image-wrap--big{aspect-ratio: 16/11;}
  .product-scroll .product-card{flex-basis: 250px;}
  .contact-cards{grid-template-columns:repeat(2, 1fr);} 
  .contact-page{grid-template-columns:1fr;}
  .cert-grid{grid-template-columns:repeat(2, 1fr);} 
  .product-grid{grid-template-columns:repeat(2, 1fr);}  
  .footer-grid{grid-template-columns:1fr 1fr;}
  .footer-brand{grid-column:1/-1;}
}

@media (max-width: 520px){
  .hero-inner{padding:28px 0 22px 0;}
  .hero-home .hero-inner{padding:34px 0 26px 0;}
  .product-grid{grid-template-columns:1fr;}
  .product-scroll .product-card{flex-basis: 82vw;}
  .lightbox-dialog{inset:12px;}
  .lightbox-title{padding-right:70px;font-size:14px;}
}

/* Improve horizontal scrolling UX */
.product-scroll::-webkit-scrollbar{height:10px;}
.product-scroll::-webkit-scrollbar-thumb{background:rgba(91,28,28,.2);border-radius:999px;}
.product-scroll::-webkit-scrollbar-track{background:rgba(0,0,0,.06);border-radius:999px;}

/* Reduce motion */
@media (prefers-reduced-motion: reduce){
  *{scroll-behavior:auto!important;transition:none!important;}
}

/* Scroll arrows (added by JS) */
.scroll-wrap{position:relative;}
.scroll-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.92);
  box-shadow:var(--shadow);
  display:grid;
  place-items:center;
  cursor:pointer;
}
.scroll-arrow:hover{filter:brightness(.98);}
.scroll-arrow:disabled{opacity:.35;cursor:not-allowed;}
.scroll-arrow--prev{left:-10px;}
.scroll-arrow--next{right:-10px;}

@media (max-width: 980px){
  .scroll-arrow{display:none;}
}









/* === MOBİL MENÜ ÜST SİYAH OPACITY FIX === */
@media (max-width: 900px){

  .site-header{
    background:#fff !important;
    backdrop-filter:none !important;
    -webkit-backdrop-filter:none !important;
  }

  .mobile-nav-backdrop{
    display:none !important;
  }

  body::before,
  body::after,
  header::before,
  header::after{
    content:none !important;
    background:none !important;
    display:none !important;
  }
}




.hero-title{
  text-transform: uppercase;
  letter-spacing: 0.04em;
}





.product-name{
  text-transform: uppercase;
  letter-spacing: 0.03em;
}






















/* ===== WHATSAPP SUPPORT ===== */
.wa-widget{
  position:fixed;
  right:20px;
  bottom:20px;
  z-index:9999;
}

/* Floating Button */
.wa-btn{
  width:58px;
  height:58px;
  border-radius:50%;
  border:none;
  background:#25D366;
  color:#fff;
  font-size:30px;
  cursor:pointer;
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  display:flex;
  align-items:center;
  justify-content:center;
}

.wa-btn:hover{
  filter:brightness(.95);
}

/* Chat Box */
.wa-chat{
  position:absolute;
  bottom:70px;
  right:0;
  width:300px;
  background:#fff;
  border-radius:14px;
  box-shadow:0 15px 35px rgba(0,0,0,.25);
  overflow:hidden;
  display:none;
  flex-direction:column;
}

.wa-chat.active{
  display:flex;
}

/* Header */
.wa-header{
  display:flex;
  align-items:center;
  gap:10px;
  padding:12px;
  background:#25D366;
  color:#fff;
}

.wa-header img{
  width:36px;
  height:36px;
  border-radius:50%;
  background:#fff;
  object-fit:contain;
  padding:4px;
}

.wa-header strong{
  display:block;
  font-size:14px;
}

.wa-header span{
  font-size:12px;
  opacity:.9;
}

/* Body */
.wa-body{
  padding:14px;
  font-size:14px;
  color:#333;
  background:#f5f5f5;
}

.wa-body p{
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  display:inline-block;
}

/* Footer */
.wa-footer{
  padding:12px;
  background:#fff;
}

.wa-send{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:10px;
  background:#25D366;
  color:#fff;
  font-weight:700;
  border-radius:10px;
  text-decoration:none;
}

.wa-send:hover{
  filter:brightness(.95);
}

/* Mobil */
@media (max-width:480px){
  .wa-chat{
    width:260px;
  }
}











/* ===== MAP PREMIUM ===== */
.map-section{
  padding:40px 0;
  background:linear-gradient(180deg, rgba(247,239,230,.7), #fff);
}

.map-card{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  background:#fff;
  border-radius:18px;
  box-shadow:0 18px 40px rgba(0,0,0,.14);
  overflow:hidden;
}

/* Map */
.map-embed iframe{
  width:100%;
  height:100%;
  min-height:340px;
  border:0;
}

/* Info */
.map-info{
  padding:26px;
  display:flex;
  flex-direction:column;
  gap:16px;
  justify-content:center;
}

.map-title{
  display:flex;
  align-items:center;
  gap:12px;
  font-size:22px;
  font-weight:900;
  color:#5b1c1c;
}

/* Animated Pin */
.map-title i{
  color:#5b1c1c;
  font-size:26px;
}

/* Pulse animation */
.pulse-pin{
  animation:pulse 1.6s infinite;
}

@keyframes pulse{
  0%{
    transform:scale(1);
    opacity:1;
  }
  50%{
    transform:scale(1.25);
    opacity:.75;
  }
  100%{
    transform:scale(1);
    opacity:1;
  }
}

.map-address{
  font-size:15px;
  line-height:1.7;
  color:#333;
}

/* Button */
.map-actions{
  margin-top:8px;
}

.map-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 20px;
  border-radius:14px;
  background:#5b1c1c;
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 10px 25px rgba(91,28,28,.45);
  transition:transform .2s ease, box-shadow .2s ease;
}

.map-btn i{
  color:#fff;
}

.map-btn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 30px rgba(91,28,28,.6);
}

/* Responsive */
@media (max-width:860px){
  .map-card{
    grid-template-columns:1fr;
  }
  .map-embed iframe{
    min-height:260px;
  }
}






::selection{
  background:#5b1c1c;
  color:#fff;
}



::-moz-selection{
  background:#5b1c1c;
  color:#fff;
}



::selection{
  background:#5b1c1c;
  color:#fff;
}

::-moz-selection{
  background:#5b1c1c;
  color:#fff;
}

/* Android WebKit (kısmi destek) */
::-webkit-selection{
  background:#5b1c1c;
  color:#fff;
}



.instagram-section{
  padding:40px 0;
  background:linear-gradient(180deg, rgba(247,239,230,.7), #fff);
  border-top:1px solid rgba(0,0,0,.08);
}

.instagram-head{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin-bottom:18px;
  color:#5b1c1c;
  flex-wrap:wrap;
}

.instagram-head i{
  font-size:26px;
  color:#E1306C;
}

.instagram-head h2{
  margin:0;
  font-size:22px;
  font-weight:900;
}

.verified-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:4px 10px;
  font-size:13px;
  font-weight:700;
  border-radius:999px;
  background:#e8f0fe;
  color:#1a73e8;
}

.verified-badge i{
  font-size:14px;
  color:#1a73e8;
}

.instagram-embed{
  max-width:1100px;
  margin:0 auto;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.08);
  background:#fff;
}

.instagram-embed iframe{
  width:100%;
  height:560px;
  border:0;
}

/* Mobil */
@media (max-width:768px){
  .instagram-embed iframe{
    height:480px;
  }
}



















/* ===============================
   SLIDER GRUBU
================================ */
.banner-sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px;
}

/* ===============================
   TEK SLIDER
================================ */
.banner-slider {
    width: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.banner-slider::-webkit-scrollbar {
    display: none;
}

/* ===============================
   SLIDE
================================ */
.banner-slide {
    display: block;
    scroll-snap-align: center;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    background: #fff;
}

/* ===============================
   GÖRSEL
================================ */
.banner-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 24px;
}

/* ===============================
   MASAÜSTÜ KONTROL (ASIL DÜZELTME)
================================ */
@media (min-width: 992px) {

    .banner-sliders {
        align-items: center;
    }

    .banner-slider {
        max-width: 960px;      /* ⬅️ DAHA KÜÇÜK VE DENGELİ */
        width: 100%;
    }

    .banner-slide img {
        max-height: 320px;     /* ⬅️ KOCAMAN OLMAYI BİTİRİR */
        object-fit: cover;
    }
}

