/* =========================================================
   ROOT VARIABLES
   ========================================================= */
:root{
  --bg-color:#ffffff;
  --white:#ffffff;
  --br:16px;
  --accent:#e60023;
  --dark:#1a1a1a;
  --footer-light:#f1f1f1;
	--header-height:55px;
}
/* =========================================================
   RESET / BASE
   ========================================================= */

@font-face{
  font-family:"Poppins";
  src:url("../fonts/Poppins-Regular.woff2") format("woff2");
  font-weight:400;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Poppins";
  src:url("../fonts/Poppins-Medium.woff2") format("woff2");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Poppins";
  src:url("../fonts/Poppins-SemiBold.woff2") format("woff2");
  font-weight:600;
  font-style:normal;
  font-display:swap;
}

@font-face{
  font-family:"Poppins";
  src:url("../fonts/Poppins-ExtraBold.woff2") format("woff2");
  font-weight:800;
  font-style:normal;
  font-display:swap;
}

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --font-main:"Poppins",sans-serif;
}

html,
body{
  width:100%;
  overflow-x:hidden;
  font-family:var(--font-main);
}

body{
  background-color:var(--bg-color);
  padding-top:var(--header-height);
  font-family:var(--font-main);
}

input,
textarea,
button,
select{
  font-family:inherit;
}

.post-content strong,
.post-content b,
.entry-content strong,
.entry-content b{
  font-weight:600;
}
/* =========================================================
   MOBILE SEARCH OVERLAY
   ========================================================= */
#searchOverlay{
  display:none;
  position:fixed;
  inset:0;
  z-index:2200;
  background:rgba(255,255,255,0.86);
  backdrop-filter:blur(18px);
  -webkit-backdrop-filter:blur(18px);
  padding:18px;
}

.searchOverlayBox{
  max-width:900px;
  margin:10px auto 0;
  background:rgba(255,255,255,0.95);
  border:1px solid rgba(0,0,0,0.06);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(0,0,0,0.10);
  padding:14px;
}

.searchOverlayTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom:10px;
}

.searchOverlayTop .title{
  font-weight:900;
  color:#222;
  font-size:16px;
}

.searchOverlayClose{
  width:44px;
  height:44px;
  border-radius:50%;
  border:none;
  cursor:pointer;
  background:rgba(0,0,0,0.08);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s ease;
}

.searchOverlayClose:hover{
  background:rgba(0,0,0,0.12);
}

.searchOverlayInput{
  display:flex;
  align-items:center;
  gap:10px;
  background:#f0f0f2;
  border-radius:999px;
  padding:10px 14px;
  height:48px;
}

.searchOverlayInput input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  font-family:var(--font-main);
  font-size:16px;
  padding:8px 6px;
}

/* =========================================================
   HEADER
   ========================================================= */
.header{
  background:var(--white);
  height:var(--header-height);
  width:100%;
  position:fixed;
  top:0;
  display:flex;
  align-items:center;
  padding:0 8px;
  box-shadow:0 2px 12px rgba(0,0,0,.06);
  z-index:1000;
}

.header-container{
  width:100%;
  max-width:1400px;
  margin:0 auto;
  display:flex;
  align-items:center;
  gap:14px;
}

.logo img{
  height:40px;
  width:auto;
  display:block;
}

/* SEARCH BAR */
.search-bar{
  flex-grow:1;
  height:42px;
  background:#f2f2f4;
  border-radius:6px;
  display:flex;
  align-items:center;
  padding:0 14px;
  gap:8px;
}

.search-bar input{
  width:100%;
  border:none;
  outline:none;
  background:transparent;
  font-size:14px;
  padding:8px;
  color:#222;
 font-family:var(--font-main);
}

.search-bar input::placeholder{
  color:#888;
}

.search-submit-btn{
  border:none;
  outline:none;
  box-shadow:none;
  background:transparent;
  padding:6px 8px;
  border-radius:4px;
  cursor:pointer;
  font-weight:600;
  color:var(--dark);
  transition:background .15s ease, color .15s ease;
}
.search-submit-btn:hover{
  background:rgba(0,0,0,.05);
}

/* NAVIGATION */
.desktop-nav{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:6px;
}

.desktop-nav a{
  text-decoration:none;
  color:#333;
  font-weight:600;
  font-size:14px;
  padding:6px 8px;
  border-radius:4px;
  transition:background .15s ease,color .15s ease;
  white-space:nowrap;
}

.desktop-nav a:hover{
  background:rgba(0,0,0,.05);
  color:var(--accent);
}

/* HEADER ACTIONS */
.header-actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:8px;
  flex-shrink: 0;
}
.icon-btn{
  display: flex;
  width:40px;
  height:40px;
  border:1px solid rgba(0,0,0,.06);
  background:#f3f4f6;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .15s ease,color .15s ease,border-color .15s ease;
  color:var(--dark);
  padding:0;
}

.icon-btn.search{
  background:transparent;
  border:none;
}

.icon-btn:hover{
  background:#eceef2;
}

/* GENEL İKON VE SVG KURALLARI */
.ico, .side-menu-close-ico {
  width: 22px;
  height: 22px;
  display: block;
  /* Varsayılan olarak içi boş (outline) ikonlar */
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.searchOverlayInput .ico { width: 20px; height: 20px; }
.search-bar .ico { width: 18px; height: 18px; }

/* YAN MENÜ VE SOSYAL MEDYA İKONLARI (İçi dolu olanlar) */
.side-social svg, .side-menu ul li a svg {
  fill: currentColor;
  stroke: none;
  width: 18px;
  height: 18px;
  transition: none; /* Yan menü için geçişi kapalı tutalım */
}

/* Yan menü ikonlarının içindeki tüm elemanlar da aynı kurala uysun */
.side-menu ul li a svg *,
.side-social svg * {
  fill: currentColor;
  stroke: none;
}

/* =========================================================
   SIDE MENU — SINGLE CLEAN SYSTEM
   ========================================================= */
.side-menu{
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: var(--white);
  z-index: 2100;
  padding: 14px 18px 16px;
  box-shadow: -8px 0 24px rgba(0,0,0,.08);
  overflow-y: auto;
  transform: translateX(100%);
  visibility: hidden;
  transition: transform .28s ease, visibility .28s ease;
}

.side-menu.active{
  transform: translateX(0);
  visibility: visible;
}


.side-menu-close{
  cursor:pointer;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  background:none;
  border:none;
  line-height:1;
}

.side-menu-close-ico{
  width:24px;
  height:24px;
  color:#222;
}

.side-menu ul{
  list-style:none;
  margin:10px 0 0;
  padding:0;
}

.side-menu ul li{
  margin:0;
  padding:0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.side-menu ul li:last-child{
  border-bottom:none;
}

.side-menu ul li a{
  text-decoration:none;
  color:#222;
  font-weight:600;
  font-size:15px;
  line-height:1.2;
  min-height:46px;
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 0;
  background:transparent;
  transition:color .18s ease,background-color .18s ease;
  transform:translateZ(0);
  backface-visibility:hidden;
  -webkit-tap-highlight-color:transparent;
}

.side-menu ul li a:hover,
.side-menu ul li a:focus,
.side-menu ul li a:active{
  color:var(--accent);
  outline:none;
  background:transparent;
}

.side-menu ul li a svg{
  width:18px;
  height:18px;
  flex-shrink:0;
  display:block;
}

.side-menu ul li a svg, 
.side-menu ul li a svg * {
  fill: currentColor;
  stroke: none; /* Yan menü ikonları genellikle dolgulu (solid) olur */
  transition: none;
}

@media (max-width:768px){
  :root{
    --header-height:48px;
  }

  .logo img{
    height:32px;
  }

  .icon-btn{
    width:34px;
    height:34px;
  }
}


@media (max-width: 992px){

  .desktop-nav{
    display:none;
  }

  .search-bar{
    display:none;
  }

  .header-container{
    justify-content: space-between;
  }

}

/* =========================================================
   SIDE SOCIAL
   ========================================================= */
.side-social{
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid rgba(0,0,0,.06);
  display:flex;
  gap:10px;
}

.side-social a{
  width:36px;
  height:36px;
  border-radius:10px;
  border:1px solid #ddd;
  background:#f4f4f4;
  display:flex;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#444;
  transition:background .15s ease,border-color .15s ease,color .15s ease;
}

.side-social a:hover{
  background:#ececec;
  border-color:#ccc;
  color:var(--accent);
}

.side-social svg {
  width: 18px;
  height: 18px;
}


/* =========================================================
   SOZ KART
   ========================================================= */
.soz-kart,
p.soz-kart{
  display:block;
  margin:20px 0;
  padding:20px 18px;
  background:#fcfcfc;
  border-left:4px solid var(--accent);
  border-radius:0 8px 8px 0;
  line-height:1.6;
  color:#444;
  font-style:normal;
  box-shadow:2px 2px 10px rgba(0,0,0,0.03);
}

.soz-kart::before{
  content:none;
  display:none;
}

/* =========================================================
   POST HEADINGS
   ========================================================= */

.post-content h2{
  margin:10px 0 10px;
  font-size:22px;
  font-weight:600;
  line-height:1.1;
  color:#111;
  position:relative;
  padding-left:8px;
}

.post-content h2::before{
  display:none;
}



/* Masaüstü Menü Hizalama */
@media (min-width: 993px) {
  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .desktop-nav {
    display: flex;
    flex-grow: 1;
    justify-content: center;
  }
}

/* Paylaş ve Kopyala Buton Konteynırı */
.szp-action-container {
    display: inline-flex;
    gap: 8px;
    margin-left: 10px;
    vertical-align: middle;
}

.szp-btn {
    cursor: pointer;
    background: #f0f0f0;
    border: none;
    padding: 5px;
    border-radius: 4px;
    transition: background 0.3s;
}

.szp-btn svg {
    width: 18px;
    height: 18px;
}

.szp-success {
    background: #4CAF50;
    color: white;
}

/* =========================================================
   MINIMAL FOOTER (LIGHT VERSION)
   ========================================================= */

.szn-min-footer{
  position:relative;
  overflow:hidden;
  background:#fcfcfc;
  color:#222;
  margin-top:28px;
}

.szn-min-footer::after{
  content:"";
  position:absolute;
  left:35px;
  top:18px;
  width:250px;
  height:250px;
  background-image:url("/wp-content/uploads/2026/03/cropped-fbd6ffa2-8bff-4b54-bcb9-102d483c4178-1.webp");
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
  opacity:.035;
  pointer-events:none;
  user-select:none;
  z-index:0;
}

.szn-min-footer__wrap{
  position:relative;
  z-index:1;
  max-width:1300px;
  margin:0 auto;
  padding:0 18px;
}

/* ÜST */
.szn-min-footer__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px 0;
}

/* SOL */
.szn-min-footer__left{
  max-width:500px;
}

.szn-min-footer__logo{
  display:inline-block;
  margin-bottom:4px;
}

.szn-min-footer__logo img{
  display:block;
  height:auto;
}

.szn-min-footer__desc{
  margin:0;
  font-size:13px;
  line-height:1.5;
  color:#555;
}

/* LINKLER (YAN YANA) */
.szn-min-footer__links{
  display:flex;
  align-items:center;
  gap:22px;
  flex-wrap:wrap;
}

.szn-min-footer__links a{
  font-size:13px;
  color:#222;
  text-decoration:none;
  white-space:nowrap;
  transition:color .2s ease;
}

.szn-min-footer__links a:hover{
  color:#000;
}

/* ALT */
.szn-min-footer__bottom{
  border-top:1px solid #ddd;
  padding:10px 0 12px;
  font-size:12px;
  color:#666;
}

/* MOBILE */
@media (max-width: 768px){

  .szn-min-footer__top{
    flex-direction:column;
    align-items:flex-start;
    gap:14px;
    padding:16px 0;
  }

  .szn-min-footer__links{
    gap:14px;
  }

  .szn-min-footer::after{
    width:180px;
    height:180px;
    left:auto;
    right:-20px;
    top:10px;
    opacity:.03;
  }

}

/* =========================================================
   BREADCRUMB
   ========================================================= */

.sz-breadcrumb-nav{
  padding:10px 0 5px;
  font-size:11px;
  color:#999;
  font-family:inherit;
}

.sz-breadcrumb-nav a{
  color:#bd081c;
  text-decoration:none;
  font-weight:600;
  font-family:inherit;
}

/* =========================================================
   TÜM İÇERİK LİNKLERİ
   ========================================================= */

.post-content a{
  color:#111;
  text-decoration:none;
  transition:color .2s ease;
}

.post-content a:hover{
  color:#bd081c;
}

.header-lang-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border:1px solid #e7e7e7;
  border-radius:999px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-size:13px;
  font-weight:600;
  line-height:1;
  transition:border-color .2s ease, transform .2s ease, background-color .2s ease;
}

.header-lang-badge:hover{
  border-color:#d6d6d6;
  background:#fafafa;
  transform:translateY(-1px);
}

.header-lang-badge span{
  display:block;
}

/* Admin bar varken header aşağı insin */
body.admin-bar .site-header,
body.admin-bar header {
  top: 32px;
}

/* Mobilde admin bar daha yüksek */
@media (max-width: 782px){
  body.admin-bar .site-header,
  body.admin-bar header {
    top: 46px;
  }
}


.side-menu-lang-item{
  margin:4px 0 14px;
}

.side-menu-lang-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:36px;
  padding:0 12px;
  border:1px solid #e6e6e6;
  border-radius:4px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  letter-spacing:.6px;
  line-height:1;
  transition:all .15s ease;
}

.side-menu-lang-badge:hover{
  border-color:#111;
  background:#fff;
  color:#000;
}

.side-menu-lang-badge span{
  display:block;
}

/* ince sol vurgu (çok abartı değil) */
.side-menu-lang-badge{
  position:relative;
}

.side-menu-lang-badge::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:2px;
  background:#111;
  opacity:.08;
}

/* HEADER */
.header-lang-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:34px;
  padding:0 10px;
  border:1px solid #e6e6e6;
  border-radius:4px;
  background:#fff;
  color:#111;
  text-decoration:none;
  font-size:12px;
  font-weight:600;
  letter-spacing:.6px;
  line-height:1;
  transition:all .15s ease;
}

.header-lang-badge:hover{
  border-color:#111;
}

/* tablet + mobil gizle */
@media (max-width: 992px){
  .header-lang-badge{
    display:none;
  }
}

.side-social{
  margin-bottom:14px;
}

.side-menu-lang{
  margin-top:14px;
}

.side-lang{
  margin-top:16px;
  padding-top:14px;
  border-top:1px solid #f0f0f0;
}

.side-lang-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:5px 5px;
  text-decoration:none;
  border-radius:6px;
  color:#333;
  font-size:14px;
  font-weight:500;
  background:#fafafa;
  border:1px solid #eee;
  transition:all .2s ease;
}

.side-lang-link:hover{
  background:#f3f4f6;   /* hafif gri */
  border-color:#ddd;    /* nötr border */
  color:#333;           /* kırmızı yerine koyu gri */
}

.side-lang-code{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:32px;
  height:28px;
  background:#fff;
  border:1px solid #eee;
  border-radius:4px;
  font-size:12px;
  font-weight:700;
  color:#bd081c;
}

.side-lang-text{
  flex:1;
}

/*çerez onayı*/

.sp-cookie{
  position:fixed;
  bottom:13px;
  left:50%;
  transform:translateX(-50%);
  background:#fff;
  border:1px solid #eee;
  box-shadow:0 4px 20px rgba(0,0,0,0.08);
  border-radius:8px;
  padding:8px 12px; /* azaltıldı */
  font-size:13px;
  z-index:9999;
  display:none;
}

.sp-cookie__inner{
  display:flex;
  align-items:center;
  justify-content:space-between; /* eklendi */
  gap:8px; /* azaltıldı */
}

.sp-cookie span{
  flex:1;
}

.sp-cookie a{
  color:#bd081c;
  text-decoration:none;
}

.sp-cookie a:hover{
  text-decoration:underline;
}

#sp-cookie-btn{
  background:#bd081c;
  color:#fff;
  border:none;
  padding:5px 8px; /* küçültüldü */
  font-size:12px;
  border-radius:4px;
  cursor:pointer;
  white-space:nowrap;
}

#sp-cookie-btn:hover{
  opacity:.9;
}

@media(max-width:480px){
  .sp-cookie{
    left:10px;
    right:10px;
    transform:none;
  }
}

