/* Evde L端ks Mobilya - Frontend */
:root{
  --bg:#f5f5f6;
  --card:#ffffff;
  --text:#141414;
  --muted:#6b6b6b;
  --border:#e7e7e7;
  --shadow:0 10px 30px rgba(0,0,0,.06);
  --radius:18px;
  --green:#18a558;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.5;
  overflow-x:hidden;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}

/* Sayfa scroll kilidi (Lightbox / mobil menü için) */
html.no-scroll{overflow:hidden}
html.no-scroll body{overflow:hidden}
.container{width:min(1180px, 92vw);margin:0 auto}
.skip-link{position:absolute;left:-9999px;top:-9999px}
.skip-link:focus{left:12px;top:12px;background:#fff;padding:10px 12px;border:1px solid var(--border);border-radius:10px;z-index:9999}

/* Header */
.site-header{position:sticky;top:0;z-index:1000}
.topbar{
  background:rgba(255,255,255,.96);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(8px);
}
.topbar-inner{display:flex;align-items:center;justify-content:space-between;padding:12px 0;gap:12px}
.brand-logo{height:70px;width:auto}
.brand-text{font-weight:700;letter-spacing:.4px}

.nav-desktop{display:none}
.nav-list{list-style:none;display:flex;gap:12px;align-items:center;margin:0;padding:0;flex-wrap:wrap}
.nav-link{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 10px;border-radius:12px;
  color:#222;
}
.nav-link:hover{background:#f2f2f2}
.nav-link.active{background:#f0f0f0;border:1px solid var(--border)}
.nav-icon{width:18px;height:18px;object-fit:contain;opacity:.85}

.nav-toggle{
  width:44px;height:44px;border:1px solid var(--border);
  background:#fff;border-radius:14px;display:flex;flex-direction:column;gap:5px;
  align-items:center;justify-content:center;
}
.nav-toggle span{width:18px;height:2px;background:#111;border-radius:2px}

/* Mobile menu */
.backdrop{position:fixed;inset:0;background:rgba(0,0,0,.35);opacity:0;pointer-events:none;transition:.2s;z-index:999}
.mobile-menu{
  position:fixed;top:0;left:0;height:100%;width:min(92vw, 380px);
  background:#fff;transform:translateX(-105%);
  transition:.25s;z-index:1000;border-right:1px solid var(--border);
  display:flex;flex-direction:column;
}
.mobile-menu.is-open{transform:translateX(0)}
.backdrop.is-open{opacity:1;pointer-events:auto}
.mobile-menu-header{display:flex;align-items:center;justify-content:space-between;padding:14px;border-bottom:1px solid var(--border)}
.menu-close{width:42px;height:42px;border:1px solid var(--border);background:#fff;border-radius:14px;font-size:24px;line-height:1}
.mobile-search{padding:12px 14px;border-bottom:1px solid var(--border);display:flex;gap:8px}
.mobile-search input{
  flex:1;border:1px solid var(--border);border-radius:12px;padding:10px 12px;font-size:15px
}
.mobile-search button{
  border:1px solid var(--border);border-radius:12px;background:#111;color:#fff;padding:10px 14px
}
.mobile-menu-content{padding:14px;overflow:auto}
.mobile-menu-section{margin-bottom:18px}
.mobile-section-title{font-size:12px;color:var(--muted);text-transform:uppercase;letter-spacing:.12em;margin:10px 2px}
.mobile-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.mobile-links a{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border:1px solid var(--border);border-radius:14px;background:#fafafa;
}

/* Sections */
.site-main{padding-bottom:40px}
.section{padding:34px 0}
.section-muted{background:linear-gradient(180deg, rgba(0,0,0,0.02), rgba(0,0,0,0.00))}
.section-head{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.section-head h2{margin:0;font-size:22px}
.section-head p{margin:0;color:var(--muted)}

.page-hero{padding:18px 0 8px}
.page-hero h1{margin:8px 0 0;font-size:26px}
.breadcrumb{color:var(--muted);font-size:14px;display:flex;gap:8px;flex-wrap:wrap;align-items:center}
.breadcrumb a{color:inherit;text-decoration:underline;text-underline-offset:3px}
.breadcrumb span{opacity:.75}

/* Hero slider */
.hero{padding:16px 0 6px}
.hero-placeholder{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;min-height:260px;display:grid;place-items:center;
}
.hero-placeholder-inner{padding:28px;text-align:center}
.hero-placeholder h1{margin:0 0 8px;font-size:28px}
.hero-placeholder p{margin:0;color:var(--muted)}
.slider{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
}
.slider-track{
  display:flex;overflow-x:auto;scroll-snap-type:x mandatory;scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}
.slider-track::-webkit-scrollbar{display:none}
.slide{min-width:100%;scroll-snap-align:start;display:block}
.slide img{width:100%;height:min(420px, 46vw);object-fit:cover}
.slider-dots{display:flex;gap:8px;justify-content:center;padding:12px 10px;border-top:1px solid var(--border);background:#fff}
.slider-dot{width:9px;height:9px;border-radius:999px;border:1px solid #bbb;background:#eee;cursor:pointer}
.slider-dot.is-active{background:#111;border-color:#111}

/* Category grid (2 columns desktop) */
.category-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width: 720px){
  .category-grid{grid-template-columns: 1fr 1fr;}
}
.category-card{
  position:relative;
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
  min-height:180px;
}
.category-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  transform:scale(1.01);
}
.category-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,0.0), rgba(0,0,0,.55));
  display:flex;align-items:flex-end;
}
.category-title{
  color:#fff;font-weight:700;
  padding:16px;
  text-shadow:0 10px 22px rgba(0,0,0,.3);
}
.img-fallback{
  height:100%;min-height:180px;
  display:grid;place-items:center;
  color:var(--muted);
  background:#fafafa;
}
.img-fallback.big{min-height:320px;border:1px dashed var(--border);border-radius:var(--radius)}

/* Products */
.products-row{
  display:flex;
  gap:12px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding-bottom:8px;
}
.products-row::-webkit-scrollbar{display:none}
.product-card{
  min-width:220px;
  scroll-snap-align:start;
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
}
.product-img{height:170px;background:#fafafa}
.product-img img{width:100%;height:100%;object-fit:cover}
.product-info{padding:12px 12px 14px}
.product-title{font-weight:700}
.product-meta{color:var(--muted);font-size:13px;margin-top:4px}

.products-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (min-width: 900px){
  .products-grid{grid-template-columns: repeat(4, 1fr);}
}
@media (max-width: 520px){
  .products-grid{grid-template-columns: 1fr;}
}

/* Product detail */
/* Grid içinde taşmaları engellemek için minmax(0, ..) + min-width:0 kullanıyoruz */
.product-layout{display:grid;gap:18px;grid-template-columns:minmax(0,1fr)}
.product-gallery,.product-detail{min-width:0}
@media (min-width: 980px){
  .product-layout{grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);align-items:start}
}
.product-h1{margin:0 0 10px;font-size:26px}
.product-actions{display:flex;flex-direction:column;gap:12px;margin-bottom:14px}
.product-section h2{margin:18px 0 8px;font-size:18px}

/* Product features card (premium / 3D look) */
.features-card{
  background:linear-gradient(180deg, #fff, #f7f8fa);
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:16px;
  box-shadow:0 14px 38px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.7);
}
.features-card .muted{margin:0}
.features-card .richtext{color:#222}
.features-card .richtext p:first-child{margin-top:0}
.features-card .richtext table{width:100%;border-collapse:separate;border-spacing:0;border:1px solid var(--border);border-radius:14px;overflow:hidden}
.features-card .richtext th, .features-card .richtext td{padding:10px 12px;border-bottom:1px solid var(--border);text-align:left}
.features-card .richtext tr:last-child td{border-bottom:0}
.features-card .richtext ul{padding-left:20px;margin:8px 0}
.features-card .richtext li{margin:6px 0}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  border-radius:14px;border:1px solid var(--border);
  padding:10px 14px;background:#fff;
  font-weight:600;cursor:pointer;
}
.btn svg,.btn img{width:18px;height:18px}
.btn-primary{background:#111;color:#fff;border-color:#111}
.btn-outline{background:#fff;color:#111}
.btn-lg{padding:12px 16px;border-radius:16px}
.btn-whatsapp{background:var(--green);border-color:var(--green);color:#fff}
.btn-whatsapp:hover{filter:brightness(.97)}
.btn-whatsapp img{filter:brightness(0) invert(1)}
.actions{display:flex;gap:10px;flex-wrap:wrap;margin-top:14px}

/* Share */
.share{background:#fff;border:1px solid var(--border);border-radius:var(--radius);padding:12px;box-shadow:var(--shadow)}
.share-title{font-weight:700;margin-bottom:8px}
.share-buttons{display:flex;gap:10px;flex-wrap:wrap}
.icon-btn{
  width:42px;height:42px;border-radius:14px;
  display:inline-flex;align-items:center;justify-content:center;
  border:1px solid var(--border);background:#fafafa;cursor:pointer;
}
.icon-btn svg,.icon-btn img{width:20px;height:20px}
.share-note{color:var(--muted);font-size:13px;margin-top:8px}

/* Gallery */
.gallery{
  position:relative;
  width:100%;
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);
  min-width:0;
}

/* Masaüstü okları (galeri içinde) */
.gallery-arrow{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.14);
  background:rgba(255,255,255,.88);
  backdrop-filter: blur(8px);
  display:none;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  cursor:pointer;
  z-index:10;
}
.gallery-arrow.prev{left:10px}
.gallery-arrow.next{right:10px}
.gallery-arrow:disabled{opacity:.45;cursor:not-allowed}

@media (min-width: 900px){
  .gallery-arrow{display:flex}
}
.gallery-track{
  width:100%;
  min-width:0;
  display:flex;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  -webkit-overflow-scrolling:touch;
}
.gallery-track::-webkit-scrollbar{display:none}
.gallery-item{
  flex:0 0 100%;
  min-width:100%;
  max-width:100%;
  scroll-snap-align:start;
  border:0;padding:0;background:transparent;cursor:pointer;
}
.gallery-item{
  display:flex;
  align-items:center;
  justify-content:center;
}
.gallery-item img{width:100%;height:min(440px, 56vw);object-fit:cover}

/* Mobilde ürün görseli sayfayı bozmasın: daha küçük, taşma yok */
@media (max-width: 900px){
  .gallery-track{align-items:center}
  .gallery-item{padding:6px 0}
  .gallery-item img{
    /* Mobilde görsel sayfayı taşırmasın ve sağ/sol boşluk (letterbox) olmasın */
    height:clamp(220px, 60vw, 340px);
    object-fit:cover;
  }
}
.gallery-dots{display:flex;gap:8px;justify-content:center;padding:12px;border-top:1px solid var(--border);background:#fff}

/* Thumbnail önizleme barı */
.gallery-dots.thumbs{
  justify-content:flex-start;
  gap:10px;
  padding:10px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
}
.gallery-dots.thumbs::-webkit-scrollbar{display:none}
.gallery-dots.thumbs .thumb{
  flex:0 0 auto;
  width:72px;
  height:56px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fafafa;
  padding:0;
  overflow:hidden;
  cursor:pointer;
  scroll-snap-align:start;
}
.gallery-dots.thumbs .thumb img{width:100%;height:100%;object-fit:cover}
.gallery-dots.thumbs .thumb.is-active{
  border-color:#111;
  box-shadow:0 0 0 2px #111 inset;
}
@media (max-width: 520px){
  .gallery-dots.thumbs{padding:12px;gap:12px}
  .gallery-dots.thumbs .thumb{width:92px;height:70px;border-radius:14px}
}

@media (max-width: 380px){
  .gallery-dots.thumbs .thumb{width:84px;height:64px}
}
.gallery-hint{color:var(--muted);font-size:13px;margin-top:8px}

/* Accordion */
.accordion{display:flex;flex-direction:column;gap:10px}
.acc-item{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  box-shadow:var(--shadow);overflow:hidden;
}
.acc-btn{
  width:100%;
  display:flex;justify-content:space-between;align-items:center;
  padding:14px 14px;
  background:#fff;border:0;font-weight:700;cursor:pointer;text-align:left;
}
.acc-icon{font-size:20px;color:var(--muted)}
.acc-panel{max-height:0;overflow:hidden;transition:max-height .25s ease}
.acc-content{padding:0 14px 14px;color:#333}
.acc-item.is-open .acc-panel{max-height:400px}
.acc-item.is-open .acc-icon{transform:rotate(45deg)}

/* Rich text */
.richtext{color:#222}
.richtext a{color:#0b57d0;text-decoration:underline;text-underline-offset:3px}
.richtext code{background:#f3f3f3;padding:2px 6px;border-radius:8px}
.richtext pre{background:#111;color:#fff;padding:12px;border-radius:14px;overflow:auto}
.muted{color:var(--muted)}
.empty-state{
  background:#fff;border:1px dashed var(--border);
  border-radius:var(--radius);padding:18px;color:var(--muted);
}

/* Blog */
.blog-grid{
  display:grid;grid-template-columns: 1fr;gap:14px;
}
@media (min-width: 860px){
  .blog-grid{grid-template-columns: repeat(3, 1fr);}
}
.blog-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow);display:flex;flex-direction:column;
}
.blog-img{height:170px;background:#fafafa}
.blog-img img{width:100%;height:100%;object-fit:cover}
.blog-info{padding:14px}
.blog-title{font-weight:800;font-size:18px;margin-bottom:6px}
.blog-excerpt{color:var(--muted);font-size:14px}
.blog-date{margin-top:10px;color:var(--muted);font-size:13px}
.blog-detail h1{margin:0 0 6px}
.blog-hero-img{margin:14px 0;border-radius:var(--radius);overflow:hidden;border:1px solid var(--border)}
.blog-hero-img img{width:100%;height:min(420px, 54vw);object-fit:cover}

/* Blog detail readability */
.blog-post-card{
  background:linear-gradient(180deg, #fff, #f7f8fa);
  border:1px solid var(--border);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:18px;
}
.blog-post-card h1{margin:0 0 10px}
.blog-post-content{padding-top:2px}
.blog-post-card .richtext{color:#222;line-height:1.75;font-size:16px}
.blog-post-card .richtext p{margin:0 0 12px}
.blog-post-card .richtext h2,
.blog-post-card .richtext h3{margin:18px 0 10px}
.blog-post-card .richtext img{border-radius:14px;border:1px solid var(--border)}

/* Contact */
.contact-card{
  background:#fff;border:1px solid var(--border);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:18px;
}
.contact-row{display:grid;grid-template-columns: 110px 1fr;gap:10px;padding:10px 0;border-bottom:1px solid var(--border)}
.contact-row:last-child{border-bottom:0}
.contact-label{color:var(--muted);font-weight:700}
.contact-value a{text-decoration:underline;text-underline-offset:3px}
.contact-actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:16px}

/* Search */
.search-inline{display:flex;gap:10px;margin-top:10px;flex-wrap:wrap}
.search-inline input{flex:1;min-width:220px;border:1px solid var(--border);border-radius:14px;padding:10px 12px}
.search-inline button{border:1px solid #111;background:#111;color:#fff;border-radius:14px;padding:10px 14px}

/* Footer */
.site-footer{background:#fff;border-top:1px solid var(--border)}
.footer-grid{display:grid;gap:18px;padding:26px 0}
@media (min-width: 900px){
  .footer-grid{grid-template-columns: 1.2fr 1fr 1fr 1.2fr;align-items:start}
}
.footer-logo img{height:42px;width:auto}
.footer-title{font-weight:800;margin-bottom:10px}
.footer-links{list-style:none;margin:0;padding:0;display:flex;flex-direction:column;gap:8px}
.footer-links a{color:#222}
.footer-links a:hover{text-decoration:underline;text-underline-offset:3px}
.footer-text{color:#222}
.footer-contact{display:flex;gap:8px;flex-wrap:wrap;margin:10px 0;color:var(--muted)}
.footer-actions{display:flex;gap:10px;flex-wrap:wrap}
.footer-social{margin-top:12px;display:flex;gap:10px}
.footer-bottom{border-top:1px solid var(--border);padding:14px 0;color:var(--muted)}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.92);
  display:none;
  z-index:2000;
  flex-direction:column;
}
.lightbox.is-open{display:flex}

.lightbox-top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:calc(12px + env(safe-area-inset-top)) 12px 10px;
  z-index:3;
}

.lightbox-counter{
  color:rgba(255,255,255,.85);
  font-size:14px;
  letter-spacing:.02em;
}

.lightbox-actions{display:flex;align-items:center;gap:10px}

.lightbox-zoom{display:none;gap:8px}
@media (min-width: 900px){
  .lightbox-zoom{display:flex}
}

.lb-btn,
.lightbox-close{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.38);
  color:#fff;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  line-height:1;
}

.lightbox-stage{
  position:relative;
  flex:1;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:0 12px calc(12px + env(safe-area-inset-bottom));
}

.lightbox-stage,
.lightbox-img{touch-action:none}

.lightbox-img{
  max-width:100%;
  max-height:100%;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.15);
  user-select:none;
  -webkit-user-drag:none;
  will-change:transform;
  transform:translate(0px, 0px) scale(1);
}

/* Lightbox sağ/sol okları */
.lightbox-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:52px;
  height:52px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.18);
  background:rgba(0,0,0,.35);
  color:#fff;
  font-size:34px;
  line-height:1;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:3;
}
.lightbox-nav.prev{left:12px}
.lightbox-nav.next{right:12px}
.lightbox-nav:disabled{opacity:.35;cursor:not-allowed}

@media (max-width: 520px){
  .lightbox-nav{width:44px;height:44px;border-radius:14px;font-size:30px}
}

/* Dokunmatik cihazlar (mobil/tablet) iyileştirmeleri */
@media (hover: none) and (pointer: coarse){
  /* Mobilde okları gizle (swipe ile geçiş) */
  .gallery-arrow{display:none !important}
  .lightbox-nav{display:none !important}

  /* Thumbnail'lar mobilde daha büyük olsun */
  .gallery-dots.thumbs{padding:12px;gap:12px}
  .gallery-dots.thumbs .thumb{width:96px;height:72px;border-radius:14px}

  /* Lightbox tam ekran hissi */
  .lightbox-top{
    position:fixed;
    top:0;left:0;right:0;
    background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,0));
  }
  .lightbox-stage{
    padding:0;
    padding-top:calc(68px + env(safe-area-inset-top));
    padding-bottom:env(safe-area-inset-bottom);
  }
  .lightbox-img{
    width:100%;
    height:100%;
    max-width:100%;
    max-height:100%;
    border:0;
    border-radius:0;
    object-fit:contain;
  }
}







/* WhatsApp butonunu tam ortaya sabitle */
.btn.btn-whatsapp.btn-lg{
  display:flex;
  align-items:center;
  justify-content:center;
  margin-left:auto;
  margin-right:auto;
}
/* WhatsApp butonu ile paylaş alanı arasına boşluk */
.btn.btn-whatsapp.btn-lg{
  margin-bottom:12px;
}



/* Paylaş ikonları: tam görünüm, kırpılma yok */
.icon-btn .share-ic{
  width:22px;
  height:22px;
  display:block;
  overflow:visible;
}


/* =====================================
   FOOTER ICONS – PREMIUM & STRONG STYLE
   ===================================== */

/* Tüm footer ikonlarını garanti kapsa */
.site-footer svg,
.site-footer img,
.site-footer .icon-btn img {
  vertical-align: middle !important;
}

/* Başlık ikonları (Kurumsal, Kategoriler, Adres) */
.site-footer .footer-title svg {
  opacity: 0.95 !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.35)) !important;
}

/* Footer link ikonları */
.site-footer .footer-links a svg,
.site-footer .footer-contact a svg {
  width: 16px !important;
  height: 16px !important;
  opacity: 0.85 !important;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.4)) !important;
  transition: transform .25s ease, opacity .25s ease, filter .25s ease !important;
}

/* Hover → premium hissiyat */
.site-footer .footer-links a:hover svg,
.site-footer .footer-contact a:hover svg {
  opacity: 1 !important;
  transform: translateX(3px) scale(1.1) !important;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.45)) !important;
}

/* WhatsApp & Ara buton ikonları */
.site-footer .footer-actions .btn svg {
  width: 18px !important;
  height: 18px !important;
  filter: drop-shadow(0 3px 6px rgba(0,0,0,0.45)) !important;
  transition: transform .25s ease, filter .25s ease !important;
}

/* WhatsApp hover → güçlü glow */
.site-footer .btn-whatsapp {
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35) !important;
}

.site-footer .btn-whatsapp:hover {
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.55) !important;
}

.site-footer .btn-whatsapp:hover svg {
  transform: scale(1.15) !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.6)) !important;
}

/* Hemen Ara hover */
.site-footer .btn-outline:hover svg {
  transform: scale(1.15) !important;
  filter: drop-shadow(0 6px 12px rgba(0,0,0,0.55)) !important;
}

/* Sosyal ikonlar (Instagram vb.) */
.site-footer .footer-social .icon-btn {
  box-shadow: 0 4px 14px rgba(0,0,0,0.25) !important;
  transition: transform .25s ease, box-shadow .25s ease !important;
}

.site-footer .footer-social .icon-btn:hover {
  transform: translateY(-3px) scale(1.1) !important;
  box-shadow: 0 10px 26px rgba(0,0,0,0.35) !important;
}
