/* ============================================================
   MAZHABER THEME - style.css
   Modern News & Magazine Theme for Varient Script
   ============================================================ */

/* ---- Google Font Import ---- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@700;800&family=Oswald:wght@400;500;600;700&display=swap');

/* ---- CSS Variables ---- */
:root {
  --mz-primary: #C0392B;
  --mz-primary-dark: #96281b;
  --mz-block: #1A1A2E;
  --mz-block-light: #16213e;
  --mz-bg: #F4F4F4;
  --mz-card: #FFFFFF;
  --mz-text: #1C1C1C;
  --mz-text-muted: #666;
  --mz-border: #E0E0E0;
  --mz-topbar-bg: #111;
  --mz-nav-bg: #FFFFFF;
  --mz-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  --mz-shadow-hover: 0 6px 24px rgba(0, 0, 0, 0.15);
  --mz-radius: 4px;
  --mz-radius-lg: 8px;
  --mz-font: 'Inter', sans-serif;
  --mz-font-display: 'Playfair Display', serif;
  --mz-font-nav: 'Oswald', sans-serif;
  --mz-transition: 0.22s ease;
  --mz-action-bg: transparent;
  --mz-action-border: rgba(0, 0, 0, 0.28);
  --mz-action-text: rgba(0, 0, 0, 0.82);
  --mz-action-hover-bg: rgba(192, 57, 43, 0.04);
  --mz-action-hover-border: var(--mz-primary);
  --mz-action-hover-text: var(--mz-primary);
}

/* ---- Dark Mode Variables ---- */
.dark-mode {
  --mz-bg: #0f0f1a;
  --mz-card: #1a1a2e;
  --mz-text: #e8e8e8;
  --mz-text-muted: #999;
  --mz-border: #2d2d44;
  --mz-nav-bg: #13131f;
  --mz-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
  --mz-action-bg: transparent;
  --mz-action-border: rgba(255, 255, 255, 0.28);
  --mz-action-text: rgba(255, 255, 255, 0.9);
  --mz-action-hover-bg: rgba(192, 57, 43, 0.12);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: var(--mz-font);
  background: var(--mz-bg);
  color: var(--mz-text);
  font-size: 15px;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--mz-text);
  text-decoration: none;
  transition: color var(--mz-transition);
}

a:hover {
  color: var(--mz-primary);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -12px;
}

[class*="col-"] {
  padding: 0 12px;
}

.col-sm-12 {
  width: 100%;
}

.col-sm-8 {
  width: 66.666%;
}

.col-sm-4 {
  width: 33.333%;
}

.col-sm-6 {
  width: 50%;
}

.col-sm-3 {
  width: 25%;
}

/* ============================================================
   PREMIUM HEADER STYLES: Topbar + Header + Navbar
   ============================================================ */

/* ---- Yeni Topbar (mz-topbar) ---- */
#mz-topbar {
  background: #0d0d1a;
  border-bottom: 1px solid rgba(192, 57, 43, 0.3);
  height: 34px;
  display: flex;
  align-items: center;
}

.mz-topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.mz-topbar-left {}

.mz-topbar-date {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  letter-spacing: 0.3px;
}

.mz-topbar-date svg {
  opacity: 0.5;
  flex-shrink: 0;
}

.mz-topbar-right {
  display: flex;
  align-items: center;
  gap: 0;
  height: 100%;
}

/* Dil */
.mz-topbar-langs {
  display: flex;
  align-items: center;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
  gap: 0;
}

.mz-topbar-langs a {
  color: rgba(255, 255, 255, 0.45) !important;
  font-size: 11px;
  font-weight: 500;
  padding: 0 6px;
  text-transform: none !important;
  transition: color 0.18s;
  letter-spacing: 0.2px;
  text-decoration: none;
}

.mz-topbar-langs a+a {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mz-topbar-langs a.active,
.mz-topbar-langs a:hover {
  color: #fff !important;
}

/* Sosyal — SVG branded */
.mz-topbar-social {
  display: flex;
  align-items: center;
  gap: 1px;
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.mz-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 5px;
  color: rgba(255, 255, 255, 0.4);
  transition: color 0.18s, background 0.18s;
  text-decoration: none;
}

.mz-social-icon:hover {
  color: var(--social-color, #fff) !important;
  background: rgba(255, 255, 255, 0.06);
}

.mz-social-icon svg {
  display: block;
  flex-shrink: 0;
}

/* Abone butonu */
.mz-topbar-subscribe {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10.5px;
  font-weight: 600;
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  transition: all 0.2s;
  background: none;
  cursor: pointer;
  font-family: var(--mz-font);
}

.mz-topbar-subscribe:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
}

/* ---- Premium Header / Logo ---- */
#mz-header {
  background: var(--mz-card);
  padding: 14px 0;
  border-bottom: 1px solid var(--mz-border);
  transition: background 0.3s;
}

.mz-header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Logo kutusu */
.mz-site-logo {
  flex-shrink: 0;
}

.mz-site-logo a {
  display: inline-flex;
  align-items: center;
}

.mz-site-logo img {
  max-height: 68px;
  width: auto;
  display: block;
}

/* Site isim + tagline (logo yoksa veya yanında) */
.mz-site-name {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2px;
  /* Gizlenebilir — logoya bağlı */
  /* display: none; */
}

.mz-site-name a {
  font-family: var(--mz-font-display);
  font-size: 26px;
  font-weight: 800;
  color: var(--mz-text);
  letter-spacing: -0.5px;
  line-height: 1;
  text-decoration: none;
}

.mz-site-name a:hover {
  color: var(--mz-primary);
}

.mz-site-tagline {
  font-size: 11px;
  color: var(--mz-text-muted);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Reklam alanı */
.mz-header-ad {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 50px;
}

/* ---- Premium Sticky Navbar ---- */
#mz-navbar {
  background: #13131f;
  border-bottom: 2px solid var(--mz-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.mz-nav-inner {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  min-height: 48px;
}

/* --- Menu Linkleri --- */
.mz-nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}

.mz-nav-links>li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.mz-nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0 16px;
  font-family: var(--mz-font-nav);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  transition: color 0.2s;
  text-decoration: none;
  position: relative;
}

/* Animated underline */
.mz-nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--mz-primary);
  transform: scaleX(0);
  transition: transform 0.22s ease;
  transform-origin: left;
}

.mz-nav-links>li>a:hover,
.mz-nav-links>li.active>a {
  color: #fff;
}

.mz-nav-links>li>a:hover::after,
.mz-nav-links>li.active>a::after {
  transform: scaleX(1);
}

/* Drop array SVG */
.drop-arrow {
  opacity: 0.5;
  flex-shrink: 0;
}

/* Dropdown */
.mz-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 2px);
  left: 0;
  min-width: 220px;
  background: #1a1a2e;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-top: 2px solid var(--mz-primary);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
  z-index: 999;
  border-radius: 0 0 6px 6px;
  overflow: hidden;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mz-nav-links>li:hover .mz-dropdown {
  display: block;
}

.mz-dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.18s;
  text-decoration: none;
}

.mz-dropdown li:last-child a {
  border-bottom: none;
}

.mz-dropdown li a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px;
}

/* ---- Nav Araçlar ---- */
.mz-nav-tools {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 0 0 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  margin-left: 4px;
}

.mz-nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: none;
  border: none;
  cursor: pointer;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s, background 0.2s;
  text-decoration: none;
  flex-shrink: 0;
}

.mz-nav-btn:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.mz-nav-btn svg {
  display: block;
  flex-shrink: 0;
}

/* Giriş butonu */
.mz-btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 7px 18px;
  background: var(--mz-primary);
  color: #fff !important;
  border: none;
  border-radius: 4px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
  text-decoration: none;
}

.mz-btn-primary:hover {
  background: var(--mz-primary-dark);
  color: #fff !important;
  transform: translateY(-1px);
}

/* Mobil toggle */
.mz-nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

/* Arama cubuğu */
.mz-search-bar {
  display: none;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mz-search-bar.open {
  display: block;
}

.mz-search-bar form {
  display: flex;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mz-search-bar input {
  flex: 1;
  padding: 10px 16px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--mz-font);
  font-size: 13px;
}

.mz-search-bar input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.mz-search-bar button {
  padding: 10px 20px;
  background: var(--mz-primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.mz-search-bar button:hover {
  background: var(--mz-primary-dark);
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .mz-nav-toggle {
    display: flex;
  }

  .mz-nav-links {
    display: none;
  }

  #mz-navbar.nav-open .mz-nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #13131f;
    z-index: 998;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  #mz-navbar.nav-open .mz-nav-links>li>a {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  }

  #mz-navbar.nav-open .mz-nav-links>li>a::after {
    display: none;
  }
}

/* ---- Eski selector uyumluluğu (geçici) ---- */
.nav-search-btn,
.nav-dark-btn,
.nav-icon-btn {
  display: none !important;
}

.nav-logo {
  display: none !important;
}

#topbar {
  display: none !important;
}


/* ---- Header Nav Menü — Oswald Font Override ---- */
.mz-header-nav-links>li>a {
  font-family: var(--mz-font-nav);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}

.mz-header-nav-links>li.active>a {
  font-weight: 700;
}

/* ---- Breaking News Ticker ---- */
.mz-ticker {
  background: var(--mz-primary);
  color: #fff;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 36px;
  margin-bottom: 0;
}

.mz-ticker .ticker-label {
  background: var(--mz-block);
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.mz-ticker .ticker-content {
  flex: 1;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.mz-ticker ul {
  display: flex;
  gap: 0;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mz-ticker ul li a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.mz-ticker .ticker-nav {
  display: flex;
  flex-shrink: 0;
}

.mz-ticker .ticker-nav button {
  background: rgba(0, 0, 0, 0.2);
  border: none;
  color: #fff;
  width: 32px;
  height: 36px;
  cursor: pointer;
  font-size: 14px;
}

.mz-ticker .ticker-nav button:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* ---- Section Heading ---- */
.mz-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  border-bottom: 3px solid var(--mz-primary);
  padding-bottom: 10px;
}

.mz-section-head .sec-title {
  font-family: var(--mz-font);
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--mz-block);
  margin: 0;
}

.dark-mode .mz-section-head .sec-title {
  color: var(--mz-text);
}

.mz-section-head .sec-title span {
  display: inline-block;
  background: var(--mz-primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 2px;
  font-size: 14px;
}

.mz-section-head .view-all {
  font-size: 12px;
  font-weight: 600;
  color: var(--mz-primary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ---- Post Card (Default - Big) ---- */
.mz-post-card {
  background: var(--mz-card);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: var(--mz-shadow);
  transition: box-shadow var(--mz-transition), transform var(--mz-transition);
  display: flex;
  flex-direction: column;
}

.mz-post-card:hover {
  box-shadow: var(--mz-shadow-hover);
  transform: translateY(-2px);
}

.mz-post-card .card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.mz-post-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.mz-post-card:hover .card-img img {
  transform: scale(1.04);
}

.mz-post-card .card-body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.mz-post-card .card-cat {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 2px;
  color: #fff;
  margin-bottom: 8px;
  background: var(--mz-primary);
}

.mz-post-card .card-title {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mz-post-card .card-title a {
  color: var(--mz-text);
}

.mz-post-card .card-title a:hover {
  color: var(--mz-primary);
}

.mz-post-card .card-summary {
  font-size: 13px;
  color: var(--mz-text-muted);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
}

.mz-post-card .card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  color: var(--mz-text-muted);
  margin-top: auto;
}

.mz-post-card .card-meta a {
  color: var(--mz-text-muted);
  font-weight: 500;
}

.mz-post-card .card-meta a:hover {
  color: var(--mz-primary);
}

.mz-post-card .card-meta i {
  margin-right: 3px;
}

/* ---- Post Card Horizontal ---- */
.mz-post-h {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--mz-card);
  border-radius: var(--mz-radius);
  padding: 14px;
  box-shadow: var(--mz-shadow);
  margin-bottom: 12px;
  transition: box-shadow var(--mz-transition);
}

.mz-post-h:hover {
  box-shadow: var(--mz-shadow-hover);
}

.mz-post-h .ph-img {
  flex-shrink: 0;
  width: 110px;
  height: 80px;
  overflow: hidden;
  border-radius: var(--mz-radius);
}

.mz-post-h .ph-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mz-post-h:hover .ph-img img {
  transform: scale(1.06);
}

.mz-post-h .ph-body {
  flex: 1;
  min-width: 0;
}

.mz-post-h .ph-cat {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--mz-primary);
  margin-bottom: 4px;
}

.mz-post-h .ph-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 6px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mz-post-h .ph-title a {
  color: var(--mz-text);
}

.mz-post-h .ph-title a:hover {
  color: var(--mz-primary);
}

.mz-post-h .ph-meta {
  font-size: 11px;
  color: var(--mz-text-muted);
}

/* ---- Post Card Small ---- */
.mz-post-sm {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--mz-border);
}

.mz-post-sm:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mz-post-sm .psm-img {
  flex-shrink: 0;
  width: 70px;
  height: 56px;
  overflow: hidden;
  border-radius: var(--mz-radius);
}

.mz-post-sm .psm-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mz-post-sm .psm-body {
  flex: 1;
  min-width: 0;
}

.mz-post-sm .psm-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: 0 0 4px;
}

.mz-post-sm .psm-title a {
  color: var(--mz-text);
}

.mz-post-sm .psm-title a:hover {
  color: var(--mz-primary);
}

.mz-post-sm .psm-meta {
  font-size: 11px;
  color: var(--mz-text-muted);
}

/* ---- Featured Slider (Modern: sol büyük + sağ numaralı panel) ---- */
#mzFeatured {
  display: flex;
  height: 500px;
  background: #0d0d1a;
  overflow: hidden;
  margin-bottom: 0;
}

/* Sol: slide track */
.mzs-track-wrap {
  flex: 1;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.mzs-track {
  display: flex;
  height: 100%;
  will-change: transform;
}


.mzs-slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  flex-shrink: 0;
  overflow: hidden;
}

.mzs-slide .mzs-img-link,
.mzs-slide .img-container,
.mzs-slide .img-bg {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.mzs-slide .img-bg,
.mzs-slide .img-container img,
.mzs-slide .mzs-img-link>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.72;
  transition: transform 6s ease, opacity 0.6s;
}

.mzs-slide.active .img-bg,
.mzs-slide.active .img-container img {
  transform: scale(1.04);
}

/* Caption */
.mzs-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 80px 32px 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, transparent 100%);
  z-index: 2;
  transform: translateY(12px);
  opacity: 0;
  transition: transform 0.5s ease 0.15s, opacity 0.5s ease 0.15s;
}

.mzs-slide.active .mzs-caption {
  transform: translateY(0);
  opacity: 1;
}

.mzs-cat {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 10px;
}

.mzs-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 10px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.mzs-title a {
  color: #fff;
}

.mzs-title a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.mzs-meta {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
}

.mzs-meta a {
  color: rgba(255, 255, 255, 0.65);
}

/* Progress bar */
.mzs-progress-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255, 255, 255, 0.15);
  z-index: 3;
  opacity: 0;
  transition: opacity 0.3s;
}

.mzs-slide.active .mzs-progress-bar {
  opacity: 1;
}

.mzs-progress-fill {
  height: 100%;
  background: var(--mz-primary);
  width: 0%;
  transition: width linear;
}

/* Sağ panel */
.mzs-panel {
  width: 300px;
  flex-shrink: 0;
  background: #13131f;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overflow-x: hidden;
  border-left: 1px solid rgba(255, 255, 255, 0.06);
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}

.mzs-panel::-webkit-scrollbar {
  width: 4px;
}

.mzs-panel::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 2px;
}

/* Panel item */
.mzs-panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}

.mzs-panel-item:hover {
  background: rgba(255, 255, 255, 0.04);
}

.mzs-panel-item.active {
  background: rgba(192, 57, 43, 0.15);
  border-left: 3px solid var(--mz-primary);
}

/* Numara */
.mzs-num {
  font-size: 18px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.2);
  line-height: 1;
  min-width: 28px;
  flex-shrink: 0;
  transition: color 0.2s;
  font-variant-numeric: tabular-nums;
}

.dark-mode .mzs-num {
  color: rgba(255, 255, 255, 0.18);
}


.mzs-panel-item.active .mzs-num,
.mzs-panel-item:hover .mzs-num {
  color: var(--mz-primary) !important;
}

/* Thumbnail */
.mzs-panel-thumb {
  width: 60px;
  height: 46px;
  flex-shrink: 0;
  border-radius: 3px;
  overflow: hidden;
  background: #222;
}

.mzs-panel-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mzs-panel-item:hover .mzs-panel-thumb img {
  transform: scale(1.08);
}

/* Panel info */
.mzs-panel-info {
  flex: 1;
  min-width: 0;
}

.mzs-panel-cat {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 3px;
  color: #333;
}

.dark-mode .mzs-panel-cat {
  color: rgba(255, 255, 255, 0.5);
}

.mzs-panel-item.active .mzs-panel-cat {
  color: var(--mz-primary);
}

.dark-mode .mzs-panel-item.active .mzs-panel-cat {
  color: rgba(255, 255, 255, 0.8);
}

/* Panel linkleri: dark modda beyaz, light modda koyu */
.dark-mode #mzFeatured .mzs-panel a,
.dark-mode #mzFeatured .mzs-panel a:visited {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.dark-mode #mzFeatured .mzs-panel a:hover {
  color: #fff;
}

/* Light modda tum panel linkleri koyu */
body:not(.dark-mode) #mzFeatured .mzs-panel a,
body:not(.dark-mode) #mzFeatured .mzs-panel a:visited,
body:not(.dark-mode) #mzFeatured .mzs-panel a:hover {
  color: #1a1a2e;
  text-decoration: none;
}


.mzs-panel-title {
  font-size: 12px;
  font-weight: 600;
  color: #1a1a2e;
  line-height: 1.4;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 0.2s;
}

.dark-mode .mzs-panel-title {
  color: rgba(255, 255, 255, 0.82);
}

.mzs-panel-title a,
.mzs-panel-title a:hover {
  color: inherit;
  text-decoration: none;
}

.dark-mode .mzs-panel-item.active .mzs-panel-title,
.dark-mode .mzs-panel-item:hover .mzs-panel-title {
  color: #fff;
}

.dark-mode .mzs-panel-item.active .mzs-panel-title a,
.dark-mode .mzs-panel-item:hover .mzs-panel-title a {
  color: #fff;
}

body:not(.dark-mode) .mzs-panel-item.active .mzs-panel-title,
body:not(.dark-mode) .mzs-panel-item:hover .mzs-panel-title,
body:not(.dark-mode) .mzs-panel-item.active .mzs-panel-title a,
body:not(.dark-mode) .mzs-panel-item:hover .mzs-panel-title a {
  color: var(--mz-primary);
}

/* mzs-controls artik absolute konumlu pill - satir 4324 */



.mzs-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}

.mzs-btn svg {
  width: 14px;
  height: 14px;
}

.mzs-btn:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
}

/* Dark mode uyumu */
.dark-mode #mzFeatured {
  background: #07070f;
}

/* Responsive */
@media (max-width: 900px) {
  #mzFeatured {
    flex-direction: column;
    height: auto;
  }

  .mzs-track-wrap {
    height: 280px;
  }

  .mzs-panel {
    width: 100%;
    max-height: 280px;
    flex-direction: row;
    overflow-x: auto;
    overflow-y: hidden;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .mzs-panel-item {
    flex-direction: column;
    min-width: 120px;
    text-align: center;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
  }

  .mzs-controls {
    display: none;
  }
}

@media (max-width: 600px) {
  .mzs-title {
    font-size: 16px;
  }

  .mzs-track-wrap {
    height: 220px;
  }
}



/* ---- Category Block Types ---- */
.mz-block {
  background: var(--mz-card);
  border-radius: var(--mz-radius);
  padding: 20px;
  box-shadow: var(--mz-shadow);
  margin-bottom: 24px;
}

/* Block 1: Big top + 3 smalls */
.mz-block-1 .b1-main {
  margin-bottom: 16px;
}

.mz-block-1 .b1-main .mz-post-card {
  height: 100%;
}

.mz-block-1 .b1-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Block 2: 3 columns */
.mz-block-2 .b2-grid {
  display: flex;
  gap: 16px;
}

.mz-block-2 .b2-grid .mz-post-card {
  flex: 1;
}

/* Block 3: Left big + right list */
.mz-block-3 .b3-inner {
  display: flex;
  gap: 16px;
}

.mz-block-3 .b3-main {
  flex: 1.5;
}

.mz-block-3 .b3-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Block 4: Minimal list */
.mz-block-4 .b4-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px solid var(--mz-border);
}

.mz-block-4 .b4-list li:last-child {
  border-bottom: none;
}

.mz-block-4 .b4-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--mz-primary);
  line-height: 1;
  flex-shrink: 0;
  width: 28px;
}

.mz-block-4 .b4-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.mz-block-4 .b4-title a {
  color: var(--mz-text);
}

.mz-block-4 .b4-title a:hover {
  color: var(--mz-primary);
}

/* Block 5: Magazine grid */
.mz-block-5 .b5-top {
  margin-bottom: 16px;
}

.mz-block-5 .b5-sub {
  display: flex;
  gap: 12px;
}

.mz-block-5 .b5-sub .mz-post-card {
  flex: 1;
}

/* ---- Main Layout ---- */
#mz-wrapper {
  padding: 24px 0;
}

#mz-content {
  width: 66.666%;
  padding: 0 12px;
}

#mz-sidebar {
  width: 33.333%;
  padding: 0 12px;
}

.mz-layout {
  display: flex;
  gap: 0;
}

/* ---- Sidebar ---- */
.mz-widget {
  background: var(--mz-card);
  border-radius: var(--mz-radius);
  overflow: hidden;
  box-shadow: var(--mz-shadow);
  margin-bottom: 24px;
}

.mz-widget .widget-head {
  background: var(--mz-block);
  color: #fff;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mz-widget .widget-body {
  padding: 14px 16px;
}

/* Follow widget */
.mz-widget .follow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mz-widget .follow-list a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: var(--mz-radius);
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  transition: opacity var(--mz-transition);
}

.mz-widget .follow-list a:hover {
  opacity: 0.85;
}

.mz-widget .follow-list .facebook {
  background: #1877f2;
}

.mz-widget .follow-list .twitter {
  background: #1da1f2;
}

.mz-widget .follow-list .instagram {
  background: #e1306c;
}

.mz-widget .follow-list .youtube {
  background: #ff0000;
}

.mz-widget .follow-list .rss {
  background: #f4a333;
}

/* Tag list */
.mz-widget .tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mz-widget .tag-list a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--mz-border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--mz-text-muted);
  transition: all var(--mz-transition);
}

.mz-widget .tag-list a:hover {
  background: var(--mz-primary);
  color: #fff;
  border-color: var(--mz-primary);
}

/* ---- Single Post Page ---- */
.mz-post-page {
  background: var(--mz-card);
  border-radius: var(--mz-radius);
  box-shadow: var(--mz-shadow);
  overflow: hidden;
}

.mz-post-header {
  padding: 28px 32px 0;
}

.mz-post-header .post-cat-badge {
  display: inline-block;
  background: var(--mz-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.mz-post-header h1.post-title {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--mz-text);
  margin: 0 0 14px;
}

.mz-post-meta-bar {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--mz-text-muted);
  padding: 14px 32px;
  border-bottom: 1px solid var(--mz-border);
}

.mz-post-meta-bar .meta-author {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mz-post-meta-bar .meta-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.mz-post-meta-bar .meta-author a {
  font-weight: 600;
  color: var(--mz-text);
}

.mz-post-main-img {
  margin: 0;
  line-height: 0;
}

.mz-post-main-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

.mz-post-summary {
  padding: 20px 32px 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.7;
  color: var(--mz-text-muted);
  border-left: 4px solid var(--mz-primary);
  margin: 20px 32px 0;
  padding: 12px 16px;
  background: var(--mz-bg);
  border-radius: 0 var(--mz-radius) var(--mz-radius) 0;
}

.mz-post-body {
  padding: 20px 32px 28px;
  font-size: 16px;
  line-height: 1.85;
}

.mz-post-body p {
  margin: 0 0 18px;
}

.mz-post-body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 28px 0 14px;
}

.mz-post-body h3 {
  font-size: 18px;
  font-weight: 600;
  margin: 22px 0 12px;
}

.mz-post-body a {
  color: var(--mz-primary);
  text-decoration: underline;
}

.mz-post-body img {
  border-radius: var(--mz-radius);
  margin: 12px 0;
}

.mz-post-body blockquote {
  border-left: 4px solid var(--mz-primary);
  margin: 20px 0;
  padding: 12px 18px;
  background: var(--mz-bg);
  font-style: italic;
  color: var(--mz-text-muted);
}

/* Post Tags */
.mz-post-tags {
  padding: 0 32px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.mz-post-tags .tags-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mz-text-muted);
  margin-right: 4px;
}

.mz-post-tags a {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid var(--mz-border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--mz-text-muted);
  transition: all var(--mz-transition);
}

.mz-post-tags a:hover {
  background: var(--mz-primary);
  color: #fff;
  border-color: var(--mz-primary);
}

/* Post Share */
.mz-post-share {
  padding: 16px 32px;
  border-top: 1px solid var(--mz-border);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.mz-post-share .share-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--mz-text-muted);
}

.mz-post-share .share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  border: none;
  transition: opacity var(--mz-transition);
}

.mz-post-share .share-btn:hover {
  opacity: 0.85;
}

.mz-post-share .share-fb {
  background: #1877f2;
}

.mz-post-share .share-tw {
  background: #1da1f2;
}

.mz-post-share .share-wa {
  background: #25d366;
}

.mz-post-share .share-copy {
  background: var(--mz-block);
}

/* About Author */
.mz-author-box {
  margin: 20px 32px;
  background: var(--mz-bg);
  border-radius: var(--mz-radius);
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--mz-border);
}

.mz-author-box img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.mz-author-box .author-name {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 4px;
}

.mz-author-box .author-name a {
  color: var(--mz-text);
}

.mz-author-box .author-bio {
  font-size: 13px;
  color: var(--mz-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Related Posts */
.mz-related {
  margin: 24px 0;
  padding: 0 32px 28px;
}

.mz-related h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--mz-primary);
}

.mz-related .related-grid {
  display: flex;
  gap: 16px;
}

.mz-related .related-grid .mz-post-card {
  flex: 1;
}

/* Comments */
.mz-comments {
  margin: 0 32px 28px;
}

.mz-comments h3 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  padding-bottom: 10px;
  border-bottom: 3px solid var(--mz-primary);
}

.comment-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--mz-border);
  display: flex;
  gap: 12px;
}

.comment-item .comment-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.comment-item .comment-content {
  flex: 1;
}

.comment-item .comment-author {
  font-weight: 600;
  font-size: 14px;
  margin: 0 0 2px;
}

.comment-item .comment-date {
  font-size: 11px;
  color: var(--mz-text-muted);
  margin-bottom: 6px;
}

.comment-item .comment-text {
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Comment Form */
.mz-comment-form {
  margin-top: 20px;
}

.mz-comment-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--mz-border);
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
  background: var(--mz-card);
  color: var(--mz-text);
}

.mz-comment-form input {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--mz-border);
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 14px;
  background: var(--mz-card);
  color: var(--mz-text);
  margin-bottom: 10px;
}

.mz-comment-form input:focus,
.mz-comment-form textarea:focus {
  outline: none;
  border-color: var(--mz-primary);
}

.btn-mz {
  display: inline-block;
  padding: 10px 24px;
  background: var(--mz-primary);
  color: #fff;
  border: none;
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--mz-transition);
}

.btn-mz:hover {
  background: var(--mz-primary-dark);
  color: #fff;
}

.btn-mz-outline {
  background: transparent;
  color: var(--mz-primary);
  border: 2px solid var(--mz-primary);
}

.btn-mz-outline:hover {
  background: var(--mz-primary);
  color: #fff;
}

/* ---- Pagination ---- */
.mz-pagination {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 24px 0;
  flex-wrap: wrap;
}

.mz-pagination a,
.mz-pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--mz-radius);
  font-size: 13px;
  font-weight: 600;
  border: 1px solid var(--mz-border);
  color: var(--mz-text);
  background: var(--mz-card);
  transition: all var(--mz-transition);
}

.mz-pagination a:hover {
  background: var(--mz-primary);
  color: #fff;
  border-color: var(--mz-primary);
}

.mz-pagination .active,
.mz-pagination .active a {
  background: var(--mz-primary);
  color: #fff;
  border-color: var(--mz-primary);
}

/* ---- Load More Button ---- */
.btn-load-more {
  display: block;
  width: 100%;
  padding: 12px;
  background: transparent;
  border: 2px solid var(--mz-primary);
  color: var(--mz-primary);
  font-family: var(--mz-font);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--mz-radius);
  cursor: pointer;
  transition: all var(--mz-transition);
  text-align: center;
  margin: 16px 0;
}

.btn-load-more:hover {
  background: var(--mz-primary);
  color: #fff;
}

/* ---- Search Page ---- */
.mz-search-hero {
  background: var(--mz-block);
  color: #fff;
  padding: 32px 0;
  margin-bottom: 24px;
}

.mz-search-hero h1 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
}

.mz-search-hero form {
  display: flex;
  gap: 8px;
  max-width: 600px;
}

.mz-search-hero input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 15px;
}

.mz-search-hero button {
  padding: 12px 24px;
  background: var(--mz-primary);
  color: #fff;
  border: none;
  border-radius: var(--mz-radius);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
}

/* ---- Category Page ---- */
.mz-cat-header {
  background: var(--mz-block);
  color: #fff;
  padding: 24px 32px;
  margin-bottom: 24px;
  border-radius: var(--mz-radius);
}

.mz-cat-header h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 6px;
}

.mz-cat-header p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

/* ---- Newsletter (Footer & Modal) ---- */
.mz-newsletter-form {
  display: flex;
  gap: 6px;
}

.mz-newsletter-form input {
  flex: 1;
  padding: 9px 12px;
  border: 1px solid var(--mz-border);
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 13px;
  background: var(--mz-card);
  color: var(--mz-text);
}

.mz-newsletter-form button {
  padding: 9px 16px;
  background: var(--mz-primary);
  color: #fff;
  border: none;
  border-radius: var(--mz-radius);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

/* ---- Auth Pages ---- */
.mz-auth-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

.mz-auth-card {
  background: var(--mz-card);
  border-radius: var(--mz-radius-lg);
  box-shadow: var(--mz-shadow-hover);
  padding: 36px;
  width: 100%;
  max-width: 420px;
}

.mz-auth-card h1 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 24px;
}

.mz-form-group {
  margin-bottom: 16px;
}

.mz-form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--mz-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mz-form-control {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--mz-border);
  border-radius: var(--mz-radius);
  font-family: var(--mz-font);
  font-size: 14px;
  background: var(--mz-card);
  color: var(--mz-text);
  transition: border-color var(--mz-transition);
}

.mz-form-control:focus {
  outline: none;
  border-color: var(--mz-primary);
}

/* ---- Footer ---- */
#mz-footer {
  background: #111;
  color: #ccc;
  padding-top: 48px;
  margin-top: 48px;
}

#mz-footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--mz-primary);
}

#mz-footer a {
  color: #bbb;
}

#mz-footer a:hover {
  color: var(--mz-primary);
}

.footer-about p {
  font-size: 13px;
  line-height: 1.7;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  font-size: 13px;
}

.footer-links ul li a::before {
  content: '→ ';
  color: var(--mz-primary);
}

.footer-bottom {
  background: #0a0a0a;
  padding: 14px 0;
  margin-top: 36px;
  font-size: 12px;
  color: #666;
}

.footer-bottom .fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom .nav-footer {
  display: flex;
  gap: 16px;
}

.footer-bottom .nav-footer a {
  font-size: 12px;
  color: #666;
}

.footer-bottom .nav-footer a:hover {
  color: var(--mz-primary);
}

/* ---- Messages / Alerts ---- */
.mz-alert {
  padding: 12px 16px;
  border-radius: var(--mz-radius);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

.mz-alert-success {
  background: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}

.mz-alert-error {
  background: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}

.dark-mode .mz-alert-success {
  background: rgba(40, 167, 69, 0.15);
  color: #6fcf97;
}

.dark-mode .mz-alert-error {
  background: rgba(220, 53, 69, 0.15);
  color: #eb5757;
}

/* ---- Cookies Warning ---- */
.mz-cookies {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--mz-block);
  color: #fff;
  padding: 16px 20px;
  border-radius: var(--mz-radius-lg);
  box-shadow: var(--mz-shadow-hover);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 9999;
  max-width: 640px;
  margin: 0 auto;
}

.mz-cookies p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.mz-cookies .cookies-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ---- Modal ---- */
.mz-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  align-items: center;
  justify-content: center;
}

.mz-modal.open {
  display: flex;
}

.mz-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.mz-modal-box {
  position: relative;
  background: var(--mz-card);
  border-radius: var(--mz-radius-lg);
  padding: 28px;
  max-width: 480px;
  width: 90%;
  box-shadow: var(--mz-shadow-hover);
  z-index: 1;
}

.mz-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: var(--mz-text-muted);
  line-height: 1;
}

/* ---- Scroll Up Button ---- */
.mz-scrollup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: var(--mz-primary);
  color: #fff;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--mz-shadow-hover);
  z-index: 999;
  cursor: pointer;
  transition: background var(--mz-transition);
}

.mz-scrollup:hover {
  background: var(--mz-primary-dark);
}

.mz-scrollup.visible {
  display: flex;
}

/* ---- Spinner ---- */
.mz-spinner {
  display: flex;
  justify-content: center;
  padding: 20px;
  gap: 6px;
}

.mz-spinner span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--mz-primary);
  animation: mzBounce 1.4s infinite ease-in-out;
  display: inline-block;
}

.mz-spinner span:nth-child(2) {
  animation-delay: 0.2s;
}

.mz-spinner span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes mzBounce {

  0%,
  80%,
  100% {
    transform: scale(0.6);
    opacity: 0.5
  }

  40% {
    transform: scale(1);
    opacity: 1
  }
}

/* ---- Category Color Label ---- */
.cat-label {
  display: inline-block;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 2px 8px;
  border-radius: 2px;
}

/* ---- RTL Support ---- */
.rtl-mode {
  direction: rtl;
  text-align: right;
}

.rtl-mode .mz-post-h {
  flex-direction: row-reverse;
}

.rtl-mode .mz-section-head .sec-title {
  border-left: none;
  border-right: 4px solid var(--mz-primary);
  padding-left: 0;
  padding-right: 10px;
}

/* ---- Utilities ---- */
.m-t-0 {
  margin-top: 0 !important;
}

.m-b-0 {
  margin-bottom: 0 !important;
}

.m-b-16 {
  margin-bottom: 16px;
}

.m-b-24 {
  margin-bottom: 24px;
}

.text-center {
  text-align: center;
}

.d-none {
  display: none;
}

.img-responsive {
  max-width: 100%;
  height: auto;
}

/* ---- Lazyload ---- */
img.lazyload,
img.lazyloading {
  filter: blur(5px);
  transition: filter 0.3s;
}

img.lazyloaded {
  filter: blur(0);
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
  #mz-content {
    width: 100%;
  }

  #mz-sidebar {
    width: 100%;
  }

  .mz-layout {
    flex-direction: column;
  }

  .mz-related .related-grid {
    flex-wrap: wrap;
  }

  .mz-related .related-grid .mz-post-card {
    flex: 0 0 calc(50% - 8px);
  }
}

@media (max-width: 767px) {
  .mz-featured .swiper {
    height: 300px;
  }

  .mz-featured .slide-title {
    font-size: 16px;
  }

  #mz-navbar ul.nav-links {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  #mz-navbar .mobile-open ul.nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--mz-card);
    border-bottom: 1px solid var(--mz-border);
    z-index: 100;
  }

  #mz-navbar ul.nav-links>li>a {
    padding: 12px 16px;
    border-bottom: 1px solid var(--mz-border);
  }

  .mz-post-header h1.post-title {
    font-size: 20px;
  }

  .mz-post-header,
  .mz-post-meta-bar,
  .mz-post-body,
  .mz-post-tags,
  .mz-post-share,
  .mz-related,
  .mz-comments {
    padding-left: 16px;
    padding-right: 16px;
  }

  .mz-author-box {
    margin: 16px;
  }

  .col-sm-8,
  .col-sm-4,
  .col-sm-6,
  .col-sm-3 {
    width: 100%;
  }

  .mz-block-2 .b2-grid,
  .mz-block-3 .b3-inner,
  .mz-block-5 .b5-sub {
    flex-direction: column;
  }

  .footer-bottom .fb-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .mz-post-h .ph-img {
    width: 85px;
    height: 65px;
  }

  .mz-featured .slide-title {
    font-size: 14px;
  }
}

/* ---- Nav Toggle (Mobile) ---- */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--mz-text);
  font-size: 22px;
  padding: 6px;
}

@media (max-width: 767px) {
  .nav-toggle {
    display: block;
  }
}

/* ---- Sticky sidebar ---- */
@media (min-width: 992px) {
  .sidebar-sticky {
    position: sticky;
    top: 70px;
  }
}

/* ---- Gallery Page ---- */
.mz-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}

.mz-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--mz-radius);
  aspect-ratio: 4/3;
}

.mz-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.mz-gallery-item:hover img {
  transform: scale(1.07);
}

/* ---- Reading List / Profile ---- */
.mz-page-header {
  background: var(--mz-block);
  color: #fff;
  padding: 28px 0;
  margin-bottom: 24px;
}

.mz-page-header h1 {
  font-size: 26px;
  font-weight: 800;
  margin: 0;
}

/* ---- Contact Page ---- */
.mz-contact-card {
  background: var(--mz-card);
  border-radius: var(--mz-radius-lg);
  box-shadow: var(--mz-shadow);
  padding: 32px;
}

/* ---- Post No Image ---- */
.post-no-img .card-img {
  display: none;
}

/* ---- Ad Spaces ---- */
.mz-ad {
  display: flex;
  justify-content: center;
  margin: 16px 0;
}

.mz-ad-desktop {
  display: flex;
}

.mz-ad-mobile {
  display: none;
}

@media (max-width: 768px) {
  .mz-ad-desktop {
    display: none;
  }
  .mz-ad-mobile {
    display: flex;
  }
}

/* ---- Reaction Bar ---- */
.mz-reactions {
  display: flex;
  gap: 10px;
  padding: 12px 32px;
  border-top: 1px solid var(--mz-border);
  flex-wrap: wrap;
}

.reaction-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border: 1px solid var(--mz-border);
  border-radius: 50px;
  background: var(--mz-card);
  cursor: pointer;
  font-size: 13px;
  transition: all var(--mz-transition);
}

.reaction-btn:hover,
.reaction-btn.active {
  border-color: var(--mz-primary);
  color: var(--mz-primary);
}

.reaction-btn .reaction-emoji {
  font-size: 18px;
}

/* ============================================================
   MAZHABER - LOGO NAVBAR + MENU FONT + SLIDER EFEKTLER
   ============================================================ */

/* ---- Navbar Logo (mz-nav-logo) ---- */
.mz-nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  padding-right: 18px;
  margin-right: 4px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
}

.mz-nav-logo img {
  max-height: 42px;
  width: auto;
  display: block;
  object-fit: contain;
  /* JPG logo icin temiz goruntuleme */
}

/* ---- Navbar Buyuk Menu Fontlari ---- */
.mz-nav-links>li>a {
  font-size: 13.5px !important;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 0 14px;
}


/* mz-header artik aktif - _nav_top.php ile yonetiliyor */



/* ---- Slider: Grayscale + Nokta Efekti ---- */

/* Resim grayscale - varsayilan siyah beyaz */
.mzs-slide .mzs-img-link>img,
.mzs-slide .img-container img,
.mzs-slide .img-bg {
  filter: grayscale(100%) contrast(1.05) !important;
  transition: filter 0.6s ease !important;
}

/* Hover: renkli */
.mzs-slide:hover .mzs-img-link>img,
.mzs-slide:hover .img-container img,
.mzs-slide:hover .img-bg,
.mzs-slide.active:hover .mzs-img-link>img,
.mzs-slide.active:hover .img-container img {
  filter: grayscale(0%) contrast(1) !important;
}

/* Noktalı (halftone) overlay efekt */
.mzs-slide {
  position: relative;
  overflow: hidden;
}

.mzs-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  /* Nokta pattern: radial-gradient ile halftone */
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 6px 6px;
  mix-blend-mode: overlay;
  transition: opacity 0.6s ease;
}

/* Hover'da nokta efekti solar */
.mzs-slide:hover::before {
  opacity: 0;
}

/* ---- Slider Caption: Glassmorphism / Buz Efekti ---- */
.mzs-caption {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10 !important;
  /* Glassmorphism - buz cam efekti */
  background: rgba(10, 10, 20, 0.45) !important;
  backdrop-filter: blur(14px) saturate(1.5) !important;
  -webkit-backdrop-filter: blur(14px) saturate(1.5) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
  /* Alt kosede camsi efekt icin ust kenarda ince parlak cizgi */
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 -2px 20px rgba(0, 0, 0, 0.3) !important;
  padding: 18px 24px 20px !important;
}

/* Caption'a gecis animasyonu */
.mzs-slide .mzs-caption {
  transform: translateY(8px);
  opacity: 0;
  transition: transform 0.45s ease, opacity 0.45s ease !important;
}

.mzs-slide.active .mzs-caption {
  transform: translateY(0) !important;
  opacity: 1 !important;
}

/* Caption ustundeki parlak cam cercevesi */
.mzs-caption::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
}

/* Caption icindeki baslik beyaz */
.mzs-caption .mzs-title a,
.mzs-caption .mzs-title {
  color: #fff !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* Caption meta renk */
.mzs-caption .mzs-meta,
.mzs-caption .mzs-meta a,
.mzs-caption .mzs-meta span {
  color: rgba(255, 255, 255, 0.7) !important;
}

/* ---- Caption Glassmorphism - daha guclu ---- */
.mzs-caption {
  background: rgba(5, 5, 15, 0.55) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 20px 28px 24px !important;
}

/* ---- Navbar Logo: JPG logonun beyaz kutusunu minimal yap ---- */
.mz-nav-logo {
  background: rgba(255, 255, 255, 0.92);
  border-radius: 6px;
  padding: 4px 10px;
  border-right: none;
  margin-right: 16px;
}

.mz-nav-logo img {
  max-height: 38px;
}

/* Sag taraf ayirici cizgi */
.mz-nav-logo::after {
  content: '';
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 30px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

/* Slider nokta efekti daha ince */
.mzs-slide::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1px) !important;
  background-size: 5px 5px !important;
}

/* ============================================================
   MAZHABER - 7 IYILESTIRME (Slider, Font, Light/Dark, Footer)
   ============================================================ */

/* 1. SLIDER OK (mzs-controls) --- ortada yuvarlak butonlar */
.mzs-controls {
  position: absolute !important;
  bottom: auto !important;
  top: 50% !important;
  right: 14px !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: flex !important;
  flex-direction: column;
  gap: 6px;
  z-index: 20 !important;
}

.mzs-btn {
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(0, 0, 0, 0.6) !important;
  backdrop-filter: blur(6px) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  color: #fff !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  transition: background 0.2s, transform 0.15s !important;
  padding: 0 !important;
}

.mzs-btn:hover {
  background: var(--mz-primary) !important;
  transform: scale(1.12) !important;
  border-color: var(--mz-primary) !important;
}

.mzs-btn svg {
  width: 15px;
  height: 15px;
}

.mzs-play {
  display: none !important;
}

/* 2. SLIDER NOKTA EFEKTI --- buyuk, net gozukur */
.mzs-slide::before {
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.28) 2px, transparent 2px) !important;
  background-size: 14px 14px !important;
  mix-blend-mode: overlay !important;
  opacity: 1 !important;
  transition: opacity 0.5s ease !important;
}

.mzs-slide:hover::before {
  opacity: 0 !important;
}

/* 3. MENU FONTLARI --- buyuk, okunaklı */
.mz-nav-links>li>a {
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.2px !important;
  text-transform: none !important;
  padding: 0 16px !important;
}

/* 4. LIGHT MOD --- tamamen acik */
body:not(.dark-mode) {
  background-color: #f0f2f5 !important;
  color: #1a1a2e !important;
}

/* DARK MOD --- tamamen koyu */
.dark-mode {
  background-color: #0c0c1a !important;
  color: #e0e0f0 !important;
}

/* 5. SCROLL TO TOP --- premium gradient yuvarlak ok */
.mz-scrollup {
  position: fixed !important;
  bottom: 32px !important;
  right: 32px !important;
  z-index: 9990 !important;
  width: 52px !important;
  height: 52px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%) !important;
  color: #fff !important;
  border: 2px solid rgba(255, 255, 255, 0.15) !important;
  cursor: pointer !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.55), 0 2px 8px rgba(0, 0, 0, 0.25) !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px) scale(0.85);
  transition: opacity 0.3s ease, transform 0.3s ease, box-shadow 0.2s !important;
  padding: 0 !important;
  text-decoration: none !important;
}

.mz-scrollup.visible {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.mz-scrollup:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  transform: translateY(-4px) scale(1.08) !important;
  box-shadow: 0 10px 32px rgba(192, 57, 43, 0.7), 0 3px 12px rgba(0, 0, 0, 0.3) !important;
}

.mz-scrollup:active {
  transform: translateY(-1px) scale(0.97) !important;
}

.mz-scrollup svg {
  display: block;
  flex-shrink: 0;
}

.mz-scrollup i {
  display: none !important;
}

/* 6. PREMIUM FOOTER */
#mz-footer {
  background: #0b0b1c !important;
  color: rgba(255, 255, 255, 0.6) !important;
  margin-top: 50px;
  border-top: 3px solid var(--mz-primary) !important;
  font-family: var(--mz-font);
}

.mz-footer-top {
  padding: 56px 0 40px;
}

.mz-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.mz-footer-logo {
  margin-bottom: 16px;
}

.mz-footer-logo img {
  max-height: 52px;
  width: auto;
  display: block;
}

.mz-footer-desc {
  font-size: 13.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 20px;
}

.mz-footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mz-fsocial-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all 0.2s;
  text-decoration: none;
}

.mz-fsocial-btn svg {
  width: 15px;
  height: 15px;
  display: block;
}

.mz-fsocial-btn:hover {
  color: var(--fc, #fff) !important;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.mz-fcol-title {
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 20px;
  padding-bottom: 12px;
  position: relative;
}

.mz-fcol-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 28px;
  height: 2px;
  background: var(--mz-primary);
  border-radius: 2px;
}

.mz-flinks {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mz-flinks li a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.18s, gap 0.18s;
}

.mz-flinks li a svg {
  opacity: 0.35;
  flex-shrink: 0;
  transition: opacity 0.18s;
}

.mz-flinks li a:hover {
  color: #fff;
  gap: 9px;
}

.mz-flinks li a:hover svg {
  opacity: 1;
}

.mz-footer-nl-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.42);
  margin-bottom: 12px;
  line-height: 1.6;
}

.mz-fnewsletter {
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

.mz-fnewsletter input[type=email] {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  font-family: var(--mz-font);
}

.mz-fnewsletter input[type=email]::placeholder {
  color: rgba(255, 255, 255, 0.28);
}

.mz-fnewsletter button {
  padding: 10px 16px;
  background: var(--mz-primary);
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.mz-fnewsletter button:hover {
  background: var(--mz-primary-dark);
}

.mz-footer-rss {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.38);
  text-decoration: none;
  transition: color 0.18s;
}

.mz-footer-rss:hover {
  color: #FF6600;
}

.mz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 18px 0;
}

.mz-fb-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.mz-copyright {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.3);
  margin: 0;
}

.mz-footer-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

.mz-footer-nav li a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  padding: 0 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: color 0.18s;
}

.mz-footer-nav li:first-child a {
  border-left: none;
}

.mz-footer-nav li a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .mz-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .mz-scrollup {
    bottom: 20px !important;
    right: 20px !important;
    width: 46px !important;
    height: 46px !important;
  }
}

@media (max-width: 600px) {
  .mz-footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}


/* ============================================================
   LIGHT MODE COMPLETE OVERRIDE
   Tum dark hardcoded renkleri body:not(.dark-mode) ile override
   ============================================================ */

/* CSS degiskenlerini light modda yeniden tanimla */
body:not(.dark-mode) {
  --mz-block: #ffffff;
  --mz-block-light: #f4f6f8;
  --mz-bg: #f0f2f5;
  --mz-card: #ffffff;
  --mz-text: #1a1a2e;
  --mz-text-muted: #666;
  --mz-border: #e0e4ea;
  --mz-topbar-bg: #1a1a2e;
  --mz-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
  background-color: #f0f2f5 !important;
  color: #1a1a2e !important;
}

/* Topbar & navbar: dark kalsin (header dark banded look) */
body:not(.dark-mode) #mz-topbar,
body:not(.dark-mode) #mz-navbar {
  /* Zaten koyu - bu kasitli, haber sitesi disayni */
}

/* Sayfa arka plani */
body:not(.dark-mode) #main-content,
body:not(.dark-mode) .page-content,
body:not(.dark-mode) .container>.row {
  background: transparent;
}

/* Hardcoded #1a1a2e / #13131f olan kartlari override et */
body:not(.dark-mode) .mz-block,
body:not(.dark-mode) .card,
body:not(.dark-mode) .widget,
body:not(.dark-mode) .sidebar-widget,
body:not(.dark-mode) .post-widget,
body:not(.dark-mode) .mz-widget,
body:not(.dark-mode) [class*="post-block"],
body:not(.dark-mode) [class*="mz-post"],
body:not(.dark-mode) .recent-posts,
body:not(.dark-mode) .latest-posts {
  background: #ffffff !important;
  color: #1a1a2e !important;
  border-color: #e0e4ea !important;
}

/* Yazilarin rengi */
body:not(.dark-mode) h1,
body:not(.dark-mode) h2,
body:not(.dark-mode) h3,
body:not(.dark-mode) h4,
body:not(.dark-mode) h5,
body:not(.dark-mode) h6 {
  color: #1a1a2e !important;
}

body:not(.dark-mode) p,
body:not(.dark-mode) span,
body:not(.dark-mode) li,
body:not(.dark-mode) td,
body:not(.dark-mode) label {
  color: #333 !important;
}

body:not(.dark-mode) a {
  color: #1a1a2e;
}

body:not(.dark-mode) a:hover {
  color: var(--mz-primary);
}

/* Slider panel rengi CSS variable sistemi ile yonetiliyor */



/* Post kartlari ve liste elemanlar */
body:not(.dark-mode) .post-item,
body:not(.dark-mode) .news-item,
body:not(.dark-mode) .article-item {
  background: #fff !important;
  border-color: #e5e8ee !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

/* Dropdown menuleri - light modda beyaz */
body:not(.dark-mode) .mz-dropdown {
  background: #ffffff !important;
  border-color: #e0e4ea !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
}

body:not(.dark-mode) .mz-dropdown li a {
  color: #333 !important;
  border-bottom-color: #f0f2f5 !important;
}

body:not(.dark-mode) .mz-dropdown li a:hover {
  color: var(--mz-primary) !important;
  background: #f8f9fb !important;
}

/* Widget basliklar */
body:not(.dark-mode) .widget-title,
body:not(.dark-mode) .mz-widget-title,
body:not(.dark-mode) .section-title {
  color: #1a1a2e !important;
  border-color: var(--mz-primary) !important;
}

/* Input ve form alanlari */
body:not(.dark-mode) input,
body:not(.dark-mode) textarea,
body:not(.dark-mode) select {
  background: #fff !important;
  color: #1a1a2e !important;
  border-color: #dde1e7 !important;
}

/* Genel border rengi */
body:not(.dark-mode) hr,
body:not(.dark-mode) [class*="border"],
body:not(.dark-mode) .divider {
  border-color: #e0e4ea !important;
}

/* Breaking news vs bantlar - acik modda */
body:not(.dark-mode) .breaking-news,
body:not(.dark-mode) .ticker-wrap {
  background: #f8f9fb !important;
  border-color: #e0e4ea !important;
}

/* Mz-scrollup light modda da kirmizi kalsin */
body:not(.dark-mode) .mz-scrollup {
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%) !important;
}

/* Dark mod: tam koyu */
.dark-mode {
  background-color: #0c0c1a !important;
  color: #e0e0f0 !important;
}

/* ================================================================
   MAZHABER PREMIUM HEADER + NAVBAR  -- Kapsamli Taze Tasarim
   ================================================================ */

/* ---------------------------------------------------------------
   1. HEADER -- UST BANT
   --------------------------------------------------------------- */
#mz-header {
  background: #0c0c1a;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  position: relative;
  z-index: 1010;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mz-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 68px;
  gap: 16px;
  flex-wrap: nowrap;
  padding: 0;
}

.mz-header-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
  text-decoration: none;
}

.mz-header-logo-link {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mz-header-logo-img {
  max-height: 62px;
  max-width: 150px;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 4px 8px;
  transition: opacity 0.2s;
}

.mz-header-logo-link:hover .mz-header-logo-img {
  opacity: 0.8;
}

.mz-header-site-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mz-header-site-name {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: #fff;
  line-height: 1;
}

.mz-header-date {
  font-size: 11px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.38);
  display: flex;
  align-items: center;
  gap: 5px;
  letter-spacing: 0.2px;
}

.mz-header-tools {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: nowrap;
}

.mz-header-sep {
  display: inline-block;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.1);
  margin: 0 4px;
  flex-shrink: 0;
}

.mz-header-social {
  display: flex;
  align-items: center;
  gap: 3px;
}

.mz-social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.45);
  transition: background 0.18s, color 0.18s, transform 0.15s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  flex-shrink: 0;
  text-decoration: none;
}

.mz-social-icon:hover {
  background: var(--social-color, var(--mz-primary));
  color: #fff;
  transform: translateY(-2px);
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.mz-header-langs {
  display: flex;
  align-items: center;
  gap: 0;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.mz-header-langs a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  padding: 4px 7px;
  border-radius: 4px;
  transition: color 0.15s, background 0.15s;
}

.mz-header-langs a.active,
.mz-header-langs a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
}

.mz-header-langs a+a::before {
  content: '/';
  margin-right: 7px;
  color: rgba(255, 255, 255, 0.18);
}

.mz-header-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
  flex-shrink: 0;
  padding: 0;
}

.mz-header-icon-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.mz-header-user-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 255, 255, 0.7);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  white-space: nowrap;
}

.mz-header-user-btn:hover {
  background: rgba(255, 255, 255, 0.13);
  color: #fff;
}

.mz-header-login-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border-radius: 8px;
  background: rgba(192, 57, 43, 0.12);
  border: 1px solid rgba(192, 57, 43, 0.28);
  color: rgba(255, 255, 255, 0.85);
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.2px;
  transition: background 0.18s, border-color 0.18s, color 0.18s, box-shadow 0.18s;
  white-space: nowrap;
}

.mz-header-login-btn:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.35);
}

.mz-header-subscribe-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  border-radius: 8px;
  background: linear-gradient(135deg, #c0392b 0%, #96281b 100%);
  border: none;
  color: #fff;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.2px;
  cursor: pointer;
  transition: opacity 0.18s, transform 0.15s, box-shadow 0.18s;
  white-space: nowrap;
  box-shadow: 0 2px 10px rgba(192, 57, 43, 0.3);
}

.mz-header-subscribe-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(192, 57, 43, 0.4);
}

.mz-header-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.mz-header-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.mz-search-bar {
  display: none;
  background: #0c0c1a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: 12px 0;
}

.mz-search-bar.open {
  display: block;
}

.mz-search-bar form {
  display: flex;
}

.mz-search-bar input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: #fff;
  padding: 10px 16px;
  font-size: 14px;
  outline: none;
}

.mz-search-bar input:focus {
  border-color: var(--mz-primary);
  background: rgba(255, 255, 255, 0.07);
}

.mz-search-bar button {
  padding: 0 18px;
  background: var(--mz-primary);
  border: none;
  border-radius: 0 8px 8px 0;
  color: #fff;
  cursor: pointer;
  transition: opacity 0.18s;
}

.mz-search-bar button:hover {
  opacity: 0.85;
}

/* ---------------------------------------------------------------
   2. NAVBAR -- ANA MENU
   --------------------------------------------------------------- */
#mz-navbar {
  background: #fff;
  border-bottom: 3px solid var(--mz-primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.mz-nav-inner {
  display: flex;
  align-items: stretch;
  min-height: 50px;
  gap: 0;
}

.mz-nav-brand {
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--mz-primary);
  padding: 0 20px 0 0;
  display: flex;
  align-items: center;
  border-right: 2px solid rgba(0, 0, 0, 0.07);
  margin-right: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}

.mz-nav-links {
  display: flex;
  align-items: stretch;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
  flex: 1;
}

.mz-nav-links>li {
  position: relative;
  display: flex;
  align-items: stretch;
}

.mz-nav-links>li>a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 0 18px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #3a3a4a;
  white-space: nowrap;
  transition: color 0.18s;
  text-decoration: none;
  position: relative;
}

.mz-nav-links>li>a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 18px;
  right: 18px;
  height: 3px;
  background: var(--mz-primary);
  transform: scaleX(0);
  transition: transform 0.2s ease;
  transform-origin: left;
  border-radius: 2px 2px 0 0;
}

.mz-nav-links>li>a:hover,
.mz-nav-links>li.active>a {
  color: var(--mz-primary);
}

.mz-nav-links>li>a:hover::after,
.mz-nav-links>li.active>a::after {
  transform: scaleX(1);
}

.drop-arrow {
  opacity: 0.5;
  flex-shrink: 0;
}

.mz-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-top: 3px solid var(--mz-primary);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
  z-index: 999;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  list-style: none;
  padding: 4px 0;
  margin: 0;
}

.mz-nav-links>li:hover .mz-dropdown {
  display: block;
}

.mz-dropdown li a {
  display: block;
  padding: 10px 16px;
  color: #555;
  text-decoration: none;
  font-family: 'Inter', 'Segoe UI', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1px;
  transition: background 0.14s, color 0.14s, padding-left 0.14s;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.mz-dropdown li a:hover {
  background: rgba(192, 57, 43, 0.05);
  color: var(--mz-primary);
  padding-left: 20px;
}

/* ---------------------------------------------------------------
   3. LIGHT MODE -- Header + Navbar
   --------------------------------------------------------------- */
body:not(.dark-mode) #mz-header {
  background: #f6f7fb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05);
}

body:not(.dark-mode) .mz-header-site-name {
  color: #111122;
}

body:not(.dark-mode) .mz-header-date {
  color: rgba(0, 0, 0, 0.38);
}

body:not(.dark-mode) .mz-header-date svg {
  color: rgba(0, 0, 0, 0.3);
}

body:not(.dark-mode) .mz-header-sep {
  background: rgba(0, 0, 0, 0.1);
}

body:not(.dark-mode) .mz-social-icon {
  background: rgba(0, 0, 0, 0.04);
  color: rgba(0, 0, 0, 0.4);
  border-color: rgba(0, 0, 0, 0.07);
}

body:not(.dark-mode) .mz-header-langs a {
  color: rgba(0, 0, 0, 0.5);
}

body:not(.dark-mode) .mz-header-langs a.active,
body:not(.dark-mode) .mz-header-langs a:hover {
  color: var(--mz-primary);
  background: rgba(192, 57, 43, 0.07);
}

body:not(.dark-mode) .mz-header-icon-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.5);
}

body:not(.dark-mode) .mz-header-icon-btn:hover {
  background: rgba(0, 0, 0, 0.09);
  color: #111;
}

body:not(.dark-mode) .mz-header-user-btn {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.07);
  color: rgba(0, 0, 0, 0.65);
}

body:not(.dark-mode) .mz-header-login-btn {
  background: rgba(192, 57, 43, 0.07);
  border-color: rgba(192, 57, 43, 0.22);
  color: var(--mz-primary);
}

body:not(.dark-mode) .mz-header-login-btn:hover {
  background: var(--mz-primary);
  color: #fff;
}

/* Navbar light -- #mz-navbar above handles light bg */
body:not(.dark-mode) #mz-navbar {
  background: #fff;
}

body:not(.dark-mode) .mz-nav-brand {
  color: var(--mz-primary);
  border-right-color: rgba(0, 0, 0, 0.08);
}

body:not(.dark-mode) .mz-nav-links>li>a {
  color: #3a3a4a;
}

body:not(.dark-mode) .mz-nav-links>li>a:hover,
body:not(.dark-mode) .mz-nav-links>li.active>a {
  color: var(--mz-primary);
}

/* Dark mode overrides */
.dark-mode #mz-navbar {
  background: #13131f;
}

.dark-mode .mz-nav-brand {
  color: rgba(255, 255, 255, 0.4);
  border-right-color: rgba(255, 255, 255, 0.07);
}

.dark-mode .mz-nav-links>li>a {
  color: rgba(255, 255, 255, 0.6);
}

.dark-mode .mz-nav-links>li>a:hover,
.dark-mode .mz-nav-links>li.active>a {
  color: #fff;
}

.dark-mode .mz-dropdown {
  background: #1a1a2e;
  border-color: rgba(255, 255, 255, 0.07);
}

.dark-mode .mz-dropdown li a {
  color: rgba(255, 255, 255, 0.65);
  border-bottom-color: rgba(255, 255, 255, 0.04);
}

.dark-mode .mz-dropdown li a:hover {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  padding-left: 20px;
}


/* Icerik genel light */
body:not(.dark-mode) {
  background-color: #f0f2f5;
  color: #1a1a2e;
}

body:not(.dark-mode) .mz-block,
body:not(.dark-mode) .mz-widget,
body:not(.dark-mode) .mz-post-card,
body:not(.dark-mode) .mz-post-h,
body:not(.dark-mode) .card {
  background: #ffffff !important;
  color: #1a1a2e !important;
  border-color: #e4e8ee !important;
}

body:not(.dark-mode) .widget-head {
  color: #0e0e28 !important;
  border-color: var(--mz-primary) !important;
}

body:not(.dark-mode) h1,
body:not(.dark-mode) h2,
body:not(.dark-mode) h3,
body:not(.dark-mode) h4 {
  color: #0e0e28 !important;
}

body:not(.dark-mode) .mz-block a,
body:not(.dark-mode) .mz-post-card a,
body:not(.dark-mode) .mz-post-h a,
body:not(.dark-mode) .mz-widget a {
  color: #1a1a2e !important;
}

body:not(.dark-mode) .mz-block a:hover,
body:not(.dark-mode) .mz-post-card a:hover,
body:not(.dark-mode) .mz-post-h a:hover {
  color: var(--mz-primary) !important;
}

/* Arama bar light */
body:not(.dark-mode) .mz-search-bar {
  background: #f0f2f5;
  border-top-color: #e0e4ea;
}

body:not(.dark-mode) .mz-search-bar input {
  background: #fff;
  border-color: #d0d4dc;
  color: #1a1a2e;
}

body:not(.dark-mode) .mz-search-bar input::placeholder {
  color: #999;
}

/* ---- 7. RESPONSIVE ---- */
/* Orta ekran: bazi ogeleri gizle */
@media (max-width: 960px) {
  .mz-header-subscribe-btn {
    display: none;
  }

  .mz-header-hamburger {
    display: flex;
  }
}

/* Kucuk ekran: site-info ve sosyal gizle */
@media (max-width: 768px) {
  .mz-header-site-info {
    display: none;
  }

  .mz-header-social {
    display: none;
  }

  .mz-nav-links {
    display: none;
  }

  #mz-navbar.nav-open .mz-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 44px;
    left: 0;
    right: 0;
    background: #13131f;
    z-index: 998;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
  }

  #mz-navbar.nav-open .mz-nav-links>li>a {
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  }
}

@media (max-width: 640px) {
  .mz-header-langs {
    display: none;
  }

  .mz-header-login-btn span {
    display: none;
  }

  .mz-header-user-btn span {
    display: none;
  }

  .mz-header-logo-img {
    max-height: 38px;
  }
}

/* Icerik + sidebar responsiveness */
@media (max-width: 1100px) {
  .mzs-panel {
    width: 240px;
  }
}

@media (max-width: 900px) {
  .mz-featured {
    flex-direction: column;
  }

  .mzs-panel {
    width: 100%;
    border-left: none;
    border-top: 1px solid var(--mzs-panel-border);
    max-height: 300px;
  }
}

/* ================================================================
   MZS PANEL HEADER — Premium kontrol cubugu (Alan 1 ustu)
   ================================================================ */

/* Panel yapisi: flex column - header uste, liste altta */
.mzs-panel {
  display: flex !important;
  flex-direction: column !important;
}

/* Panel Header Bar */
.mzs-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #0d0d1a;
  border-bottom: 2px solid var(--mz-primary);
  flex-shrink: 0;
  gap: 8px;
}

body:not(.dark-mode) .mzs-panel-header {
  background: #f0f2f5;
  border-bottom: 2px solid var(--mz-primary);
}

.mzs-panel-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  flex: 1;
  white-space: nowrap;
}

body:not(.dark-mode) .mzs-panel-label {
  color: rgba(0, 0, 0, 0.35);
}

/* Kontrol buton grubu */
.mzs-panel-controls {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

/* Premium kucuk kontrol butonlari */
.mzs-ctrl-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.12s;
  padding: 0;
  flex-shrink: 0;
}

.mzs-ctrl-btn:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
  transform: scale(1.08);
}

.mzs-ctrl-btn:active {
  transform: scale(0.95);
}

.mzs-ctrl-play {
  background: rgba(192, 57, 43, 0.12);
  border-color: rgba(192, 57, 43, 0.2);
  color: rgba(192, 57, 43, 0.7);
}

.mzs-ctrl-play:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
}

body:not(.dark-mode) .mzs-ctrl-btn {
  background: rgba(0, 0, 0, 0.06);
  border-color: rgba(0, 0, 0, 0.12);
  color: rgba(0, 0, 0, 0.45);
}

body:not(.dark-mode) .mzs-ctrl-btn:hover {
  background: var(--mz-primary);
  border-color: var(--mz-primary);
  color: #fff;
}

body:not(.dark-mode) .mzs-ctrl-play {
  background: rgba(192, 57, 43, 0.08);
  border-color: rgba(192, 57, 43, 0.18);
  color: var(--mz-primary);
}

/* Eski mzs-controls ve mzs-btn gizle (artik kullanilmiyor) */
.mzs-controls,
.mzs-btn,
.mzs-panel .mzs-controls {
  display: none !important;
}


/* ================================================================
   KAPSAMLI DUZELTME PAKETI — Kullanici geri bildirimi
   ================================================================ */

/* ALAN 1: Site adi header brand icinde acikca gorunsun */
.mz-header-brand {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
}

.mz-header-site-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
}

.mz-header-site-name {
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 22px !important;
  font-weight: 900 !important;
  color: #fff !important;
  letter-spacing: -0.5px !important;
  line-height: 1 !important;
  display: block !important;
}

body:not(.dark-mode) .mz-header-site-name {
  color: #111122 !important;
}

/* ALAN 3: Logo daha buyuk */
.mz-header-logo-img {
  max-height: 62px !important;
  max-width: 150px !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  object-fit: contain !important;
}

body:not(.dark-mode) .mz-header-logo-img {
  background: rgba(0, 0, 0, 0.04) !important;
}

body.dark-mode .mz-header-logo-img {
  filter: brightness(0) invert(1) !important;
}

.mz-header-inner {
  display: block !important;
}

#mz-header {
  padding: 0 !important;
}

.mz-header-top-inner {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  padding: 10px 16px 10px 0 !important;
}

.mz-header-row-nav {
  border-top: 1px solid var(--mz-border) !important;
}

.mz-header-nav-inner {
  display: flex !important;
  align-items: center !important;
  min-height: 54px !important;
}

.mz-header-nav {
  width: 100% !important;
}

.mz-header-nav-links {
  justify-content: flex-start !important;
}

.mz-header-banner {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 14px !important;
  min-width: 240px !important;
}

.mz-header-banner .mz-ad {
  margin: 0 !important;
}

.mz-header-banner a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  max-width: 100% !important;
}

.mz-header-banner img,
.mz-header-banner video {
  max-width: 100% !important;
  max-height: 64px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  border-radius: 8px !important;
}

@media (max-width: 900px) {
  .mz-header-banner {
    display: none !important;
  }
}

/* ALAN 4: NAVBAR — Buyuk, ortalanmis, animasyonlu menu */
#mz-navbar {
  border-bottom: 3px solid var(--mz-primary) !important;
}

.mz-nav-inner {
  min-height: 56px !important;
  align-items: center !important;
}

.mz-nav-links {
  align-items: center !important;
  height: 100% !important;
}

.mz-nav-links>li {
  align-items: center !important;
}

.mz-nav-links>li>a {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 56px !important;
  padding: 0 20px !important;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.8px !important;
  color: #3a3a4a !important;
  text-decoration: none !important;
  position: relative !important;
  transition: color 0.2s, background 0.2s !important;
}

.dark-mode .mz-nav-links>li>a {
  color: rgba(255, 255, 255, 0.6) !important;
}

/* Alti cizgi animasyonu — daha belirgin */
.mz-nav-links>li>a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  right: 50% !important;
  height: 3px !important;
  background: var(--mz-primary) !important;
  transition: left 0.25s ease, right 0.25s ease !important;
  border-radius: 3px 3px 0 0 !important;
}

.mz-nav-links>li>a:hover,
.mz-nav-links>li.active>a {
  color: var(--mz-primary) !important;
  background: rgba(192, 57, 43, 0.04) !important;
}

.mz-nav-links>li>a:hover::after,
.mz-nav-links>li.active>a::after {
  left: 0 !important;
  right: 0 !important;
}

/* Hover: hafif yukarı kalkma animasyonu */
.mz-nav-links>li>a:hover {
  transform: translateY(-1px) !important;
}

/* Dark mode nav */
.dark-mode .mz-nav-links>li>a:hover,
.dark-mode .mz-nav-links>li.active>a {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

/* ALAN 5: Sosyal ikonlar — brand renkleri default'ta gorunsun */
.mz-social-icon {
  width: 32px !important;
  height: 32px !important;
  border-radius: 8px !important;
  color: var(--social-color, rgba(255, 255, 255, 0.6)) !important;
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s !important;
}

.mz-social-icon:hover {
  background: var(--social-color, var(--mz-primary)) !important;
  color: #fff !important;
  transform: translateY(-3px) scale(1.1) !important;
  border-color: transparent !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25) !important;
}

body:not(.dark-mode) .mz-social-icon {
  color: var(--social-color, rgba(0, 0, 0, 0.5)) !important;
  background: rgba(0, 0, 0, 0.04) !important;
  border-color: rgba(0, 0, 0, 0.06) !important;
}

body:not(.dark-mode) .mz-social-icon:hover {
  color: #fff !important;
}

/* ALAN 6: Icerik alani her iki yana yayilsin (justify) */
/* Son Gonderiler + Guncel Gonderiler - card icerikleri */
.mz-content-area {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 24px !important;
}

/* Icerik yazi metinleri justify */
.post-content,
.post-excerpt,
.article-body,
.entry-content {
  text-align: justify !important;
}

/* Post listeleri her iki yana yayilsin */
.posts-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)) !important;
  gap: 20px !important;
}

/* ================================================================
   SON KRITIK DUZELTMELER
   ================================================================ */

/* ALAN 1: Header brand sol tarafa kaydir, space-between zorla */
.mz-header-inner {
  justify-content: space-between !important;
  align-items: center !important;
}

/* ALAN 1: Site adi her zaman goster (masaustu icin) */
@media (min-width: 769px) {
  .mz-header-site-info {
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
  }

  .mz-header-site-name {
    display: block !important;
    font-family: 'Inter', 'Segoe UI', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #fff !important;
    letter-spacing: -0.3px !important;
  }

  body:not(.dark-mode) .mz-header-site-name {
    color: #111 !important;
  }

  .mz-header-date {
    display: flex !important;
    color: rgba(255, 255, 255, 0.4) !important;
  }

  body:not(.dark-mode) .mz-header-date {
    color: rgba(0, 0, 0, 0.4) !important;
  }
}

/* ALAN 2: Navbar sol marka goster (MAZLUMDER veya site adi) */
.mz-nav-brand {
  display: flex !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 2.5px !important;
  text-transform: uppercase !important;
  color: var(--mz-primary) !important;
  padding: 0 18px 0 0 !important;
  border-right: 2px solid rgba(0, 0, 0, 0.08) !important;
  margin-right: 8px !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
}

.dark-mode .mz-nav-brand {
  border-right-color: rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

/* ALAN 3: Logo buyuk */
.mz-header-logo-img {
  max-height: 80px !important;
  max-width: 180px !important;
  object-fit: contain !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
}

/* Sosyal ikonlar daha renkli - default renk goster */
.mz-social-icon svg {
  transition: transform 0.2s !important;
}

.mz-social-icon:hover svg {
  transform: scale(1.15) !important;
}

/* ================================================================
   SLIDER PANEL — LIGHT MOD DUZELTME
   ================================================================ */

/* Panel arkaplan ve sinir light modda acik */
body:not(.dark-mode) .mzs-panel {
  background: #ffffff !important;
  border-left: 1px solid rgba(0, 0, 0, 0.08) !important;
  scrollbar-color: #ccc transparent !important;
}

body:not(.dark-mode) .mzs-panel::-webkit-scrollbar-thumb {
  background: #ccc !important;
}

/* Panel header (SON HABERLER bandi) light modda */
body:not(.dark-mode) .mzs-panel-header {
  background: #f0f0f5 !important;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
}

body:not(.dark-mode) .mzs-panel-label {
  color: #1a1a2e !important;
}

/* Panel item border light moddad */
body:not(.dark-mode) .mzs-panel-item {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06) !important;
}

body:not(.dark-mode) .mzs-panel-item:hover {
  background: rgba(0, 0, 0, 0.03) !important;
}

body:not(.dark-mode) .mzs-panel-item.active {
  background: rgba(192, 57, 43, 0.07) !important;
  border-left: 3px solid var(--mz-primary) !important;
}

/* Numara light modda */
body:not(.dark-mode) .mzs-num {
  color: rgba(0, 0, 0, 0.18) !important;
}

/* Kategori etiketi */
body:not(.dark-mode) .mzs-panel-cat {
  color: rgba(0, 0, 0, 0.45) !important;
}

body:not(.dark-mode) .mzs-panel-item.active .mzs-panel-cat {
  color: var(--mz-primary) !important;
}

/* Baslik yazisi light modda koyu */
body:not(.dark-mode) .mzs-panel-title {
  color: #1a1a2e !important;
}

body:not(.dark-mode) .mzs-panel-title a {
  color: #1a1a2e !important;
  text-decoration: none !important;
}

body:not(.dark-mode) .mzs-panel-title a:hover {
  color: var(--mz-primary) !important;
}

body:not(.dark-mode) .mzs-panel-item.active .mzs-panel-title,
body:not(.dark-mode) .mzs-panel-item.active .mzs-panel-title a {
  color: var(--mz-primary) !important;
}

/* Kontrol butonlari light modda */
body:not(.dark-mode) .mzs-ctrl-btn {
  background: rgba(0, 0, 0, 0.07) !important;
  border-color: rgba(0, 0, 0, 0.1) !important;
  color: rgba(0, 0, 0, 0.6) !important;
}

body:not(.dark-mode) .mzs-ctrl-btn:hover {
  background: rgba(0, 0, 0, 0.13) !important;
  color: #000 !important;
}

/* ================================================================
   ANASAYFA GONDERI LISTESI — TAM EKRAN GRID TASARIMI
   ================================================================ */

/* postsLoadMoreContent icindeki kartlari 3-kolon grid'e cevir */
#postsLoadMoreContent {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 18px !important;
  margin-top: 4px !important;
}

/* Her kart dikey (card) olarak yeniden tasarla */
#postsLoadMoreContent .mz-post-h {
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: var(--mz-card) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07) !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

#postsLoadMoreContent .mz-post-h:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13) !important;
}

/* Resim tam genislik, yuksek */
#postsLoadMoreContent .mz-post-h .ph-img {
  width: 100% !important;
  height: 190px !important;
  flex-shrink: 0 !important;
  border-radius: 0 !important;
}

#postsLoadMoreContent .mz-post-h .ph-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s !important;
}

#postsLoadMoreContent .mz-post-h:hover .ph-img img {
  transform: scale(1.06) !important;
}

/* Yazı alani padding */
#postsLoadMoreContent .mz-post-h .ph-body {
  padding: 14px 16px 16px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 6px !important;
  flex: 1 !important;
}

/* Kategori etiketi */
#postsLoadMoreContent .mz-post-h .ph-cat {
  font-size: 10px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  color: var(--mz-primary) !important;
}

/* Baslik daha buyuk */
#postsLoadMoreContent .mz-post-h .ph-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  -webkit-line-clamp: 3 !important;
  margin: 0 !important;
}

/* Meta (tarih vs) */
#postsLoadMoreContent .mz-post-h .ph-meta {
  font-size: 11.5px !important;
  color: var(--mz-text-muted) !important;
  margin-top: auto !important;
}

/* Resim olmayan kartlar icin */
#postsLoadMoreContent .mz-post-h:not(:has(.ph-img)) .ph-body {
  padding: 20px !important;
}

/* Light mod kart rengi */
body:not(.dark-mode) #postsLoadMoreContent .mz-post-h {
  background: #fff !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

/* Responsive: 2 kolon tablet */
@media (max-width: 960px) {
  #postsLoadMoreContent {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  #postsLoadMoreContent .mz-post-h .ph-img {
    height: 160px !important;
  }
}

/* Responsive: 1 kolon mobil */
@media (max-width: 600px) {
  #postsLoadMoreContent {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }
}

/* Baslik kismini da tam genislik yap: sec-head iki yana yayilsin */
.mz-block .mz-section-head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 0 12px !important;
  border-bottom: 2px solid var(--mz-primary) !important;
  margin-bottom: 18px !important;
}

/* ================================================================
   GONDERI GRID — TAM EKRAN GENISLIK + RENKLI CERCEVE
   ================================================================ */

/* mz-block (latest_posts sarici) tam ekrana tas */
#mz-content .mz-block {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

/* Wrapper'daki container kisitini geri al;
   sadece mz-layout icin tam genislik uygula */
#mz-wrapper .container {
  max-width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  width: 100% !important;
}

/* Layout da tam genislik */
.mz-layout {
  width: 100% !important;
}

/* Grid: tam genislik, daha fazla bosluk */
#postsLoadMoreContent {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 22px !important;
  width: 100% !important;
  margin-top: 6px !important;
}

/* Kart: RENKLI CERCEVE */
#postsLoadMoreContent .mz-post-h {
  flex-direction: column !important;
  gap: 0 !important;
  padding: 0 !important;
  margin-bottom: 0 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  background: var(--mz-card) !important;
  /* Renkli cerceve: ugrade kirli renk + glow */
  border: 2px solid transparent !important;
  background-clip: padding-box !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.35),
    0 4px 18px rgba(0, 0, 0, 0.09) !important;
  transition: transform 0.22s, box-shadow 0.22s !important;
}

#postsLoadMoreContent .mz-post-h:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 0 0 2px var(--mz-primary),
    0 10px 32px rgba(192, 57, 43, 0.2) !important;
}

/* Resim */
#postsLoadMoreContent .mz-post-h .ph-img {
  width: 100% !important;
  height: 195px !important;
  flex-shrink: 0 !important;
  border-radius: 0 !important;
  overflow: hidden !important;
}

#postsLoadMoreContent .mz-post-h .ph-img img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s !important;
}

#postsLoadMoreContent .mz-post-h:hover .ph-img img {
  transform: scale(1.07) !important;
}

/* Yazı alani */
#postsLoadMoreContent .mz-post-h .ph-body {
  padding: 14px 16px 18px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 7px !important;
  flex: 1 !important;
}

#postsLoadMoreContent .mz-post-h .ph-cat {
  font-size: 10px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  color: var(--mz-primary) !important;
}

#postsLoadMoreContent .mz-post-h .ph-title {
  font-size: 15.5px !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
  -webkit-line-clamp: 3 !important;
  margin: 0 !important;
}

#postsLoadMoreContent .mz-post-h .ph-meta {
  font-size: 11.5px !important;
  color: var(--mz-text-muted) !important;
  margin-top: auto !important;
}

/* Light mod */
body:not(.dark-mode) #postsLoadMoreContent .mz-post-h {
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.3),
    0 4px 14px rgba(0, 0, 0, 0.06) !important;
}

body:not(.dark-mode) #postsLoadMoreContent .mz-post-h:hover {
  box-shadow: 0 0 0 2.5px var(--mz-primary),
    0 10px 28px rgba(192, 57, 43, 0.15) !important;
}

/* Responsive */
@media (max-width: 1024px) {
  #postsLoadMoreContent {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }

  #postsLoadMoreContent .mz-post-h .ph-img {
    height: 165px !important;
  }
}

@media (max-width: 600px) {
  #postsLoadMoreContent {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  #mz-wrapper .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
}

/* Logo: her iki modda ayni, daha buyuk */
.mz-header-logo-img {
  max-height: 96px !important;
  max-width: 200px !important;
  width: auto !important;
  height: auto !important;
  object-fit: contain !important;
  padding: 4px 8px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

/* Her iki modda ayni arkaplan - cok belirgin olmayan hafif frosted */
body:not(.dark-mode) .mz-header-logo-img {
  background: rgba(0, 0, 0, 0.03) !important;
}

/* Header yuksekligi de logoya gore biraz artir */
.mz-header-inner {
  min-height: 80px !important;
}

/* ================================================================
   TÜM GONDERI RESIMLERI — GRAYSCALE + HALFTONE NOKTA EFEKTI
   Default: siyah-beyaz + nokta overlay
   Hover: tam renkli, temiz
   ================================================================ */

/* -- Kapsayici: position relative zorunlu -- */
.mz-post-h .ph-img,
.mz-post-sm .ps-img,
.mz-post-v .pv-img,
.mz-post-grid .pg-img,
.post-thumb,
.cat-post-img,
.featured-img,
.mz-card-img {
  position: relative !important;
  overflow: hidden !important;
}

/* -- Resim: grayscale default -- */
.mz-post-h .ph-img img,
.mz-post-sm .ps-img img,
.mz-post-v .pv-img img,
.mz-post-grid .pg-img img,
.post-thumb img,
.cat-post-img img,
.featured-img img,
.mz-card-img img {
  filter: grayscale(100%) contrast(1.05) !important;
  transition: filter 0.4s ease, transform 0.35s ease !important;
}

/* -- Halftone nokta overlay (pseudo-element) -- */
.mz-post-h .ph-img::after,
.mz-post-sm .ps-img::after,
.mz-post-v .pv-img::after,
.mz-post-grid .pg-img::after,
.post-thumb::after,
.cat-post-img::after,
.featured-img::after,
.mz-card-img::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.55) 1.2px, transparent 1.2px) !important;
  background-size: 6px 6px !important;
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transition: opacity 0.4s ease !important;
}

/* -- Hover: renkli + nokta kayboluyor -- */
.mz-post-h:hover .ph-img img,
.mz-post-sm:hover .ps-img img,
.mz-post-v:hover .pv-img img,
.mz-post-grid:hover .pg-img img,
.post-thumb:hover img,
.cat-post-img:hover img,
.featured-img:hover img,
.mz-card-img:hover img {
  filter: grayscale(0%) contrast(1) !important;
  transform: scale(1.06) !important;
}

.mz-post-h:hover .ph-img::after,
.mz-post-sm:hover .ps-img::after,
.mz-post-v:hover .pv-img::after,
.mz-post-grid:hover .pg-img::after,
.post-thumb:hover::after,
.cat-post-img:hover::after,
.featured-img:hover::after,
.mz-card-img:hover::after {
  opacity: 0 !important;
}

/* postsLoadMoreContent grid kartlari icin de */
#postsLoadMoreContent .mz-post-h .ph-img img {
  filter: grayscale(100%) contrast(1.05) !important;
  transition: filter 0.4s ease, transform 0.35s ease !important;
}

#postsLoadMoreContent .mz-post-h .ph-img::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.5) 1.2px, transparent 1.2px) !important;
  background-size: 6px 6px !important;
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 1 !important;
  transition: opacity 0.4s ease !important;
}

#postsLoadMoreContent .mz-post-h:hover .ph-img img {
  filter: grayscale(0%) contrast(1) !important;
  transform: scale(1.07) !important;
}

#postsLoadMoreContent .mz-post-h:hover .ph-img::after {
  opacity: 0 !important;
}

/* ================================================================
   PREMIUM FOOTER TASARIMI — KOYU, MODERN, NET OKUNAKLI
   ================================================================ */

/* Ana footer zemin */
#mz-footer {
  background: #0d0e14 !important;
  color: #c8cad8 !important;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  border-top: 3px solid var(--mz-primary) !important;
  margin-top: 48px !important;
}

/* Ust kısım */
.mz-footer-top {
  padding: 56px 0 40px !important;
}

/* Grid: 4 esit kolon */
.mz-footer-grid {
  display: grid !important;
  grid-template-columns: 2fr 1fr 1fr 1.4fr !important;
  gap: 40px !important;
  align-items: start !important;
}

/* Hakkinda kolonu */
.mz-fcol-about .mz-footer-logo img {
  max-height: 80px !important;
  max-width: 160px !important;
  object-fit: contain !important;
  margin-bottom: 18px !important;
  filter: brightness(1.1) !important;
}

.mz-footer-desc {
  font-size: 13.5px !important;
  line-height: 1.75 !important;
  color: #8b8fa8 !important;
  max-width: 280px !important;
  margin-bottom: 22px !important;
}

/* Footer sosyal ikonlar */
.mz-footer-social {
  display: flex !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
}

.mz-fsocial-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.07) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  transition: background 0.25s, transform 0.22s, box-shadow 0.25s !important;
  text-decoration: none !important;
}

.mz-fsocial-btn:hover {
  background: var(--fc, #c0392b) !important;
  border-color: transparent !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important;
  color: #fff !important;
}

.mz-fsocial-btn svg {
  width: 18px !important;
  height: 18px !important;
}

/* Kolon basligin */
.mz-fcol-title {
  font-size: 12px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  padding-bottom: 12px !important;
  border-bottom: 2px solid rgba(192, 57, 43, 0.5) !important;
}

.mz-fcol-title span {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Footer link listesi */
.mz-flinks {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mz-flinks li {
  margin-bottom: 0 !important;
}

.mz-flinks li a {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 7px 0 !important;
  font-size: 13.5px !important;
  color: #8b8fa8 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: color 0.2s, gap 0.2s !important;
}

.mz-flinks li a:hover {
  color: #fff !important;
  gap: 12px !important;
}

.mz-flinks li a svg {
  opacity: 0.4 !important;
  transition: opacity 0.2s !important;
  flex-shrink: 0 !important;
}

.mz-flinks li a:hover svg {
  opacity: 0.8 !important;
}

/* Newsletter formu */
.mz-footer-nl-text {
  font-size: 13px !important;
  color: #8b8fa8 !important;
  margin: 0 0 14px !important;
  line-height: 1.6 !important;
}

.mz-fnewsletter {
  display: flex !important;
  gap: 0 !important;
  border-radius: 8px !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  background: rgba(255, 255, 255, 0.05) !important;
}

.mz-fnewsletter input[type="email"] {
  flex: 1 !important;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  padding: 11px 14px !important;
  font-size: 13px !important;
  color: #fff !important;
  font-family: inherit !important;
}

.mz-fnewsletter input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.3) !important;
}

.mz-fnewsletter button {
  background: var(--mz-primary) !important;
  border: none !important;
  padding: 11px 16px !important;
  color: #fff !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.mz-fnewsletter button:hover {
  background: #a93226 !important;
}

/* RSS butonu */
.mz-footer-rss {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-top: 16px !important;
  font-size: 13px !important;
  color: #F26522 !important;
  text-decoration: none !important;
  background: rgba(242, 101, 34, 0.1) !important;
  padding: 7px 14px !important;
  border-radius: 20px !important;
  border: 1px solid rgba(242, 101, 34, 0.25) !important;
  transition: background 0.2s !important;
}

.mz-footer-rss:hover {
  background: rgba(242, 101, 34, 0.2) !important;
}

/* Alt çizgi */
.mz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07) !important;
  padding: 18px 0 !important;
  background: #090a0f !important;
}

.mz-fb-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.mz-copyright {
  font-size: 13px !important;
  color: #5a5d73 !important;
  margin: 0 !important;
}

.mz-footer-nav {
  display: flex !important;
  list-style: none !important;
  gap: 20px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mz-footer-nav li a {
  font-size: 12.5px !important;
  color: #5a5d73 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.mz-footer-nav li a:hover {
  color: #fff !important;
}

/* Responsive footer */
@media (max-width: 900px) {
  .mz-footer-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 28px !important;
  }

  .mz-fcol-about {
    grid-column: 1 / -1 !important;
  }
}

@media (max-width: 580px) {
  .mz-footer-grid {
    grid-template-columns: 1fr !important;
  }

  .mz-footer-top {
    padding: 36px 0 28px !important;
  }

  .mz-fb-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* ================================================================
   ULTRA PREMIUM FOOTER — v2
   ================================================================ */
#mz-footer {
  background: linear-gradient(180deg, #12141f 0%, #0a0b12 100%) !important;
  color: #b0b3c8 !important;
  border-top: 3px solid var(--mz-primary) !important;
  margin-top: 56px !important;
  font-family: 'Inter', 'Segoe UI', sans-serif !important;
  position: relative !important;
}

/* Subtle background pattern */
#mz-footer::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.015) 1px, transparent 0) !important;
  background-size: 32px 32px !important;
  pointer-events: none !important;
}

/* ---- ABONE ŞERIDI ---- */
.mz-footer-ribbon {
  background: linear-gradient(135deg, #c0392b 0%, #922b21 100%) !important;
  padding: 22px 0 !important;
  position: relative !important;
  z-index: 1 !important;
}

.mz-footer-ribbon-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 24px !important;
  flex-wrap: wrap !important;
  max-width: 100% !important;
  padding: 0 32px !important;
}

.mz-ribbon-text {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.3px !important;
}

.mz-ribbon-form {
  display: flex !important;
  gap: 0 !important;
  border-radius: 50px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25) !important;
  flex: 0 0 auto !important;
}

.mz-ribbon-form input[type="email"] {
  background: rgba(255, 255, 255, 0.15) !important;
  border: none !important;
  outline: none !important;
  padding: 12px 22px !important;
  font-size: 14px !important;
  color: #fff !important;
  width: 300px !important;
  font-family: inherit !important;
  backdrop-filter: blur(8px) !important;
}

.mz-ribbon-form input[type="email"]::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}

.mz-ribbon-form button {
  background: #fff !important;
  color: #c0392b !important;
  border: none !important;
  padding: 12px 26px !important;
  font-size: 13.5px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
  font-family: inherit !important;
  letter-spacing: 0.5px !important;
  transition: background 0.2s !important;
}

.mz-ribbon-form button:hover {
  background: #f0f0f0 !important;
}

/* ---- ANA GÖVDE ---- */
.mz-footer-body {
  padding: 60px 0 48px !important;
  position: relative !important;
  z-index: 1 !important;
}

.mz-footer-container {
  max-width: 100% !important;
  padding: 0 32px !important;
}

.mz-footer-main-grid {
  display: grid !important;
  grid-template-columns: 1.6fr 1.4fr 1.2fr 1.4fr !important;
  gap: 48px !important;
  align-items: start !important;
}

/* ---- MARKA KOLONU ---- */
.mzf-logo-img {
  max-height: 80px !important;
  max-width: 160px !important;
  object-fit: contain !important;
  margin-bottom: 20px !important;
  display: block !important;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3)) !important;
}

.mzf-tagline {
  font-size: 13.5px !important;
  line-height: 1.8 !important;
  color: #697085 !important;
  margin: 0 0 24px !important;
  max-width: 280px !important;
}

/* Social pills */
.mzf-social-stack {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.mzf-social-pill {
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 9px 16px !important;
  border-radius: 50px !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  background: rgba(255, 255, 255, 0.04) !important;
  color: #c8cad8 !important;
  text-decoration: none !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s !important;
  width: fit-content !important;
}

.mzf-social-pill:hover {
  background: var(--sc, #c0392b) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateX(4px) !important;
}

.mzf-social-pill svg {
  flex-shrink: 0 !important;
}

/* ---- SON HABERLER KOLONU ---- */
.mzf-news-list {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.mzf-news-item {
  display: flex !important;
  gap: 12px !important;
  align-items: flex-start !important;
  padding: 12px 0 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  text-decoration: none !important;
  transition: background 0.18s !important;
}

.mzf-news-item:last-child {
  border-bottom: none !important;
}

.mzf-news-thumb {
  width: 72px !important;
  height: 54px !important;
  flex-shrink: 0 !important;
  border-radius: 6px !important;
  overflow: hidden !important;
}

.mzf-news-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.3s !important;
}

.mzf-news-item:hover .mzf-news-thumb img {
  transform: scale(1.08) !important;
}

.mzf-news-info {
  flex: 1 !important;
  min-width: 0 !important;
}

.mzf-news-cat {
  font-size: 10px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 1px !important;
  display: block !important;
  margin-bottom: 5px !important;
}

.mzf-news-title {
  font-size: 13px !important;
  font-weight: 600 !important;
  color: #c8cad8 !important;
  line-height: 1.45 !important;
  margin: 0 !important;
  transition: color 0.2s !important;
}

.mzf-news-item:hover .mzf-news-title {
  color: #fff !important;
}

/* ---- BASLIK ---- */
.mzf-col-heading {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  margin: 0 0 20px !important;
  padding-bottom: 14px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

.mzf-heading-line {
  display: inline-block !important;
  width: 24px !important;
  height: 3px !important;
  background: var(--mz-primary) !important;
  border-radius: 2px !important;
  flex-shrink: 0 !important;
}

/* ---- LINK LISTESI ---- */
.mzf-link-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mzf-link-list li a {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  padding: 8px 0 !important;
  font-size: 13.5px !important;
  color: #697085 !important;
  text-decoration: none !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
  transition: color 0.2s, padding-left 0.2s !important;
}

.mzf-link-list li a:hover {
  color: #fff !important;
  padding-left: 6px !important;
}

.mzf-link-dot {
  display: inline-block !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--mz-primary) !important;
  flex-shrink: 0 !important;
  transition: transform 0.2s !important;
}

.mzf-link-list li a:hover .mzf-link-dot {
  transform: scale(1.5) !important;
}

/* ---- PLATFORM KARTLARI ---- */
.mzf-platform-cards {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-bottom: 16px !important;
}

.mzf-platform-card {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 11px 14px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #b0b3c8 !important;
  text-decoration: none !important;
  font-size: 13.5px !important;
  font-weight: 600 !important;
  transition: background 0.22s, border-color 0.22s, color 0.22s, transform 0.18s !important;
}

.mzf-platform-card:hover {
  background: var(--sc, #c0392b) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateX(5px) !important;
}

.mzf-platform-card svg:first-child {
  flex-shrink: 0 !important;
}

.mzf-ext-icon {
  margin-left: auto !important;
  opacity: 0 !important;
  transition: opacity 0.2s !important;
}

.mzf-platform-card:hover .mzf-ext-icon {
  opacity: 0.7 !important;
}

/* RSS */
.mzf-rss-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  font-size: 13px !important;
  color: #F26522 !important;
  text-decoration: none !important;
  background: rgba(242, 101, 34, 0.1) !important;
  padding: 9px 16px !important;
  border-radius: 8px !important;
  border: 1px solid rgba(242, 101, 34, 0.2) !important;
  transition: background 0.2s !important;
}

.mzf-rss-btn:hover {
  background: rgba(242, 101, 34, 0.2) !important;
  color: #F26522 !important;
}

/* ---- ALT BAR ---- */
.mz-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 20px 0 !important;
  background: rgba(0, 0, 0, 0.35) !important;
  position: relative !important;
  z-index: 1 !important;
}

.mzf-bottom-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.mzf-copyright {
  font-size: 13px !important;
  color: #3d4058 !important;
  margin: 0 !important;
}

.mzf-bottom-center {
  display: flex !important;
  align-items: center !important;
}

.mzf-made-with {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  font-size: 12.5px !important;
  color: #3d4058 !important;
}

.mzf-bottom-nav {
  display: flex !important;
  list-style: none !important;
  gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
}

.mzf-bottom-nav li a {
  font-size: 12.5px !important;
  color: #3d4058 !important;
  text-decoration: none !important;
  transition: color 0.2s !important;
}

.mzf-bottom-nav li a:hover {
  color: #8b8fa8 !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1100px) {
  .mz-footer-main-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }

  .mzf-col-brand {
    grid-column: 1 / -1 !important;
  }

  .mzf-social-stack {
    flex-direction: row !important;
    flex-wrap: wrap !important;
  }
}

@media (max-width: 700px) {
  .mz-footer-main-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  .mz-footer-ribbon-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
  }

  .mz-ribbon-form input[type="email"] {
    width: 200px !important;
  }

  .mz-footer-body {
    padding: 36px 0 28px !important;
  }

  .mzf-bottom-inner {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
  }
}

/* ================================================================
   FOOTER OKUNAKLILIK DÜZELTMESİ — Yazılar daha açık ve net
   ================================================================ */

/* Ana footer yazı rengi - koyu gri yerine açık */
#mz-footer {
  color: #d8dae8 !important;
}

/* Tagline ve aciklamalar */
.mzf-tagline {
  color: #a8abbe !important;
  font-size: 14px !important;
}

/* Link listesi yazıları */
.mzf-link-list li a {
  color: #b8bcd0 !important;
  font-size: 14px !important;
}

.mzf-link-list li a:hover {
  color: #ffffff !important;
}

/* Haber başlıkları */
.mzf-news-title {
  color: #d8dae8 !important;
  font-size: 13.5px !important;
}

.mzf-news-item:hover .mzf-news-title {
  color: #ffffff !important;
}

/* Haber kategori etiketi */
.mzf-news-cat {
  font-size: 10.5px !important;
  opacity: 0.9 !important;
}

/* Platform kartları yazı */
.mzf-platform-card {
  color: #d0d3e4 !important;
  font-size: 14px !important;
}

/* Sosyal pill yazıları */
.mzf-social-pill {
  color: #d0d3e4 !important;
  font-size: 14px !important;
}

/* Alt bar yazıları - biraz daha görünür */
.mzf-copyright {
  color: #7a7e98 !important;
  font-size: 13.5px !important;
}

.mzf-made-with {
  color: #7a7e98 !important;
  font-size: 13px !important;
}

.mzf-bottom-nav li a {
  color: #7a7e98 !important;
  font-size: 13px !important;
}

.mzf-bottom-nav li a:hover {
  color: #c8cad8 !important;
}

/* Başlık yazıları net beyaz */
.mzf-col-heading {
  color: #ffffff !important;
  font-size: 11.5px !important;
  letter-spacing: 1.8px !important;
}

/* Son haberler bölümünde no-thumb kartlar */
.mzf-news-item:not(:has(.mzf-news-thumb)) .mzf-news-info {
  padding: 4px 0 !important;
}

/* Footer ribbon metni */
.mz-ribbon-text {
  font-size: 15.5px !important;
  font-weight: 600 !important;
}

/* ================================================================
   FOOTER ALT BAR + GENEL OKUNAKLILIK — SON FIX
   ================================================================ */

/* Alt bar: ALL yazılar çok daha parlak */
.mzf-copyright {
  color: #c8cad8 !important;
  font-size: 13.5px !important;
}

.mzf-made-with {
  color: #c0c3d4 !important;
  font-size: 13px !important;
}

.mzf-bottom-nav li a {
  color: #b8bcd0 !important;
  font-size: 13px !important;
}

.mzf-bottom-nav li a:hover {
  color: #ffffff !important;
}

/* Kategori başlıkları — tam beyaz + kırmızı çizgi */
.mzf-col-heading {
  color: #ffffff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 2px !important;
  padding-bottom: 14px !important;
  border-bottom: 2px solid rgba(192, 57, 43, 0.6) !important;
}

/* Link listesi - daha parlak */
.mzf-link-list li a {
  color: #c8cad8 !important;
  font-size: 14px !important;
}

.mzf-link-list li:last-child a {
  border-bottom: none !important;
}

/* Tagline - okunabilir */
.mzf-tagline {
  color: #b8bcd0 !important;
  font-size: 13.5px !important;
  line-height: 1.75 !important;
}

/* Platform kartları isim yazısı */
.mzf-platform-card {
  color: #e0e2f0 !important;
}

/* Sosyal pill yazıları */
.mzf-social-pill {
  color: #d8dae8 !important;
}

/* ================================================================
   FOOTER — TÜM YAZILARI BEYAZA ZORLA
   ================================================================ */

/* Alt bar tümü */
#mz-footer .mz-footer-bottom,
#mz-footer .mz-footer-bottom * {
  color: #e0e3f5 !important;
}

#mz-footer .mzf-copyright {
  color: #e8eaf5 !important;
}

#mz-footer .mzf-made-with,
#mz-footer .mzf-made-with span {
  color: #e8eaf5 !important;
}

#mz-footer .mzf-bottom-nav li a {
  color: #e8eaf5 !important;
}

#mz-footer .mzf-bottom-nav li a:hover {
  color: #ffffff !important;
}

/* Kolon başlıkları */
#mz-footer .mzf-col-heading {
  color: #ffffff !important;
}

/* Site adı (MAZLUMDER yazısı varsa) */
#mz-footer .mzf-col-brand,
#mz-footer .mzf-col-brand p,
#mz-footer .mzf-col-brand span {
  color: #e8eaf5 !important;
}

/* Tagline */
#mz-footer .mzf-tagline {
  color: #d8daf0 !important;
}

/* Haber başlıkları */
#mz-footer .mzf-news-title {
  color: #e4e6f5 !important;
}

/* Link listesi */
#mz-footer .mzf-link-list li a {
  color: #d8daf0 !important;
}

#mz-footer .mzf-link-list li a:hover {
  color: #ffffff !important;
}

/* Platform kart yazıları */
#mz-footer .mzf-platform-card {
  color: #e8eaf5 !important;
}

#mz-footer .mzf-platform-card span {
  color: #e8eaf5 !important;
}

/* Sosyal pill yazıları */
#mz-footer .mzf-social-pill span {
  color: #e0e2f0 !important;
}

/* Abone ribbon */
#mz-footer .mz-ribbon-text {
  color: #ffffff !important;
}

#mz-footer .mz-ribbon-text span {
  color: #ffffff !important;
}

/* ================================================================
   FOOTER — İLETİŞİM / ADRES KARTI
   ================================================================ */

/* Genel iletişim bloğu */
.mzf-contact-block {
  margin-top: 4px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 12px !important;
  overflow: hidden !important;
  background: rgba(255, 255, 255, 0.03) !important;
}

/* Her iletişim satırı */
.mzf-contact-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 14px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  transition: background 0.2s !important;
}

.mzf-contact-item:last-of-type {
  border-bottom: none !important;
}

.mzf-contact-item:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* İkon baloncuğu */
.mzf-contact-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  border-radius: 8px !important;
  background: rgba(192, 57, 43, 0.18) !important;
  color: #e74c3c !important;
  margin-top: 1px !important;
}

/* Adres metni */
.mzf-contact-text {
  font-size: 13.5px !important;
  color: #d0d3e4 !important;
  line-height: 1.6 !important;
  padding-top: 6px !important;
}

/* Link (tel, email) */
.mzf-contact-link {
  font-size: 13.5px !important;
  color: #d0d3e4 !important;
  text-decoration: none !important;
  padding-top: 6px !important;
  display: block !important;
  transition: color 0.2s !important;
}

.mzf-contact-link:hover {
  color: #ff6b5b !important;
}

/* CTA Butonu */
.mzf-contact-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 14px 16px 14px !important;
  padding: 10px 18px !important;
  background: linear-gradient(135deg, #c0392b 0%, #922b21 100%) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  border-radius: 50px !important;
  text-decoration: none !important;
  letter-spacing: 0.3px !important;
  transition: opacity 0.2s, transform 0.18s !important;
  width: fit-content !important;
}

.mzf-contact-cta:hover {
  opacity: 0.88 !important;
  transform: translateX(3px) !important;
  color: #fff !important;
}

/* ================================================================
   SIDEBAR — BİZİ TAKİP EDİN — DİKEY PREMIUM KART
   ================================================================ */

/* Grid'i dikey full-width yapıyoruz */
.mz-follow-grid {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  padding: 8px !important;
}

.mz-follow-card {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 12px 16px !important;
  border-radius: 10px !important;
  border: 1px solid rgba(0, 0, 0, 0.07) !important;
  background: rgba(0, 0, 0, 0.02) !important;
  text-decoration: none !important;
  color: #333 !important;
  transition: background 0.22s, border-color 0.2s, transform 0.18s, box-shadow 0.2s !important;
  position: relative !important;
  overflow: hidden !important;
}

/* Marka rengi sol kenara çizgi */
.mz-follow-card::before {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 3px !important;
  background: var(--fc, #c0392b) !important;
  border-radius: 0 !important;
  transition: width 0.2s !important;
}

.mz-follow-card:hover {
  background: var(--fc, #c0392b) !important;
  border-color: transparent !important;
  color: #fff !important;
  transform: translateX(4px) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.mz-follow-card:hover::before {
  width: 0 !important;
}

.mz-follow-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 36px !important;
  height: 36px !important;
  min-width: 36px !important;
  border-radius: 8px !important;
  background: rgba(0, 0, 0, 0.06) !important;
  color: var(--fc, #c0392b) !important;
  transition: background 0.2s, color 0.2s !important;
}

.mz-follow-card:hover .mz-follow-icon {
  background: rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.mz-follow-label {
  font-size: 14px !important;
  font-weight: 600 !important;
  flex: 1 !important;
}

.mz-follow-arrow {
  opacity: 0.35 !important;
  transition: opacity 0.2s, transform 0.2s !important;
  flex-shrink: 0 !important;
}

.mz-follow-card:hover .mz-follow-arrow {
  opacity: 0.8 !important;
  transform: translateX(3px) !important;
  color: #fff !important;
}

/* Dark mode uyumu */
.dark-mode .mz-follow-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  color: #e8eaf5 !important;
}

.dark-mode .mz-follow-icon {
  background: rgba(255, 255, 255, 0.08) !important;
}

/* ================================================================
   FOOTER SOL KOLON — LOGO + MAZLUMDER ADI PREMİUM
   ================================================================ */

/* Logo bölgesi: tam genişlik, ortalanmış değil sol hizalı */
.mzf-logo-link {
  display: block !important;
  margin-bottom: 0 !important;
}

.mzf-logo-img {
  max-height: 72px !important;
  max-width: 140px !important;
  object-fit: contain !important;
  display: block !important;
}

/* Site adı (MAZLUMDER) — şık stil */
.mzf-col-brand::after {
  content: none !important;
}

/* Tagline altına bir küçük gradient çizgi */
.mzf-tagline {
  border-left: 3px solid rgba(192, 57, 43, 0.5) !important;
  padding-left: 12px !important;
  border-radius: 0 !important;
  margin-bottom: 20px !important;
}

/* ================================================================
   FOOTER — TELEFON/FAKS AYIRI (Admin tek field giriyor,
   faks varsa "Faks:" kelimesinden böldük — görsel ayrım)
   ================================================================ */
.mzf-contact-item .mzf-contact-text br,
.mzf-contact-item .mzf-contact-link br {
  display: block !important;
  content: "" !important;
  margin: 4px 0 !important;
}

/* Footer genel yazı net beyaz */
#mz-footer .mzf-col-brand .mzf-tagline,
#mz-footer .mzf-col-brand {
  color: #d8daf0 !important;
}

/* ================================================================
   FOOTER BRAND HEADER — Logo + Site Adı yan yana
   ================================================================ */

.mzf-brand-header {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  margin-bottom: 20px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.mzf-brand-header .mzf-logo-link {
  flex-shrink: 0 !important;
}

.mzf-brand-header .mzf-logo-img {
  max-height: 60px !important;
  max-width: 60px !important;
  width: 60px !important;
  height: 60px !important;
  object-fit: contain !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.07) !important;
  padding: 6px !important;
  display: block !important;
}

.mzf-brand-info {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}

.mzf-site-name {
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #ffffff !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

.mzf-site-slogan {
  font-size: 12px !important;
  color: #8b8fa8 !important;
  line-height: 1.5 !important;
  max-width: 200px !important;
}

/* ================================================================
   FOOTER İLETİŞİM KARTI — mzf-contact-card
   ================================================================ */

.mzf-contact-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
}

/* Kart başlığı */
.mzf-contact-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  background: linear-gradient(135deg, rgba(192, 57, 43, 0.35) 0%, rgba(146, 43, 33, 0.15) 100%) !important;
  border-bottom: 1px solid rgba(192, 57, 43, 0.2) !important;
}

/* Her iletişim satırı */
.mzf-cinfo-row {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  padding: 13px 16px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
  transition: background 0.18s !important;
}

.mzf-cinfo-row:last-of-type {
  border-bottom: none !important;
}

.mzf-cinfo-row:hover {
  background: rgba(255, 255, 255, 0.04) !important;
}

/* İkon baloncuğu */
.mzf-cinfo-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  min-width: 30px !important;
  border-radius: 8px !important;
  margin-top: 2px !important;
}

/* Her ikon için farklı renk */
.mzf-cinfo-pin {
  background: rgba(192, 57, 43, 0.18) !important;
  color: #e74c3c !important;
}

.mzf-cinfo-phone {
  background: rgba(39, 174, 96, 0.18) !important;
  color: #27ae60 !important;
}

.mzf-cinfo-fax {
  background: rgba(52, 152, 219, 0.18) !important;
  color: #3498db !important;
}

.mzf-cinfo-email {
  background: rgba(243, 156, 18, 0.18) !important;
  color: #f39c12 !important;
}

/* İçerik alanı */
.mzf-cinfo-body {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  flex: 1 !important;
  min-width: 0 !important;
}

/* Etiket (Adres, Telefon, Faks, E-Posta) */
.mzf-cinfo-label {
  font-size: 10.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.2px !important;
  color: #697085 !important;
  line-height: 1 !important;
}

/* Değer metni */
.mzf-cinfo-value {
  font-size: 13.5px !important;
  color: #e8eaf5 !important;
  line-height: 1.55 !important;
}

/* Link değerler */
.mzf-cinfo-link {
  text-decoration: none !important;
  color: #e8eaf5 !important;
  transition: color 0.2s !important;
}

.mzf-cinfo-link:hover {
  color: #ff6b5b !important;
}

/* ================================================================
   GALERI — ALBUM GRID
   ================================================================ */
.mz-gallery-albums-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)) !important;
  gap: 20px !important;
  padding: 8px 0 40px !important;
}

.mz-album-card {
  border-radius: 12px !important;
  overflow: hidden !important;
  background: var(--mz-card-bg, #fff) !important;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08) !important;
  transition: transform 0.25s, box-shadow 0.25s !important;
}

.mz-album-card:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14) !important;
}

.mz-album-card>a {
  display: block !important;
  text-decoration: none !important;
  color: inherit !important;
}

.mz-album-thumb {
  position: relative !important;
  height: 180px !important;
  overflow: hidden !important;
  background: #f0f0f0 !important;
}

.mz-album-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  transition: transform 0.35s !important;
}

.mz-album-card:hover .mz-album-thumb img {
  transform: scale(1.07) !important;
}

.mz-album-overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.4) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity 0.25s !important;
}

.mz-album-card:hover .mz-album-overlay {
  opacity: 1 !important;
}

.mz-album-nophoto {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #bbb !important;
}

.mz-album-info {
  padding: 14px 16px !important;
}

.mz-album-title {
  font-size: 15px !important;
  font-weight: 700 !important;
  margin: 0 0 4px !important;
  line-height: 1.4 !important;
  color: var(--mz-text, #222) !important;
}

.mz-album-count {
  font-size: 12px !important;
  color: #888 !important;
}

/* ================================================================
   FOOTER — KOLON DİKEY HIZALAMA DÜZELTMESİ
   ================================================================ */
/* Tüm footer kolonları üstten hizalı */
.mz-footer-main-grid {
  align-items: start !important;
}

/* Her kolon başlığı tutarlı margin */
.mzf-col>.mzf-col-heading:first-child {
  margin-top: 0 !important;
}

/* Kolon başlıkları logo alanıyla aynı dikey pozisyondan başlasın */
.mzf-col-news .mzf-col-heading,
.mzf-col-links .mzf-col-heading,
.mzf-col-contact .mzf-col-heading {
  margin-top: 0 !important;
}

/* Footer kolon iç padding tutarlı */
.mzf-col {
  padding-top: 0 !important;
}

/* ================================================================
   FOOTER — MZF-INFO-CARD: Tutarlı kart yapısı tüm kolonlara
   ================================================================ */

.mzf-info-card {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.08) !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  height: 100% !important;
}

/* Kart başlık satırı — her kart için farklı renk tonu */
.mzf-info-card-header {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  padding: 12px 16px !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: 2px !important;
  color: #fff !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07) !important;
}

/* Farklı kolon renkler */
.mzf-card-news {
  background: linear-gradient(135deg, rgba(41, 128, 185, 0.35) 0%, rgba(31, 97, 141, 0.15) 100%) !important;
}

.mzf-card-links {
  background: linear-gradient(135deg, rgba(39, 174, 96, 0.3) 0%, rgba(30, 132, 73, 0.12) 100%) !important;
}

.mzf-card-social {
  background: linear-gradient(135deg, rgba(155, 89, 182, 0.3) 0%, rgba(125, 60, 152, 0.12) 100%) !important;
}

/* Alt başlık (Kategoriler gibi) */
.mzf-card-sub-header {
  display: flex !important;
  align-items: center !important;
  gap: 6px !important;
  padding: 10px 16px 6px !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 1.5px !important;
  color: #8b8fa8 !important;
  border-top: 1px solid rgba(255, 255, 255, 0.05) !important;
  margin-top: 4px !important;
}

/* Link listesi içinde padding */
.mzf-info-card .mzf-link-list {
  padding: 4px 0 !important;
}

.mzf-info-card .mzf-link-list li a {
  padding: 9px 16px !important;
  margin: 0 !important;
  border-radius: 0 !important;
}

/* Haber listesi içinde */
.mzf-info-card .mzf-news-list {
  padding: 8px 0 !important;
}

.mzf-info-card .mzf-news-item {
  padding: 10px 16px !important;
}

/* Platform kartlar içinde */
.mzf-info-card .mzf-platform-cards {
  padding: 8px 12px !important;
  margin-bottom: 0 !important;
}

.mzf-info-card .mzf-platform-card {
  border-radius: 8px !important;
  padding: 10px 12px !important;
}

/* ================================================================
   FOOTER — LOGO HİZALAMA DÜZELTMESİ
   Tüm kolonlar kartlarıyla üstten hizalı başlar
   ================================================================ */

/* Grid — stretch yerine start */
.mz-footer-main-grid {
  align-items: stretch !important;
}

/* Brand header (logo+slogan) belirli yükseklikte + card altında */
.mzf-col-brand {
  display: flex !important;
  flex-direction: column !important;
}

.mzf-brand-header {
  margin-bottom: 16px !important;
}

.mzf-contact-card {
  flex: 1 !important;
}

/* Diğer kolonlar da height 100% card ile stretch */
.mzf-col {
  display: flex !important;
  flex-direction: column !important;
}

.mzf-col-news>.mzf-info-card,
.mzf-col-links>.mzf-info-card,
.mzf-col-contact>.mzf-info-card {
  flex: 1 !important;
}

/* İletişim kartı hizası brand header ile uyumlu */
.mzf-col-brand .mzf-contact-card,
.mzf-col-news .mzf-info-card,
.mzf-col-links .mzf-info-card,
.mzf-col-contact .mzf-info-card {
  border-radius: 14px !important;
}

/* ================================================================
   FOOTER — KÖK HİZALAMA DÜZELTMESİ
   Logo alanı 60px+16px margin = ~90px yükseklikte → diğer kolonlar
   aynı offset ile başlamalı
   ================================================================ */

/* Grid: tüm kolonlar üstten stretch */
.mz-footer-main-grid {
  align-items: stretch !important;
  grid-auto-rows: auto !important;
}

/* Tüm kolonlar flex container */
.mzf-col {
  display: flex !important;
  flex-direction: column !important;
}

/* Sol kolon: logo header + iletişim kartı */
.mzf-col-brand {
  display: flex !important;
  flex-direction: column !important;
}

/* Diğer kolonlar: brand-header'la eşitleme için boşluk */
/* Brand header yüksekliği: 60px img + 16px mb padding-bottom = ~92px */
.mzf-col-news,
.mzf-col-links,
.mzf-col-contact {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Üst boşluğu CSS ile solve et: brand header ile aynı margin */
.mzf-col-news>.mzf-info-card,
.mzf-col-links>.mzf-info-card,
.mzf-col-contact>.mzf-info-card {
  margin-top: calc(60px + 20px) !important;
  /* logo img h + brand-header mb */
  flex: 1 !important;
}

/* Brand header tam yüksekliği normalize (slogan'ın uzunluğuna göre değişiyor) */
.mzf-brand-header {
  min-height: 80px !important;
  margin-bottom: 0 !important;
  padding-bottom: 16px !important;
}

/* İletişim kartı tam stretch */
.mzf-col-brand .mzf-contact-card {
  flex: 1 !important;
}

/* ================================================================
   FOOTER KART HOVER EFEKTLERİ — Premium
   ================================================================ */

/* Ana kart hover */
.mzf-info-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s !important;
  cursor: default !important;
}

.mzf-info-card:hover {
  border-color: rgba(255, 255, 255, 0.18) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(255, 255, 255, 0.06) !important;
  transform: translateY(-2px) !important;
}

/* Başlık hover'da parlama */
.mzf-info-card:hover .mzf-info-card-header {
  filter: brightness(1.2) !important;
}

/* İletişim kartı hover */
.mzf-contact-card {
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.2s !important;
}

.mzf-contact-card:hover {
  border-color: rgba(192, 57, 43, 0.35) !important;
  box-shadow: 0 8px 32px rgba(192, 57, 43, 0.12), 0 0 0 1px rgba(192, 57, 43, 0.1) !important;
  transform: translateY(-2px) !important;
}

/* Haberler kart hover — mavi */
.mzf-col-news .mzf-info-card:hover {
  border-color: rgba(41, 128, 185, 0.35) !important;
  box-shadow: 0 8px 32px rgba(41, 128, 185, 0.12), 0 0 0 1px rgba(41, 128, 185, 0.1) !important;
}

/* Linkler kart hover — yeşil */
.mzf-col-links .mzf-info-card:hover {
  border-color: rgba(39, 174, 96, 0.35) !important;
  box-shadow: 0 8px 32px rgba(39, 174, 96, 0.12), 0 0 0 1px rgba(39, 174, 96, 0.1) !important;
}

/* Sosyal kart hover — mor */
.mzf-col-contact .mzf-info-card:hover {
  border-color: rgba(155, 89, 182, 0.35) !important;
  box-shadow: 0 8px 32px rgba(155, 89, 182, 0.12), 0 0 0 1px rgba(155, 89, 182, 0.1) !important;
}

/* Haber item hover — daha belirgin */
.mzf-info-card .mzf-news-item {
  border-radius: 6px !important;
  margin: 0 6px !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
  transition: background 0.18s !important;
}

.mzf-info-card .mzf-news-item:hover {
  background: rgba(255, 255, 255, 0.07) !important;
}

/* Link hover — daha göze çarpıcı */
.mzf-info-card .mzf-link-list li a {
  border-radius: 6px !important;
  margin: 1px 6px !important;
  transition: background 0.18s, color 0.18s, padding-left 0.2s !important;
}

.mzf-info-card .mzf-link-list li a:hover {
  background: rgba(255, 255, 255, 0.07) !important;
  padding-left: 20px !important;
  color: #fff !important;
}

/* Platform kart hover — zaten vardı, güçlendir */
.mzf-info-card .mzf-platform-card:hover {
  background: var(--sc, #c0392b) !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3) !important;
  transform: translateX(6px) !important;
}

/* ================================================================
   FOOTER — ALT BAR: LOGO + SİTE ADI + COPYRIGHT
   ================================================================ */
.mzf-bottom-logo {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.mzf-bottom-logo-img {
  width: 40px !important;
  height: 40px !important;
  object-fit: contain !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.08) !important;
  padding: 5px !important;
  flex-shrink: 0 !important;
}

body.dark-mode .mzf-bottom-logo-img {
  filter: brightness(0) invert(1) !important;
}

.mzf-bottom-brand {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}

.mzf-bottom-site-name {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #fff !important;
  letter-spacing: 0.5px !important;
  line-height: 1.2 !important;
}

.mzf-bottom-brand .mzf-copyright {
  font-size: 11px !important;
  color: rgba(255, 255, 255, 0.45) !important;
  margin: 0 !important;
}

/* Alt bar iç grid: logo sol, center orta, nav sağ */
.mzf-bottom-inner {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 14px 0 !important;
}

/* ================================================================
   FOOTER — HİZALAMA: Logo kaldırıldı → kartlar üstten hizalı
   ================================================================ */

/* Tüm kolonlar eşit başlar */
.mzf-col {
  display: flex !important;
  flex-direction: column !important;
}

/* Brand kolon: iletişim kartı tam dolu */
.mzf-col-brand {
  display: flex !important;
  flex-direction: column !important;
}

.mzf-col-brand .mzf-contact-card {
  flex: 1 !important;
}

/* Diğer kolonlar da flex 1 */
.mzf-col-news>.mzf-info-card,
.mzf-col-links>.mzf-info-card,
.mzf-col-contact>.mzf-info-card {
  flex: 1 !important;
  margin-top: 0 !important;
}

/* Grid tüm kolonları stretch et */
.mz-footer-main-grid {
  align-items: stretch !important;
}

/* ================================================================
   İLETİŞİM SAYFASI — GÖNDER BUTONU PREMİUM
   ================================================================ */
.mz-send-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 10px !important;
  width: 100% !important;
  padding: 16px 28px !important;
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  letter-spacing: 0.5px !important;
  cursor: pointer !important;
  transition: background 0.2s, box-shadow 0.2s, transform 0.15s !important;
  margin-top: 8px !important;
  box-shadow: 0 4px 18px rgba(192, 57, 43, 0.3) !important;
}

.mz-send-btn:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  box-shadow: 0 6px 24px rgba(192, 57, 43, 0.45) !important;
  transform: translateY(-1px) !important;
}

.mz-send-btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.2) !important;
}

.mz-send-btn svg {
  flex-shrink: 0 !important;
}

/* ================================================================
   FOOTER — ÜST HİZALAMA DÜZELTMESİ (kesin)
   ================================================================ */

/* Grid: kartların üstleri hizalansın */
.mz-footer-main-grid {
  align-items: start !important;
  grid-auto-rows: auto !important;
}

/* Önceki yanlış margin-top'u tamamen sıfırla */
.mzf-col-news>.mzf-info-card,
.mzf-col-links>.mzf-info-card,
.mzf-col-contact>.mzf-info-card {
  margin-top: 0 !important;
  flex: none !important;
}

/* Kolon brand (iletişim) da üstten başlasın */
.mzf-col-brand .mzf-contact-card {
  flex: none !important;
  margin-top: 0 !important;
}

/* Kolonlar flex değil normal block olsun — stretch istemiyoruz */
.mzf-col {
  display: block !important;
}

/* ================================================================
   İLETİŞİM SAYFASI — HARİTA BÖLÜMÜ
   ================================================================ */

.mz-map-section {
  width: 100% !important;
  margin-top: 0 !important;
  background: #0d0f1a !important;
}

/* Harita üst şerit */
.mz-map-header {
  background: linear-gradient(135deg, #131625 0%, #1a1d30 100%) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
  padding: 16px 0 !important;
}

.mz-map-header-inner {
  max-width: 1400px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

/* Sol: "Bizi Bulun" başlığı */
.mz-map-title-block {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  color: #fff !important;
  letter-spacing: 0.5px !important;
}

.mz-map-title-block svg {
  color: #e74c3c !important;
  flex-shrink: 0 !important;
}

/* Sağ: adres + yol tarifi */
.mz-map-address-badge {
  display: flex !important;
  align-items: center !important;
  gap: 14px !important;
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-size: 12.5px !important;
  color: #aab0cc !important;
  flex-wrap: wrap !important;
}

.mz-map-directions-btn {
  display: inline-flex !important;
  align-items: center !important;
  gap: 5px !important;
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  padding: 6px 12px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  transition: background 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 2px 8px rgba(192, 57, 43, 0.3) !important;
}

.mz-map-directions-btn:hover {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  box-shadow: 0 4px 16px rgba(192, 57, 43, 0.45) !important;
  color: #fff !important;
}

/* Harita iframe container */
.mz-map-container {
  position: relative !important;
  width: 100% !important;
  height: 420px !important;
  overflow: hidden !important;
}

.mz-map-iframe {
  width: 100% !important;
  height: 100% !important;
  border: none !important;
  display: block !important;
  filter: saturate(0.85) !important;
}

/* Adres pin kartı — harita üzerinde sol alt */
.mz-map-pin-card {
  position: absolute !important;
  bottom: 20px !important;
  left: 20px !important;
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  background: rgba(10, 12, 28, 0.94) !important;
  backdrop-filter: blur(12px) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  border-radius: 12px !important;
  padding: 12px 16px !important;
  max-width: 320px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
  z-index: 10 !important;
}

.mz-map-pin-icon {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  height: 40px !important;
  min-width: 40px !important;
  border-radius: 10px !important;
  background: linear-gradient(135deg, #c0392b 0%, #a93226 100%) !important;
  box-shadow: 0 4px 12px rgba(192, 57, 43, 0.4) !important;
}

.mz-map-pin-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
}

.mz-map-pin-text strong {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #fff !important;
  line-height: 1.2 !important;
}

.mz-map-pin-text span {
  font-size: 11px !important;
  color: #8b8fa8 !important;
  line-height: 1.4 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .mz-map-container {
    height: 280px !important;
  }

  .mz-map-header-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .mz-map-pin-card {
    max-width: calc(100% - 40px);
  }
}

/* ================================================================
   HEADER — TEK PARÇA BİRLEŞİK TASARIM
   ================================================================ */

/* Eski nav bar tamamen gizle */
#mz-navbar {
  display: none !important;
}

/* Header yüksekliği ayarla */
#mz-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
}

/* İç container: sol | orta | sağ */
.mz-header-inner {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 0 24px !important;
  padding: 0 !important;
  min-height: 70px !important;
}

/* ORTA: Header nav */
.mz-header-nav {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}

.mz-header-nav-links {
  display: flex !important;
  align-items: center !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  gap: 2px !important;
  height: 100% !important;
}

.mz-header-nav-links>li {
  position: relative !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
}

.mz-header-nav-links>li>a {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
  padding: 8px 13px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--mz-text-body, #374151) !important;
  text-decoration: none !important;
  border-radius: 7px !important;
  white-space: nowrap !important;
  transition: background 0.15s, color 0.15s !important;
  letter-spacing: 0.2px !important;
}

.mz-header-nav-links>li>a:hover,
.mz-header-nav-links>li.active>a {
  background: rgba(192, 57, 43, 0.09) !important;
  color: #c0392b !important;
}

/* Active underline */
.mz-header-nav-links>li.active>a::after {
  content: '' !important;
  position: absolute !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  width: 24px !important;
  height: 2px !important;
  background: #c0392b !important;
  border-radius: 2px !important;
}

/* Drop arrow */
.mz-header-nav-links .drop-arrow {
  opacity: 0.5 !important;
  transition: transform 0.2s !important;
  flex-shrink: 0 !important;
}

.mz-header-nav-links>li:hover .drop-arrow {
  transform: rotate(180deg) !important;
  opacity: 1 !important;
}

/* Dropdown */
.mz-header-dropdown {
  position: absolute !important;
  top: calc(100% + 4px) !important;
  left: 0 !important;
  min-width: 200px !important;
  background: var(--mz-surface, #fff) !important;
  border: 1px solid rgba(0, 0, 0, 0.08) !important;
  border-radius: 10px !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12) !important;
  list-style: none !important;
  margin: 0 !important;
  padding: 6px !important;
  opacity: 0 !important;
  visibility: hidden !important;
  transform: translateY(-6px) !important;
  transition: opacity 0.18s, transform 0.18s, visibility 0.18s !important;
  z-index: 999 !important;
}

.mz-header-nav-links>li:hover .mz-header-dropdown {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) !important;
}

.mz-header-dropdown li a {
  display: block !important;
  padding: 9px 14px !important;
  font-size: 13px !important;
  color: var(--mz-text-body, #374151) !important;
  text-decoration: none !important;
  border-radius: 6px !important;
  transition: background 0.12s, color 0.12s !important;
  white-space: nowrap !important;
}

.mz-header-dropdown li a:hover {
  background: rgba(192, 57, 43, 0.08) !important;
  color: #c0392b !important;
}

/* Dark mod uyumu */
body.dark-mode .mz-header-nav-links>li>a {
  color: rgba(255, 255, 255, 0.85) !important;
}

body.dark-mode .mz-header-nav-links>li>a:hover,
body.dark-mode .mz-header-nav-links>li.active>a {
  background: rgba(192, 57, 43, 0.15) !important;
  color: #e74c3c !important;
}

body.dark-mode .mz-header-dropdown {
  background: #1a1d2e !important;
  border-color: rgba(255, 255, 255, 0.08) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4) !important;
}

body.dark-mode .mz-header-dropdown li a {
  color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-mode .mz-header-dropdown li a:hover {
  background: rgba(192, 57, 43, 0.15) !important;
  color: #e74c3c !important;
}

/* ---- Header brand (logo) kompakt hale getir ---- */
.mz-header-brand {
  flex-shrink: 0 !important;
}

/* ---- Tools sağa yasla ---- */
.mz-header-tools {
  flex-shrink: 0 !important;
}

/* Mobil: nav gizle, hamburger göster */
@media (max-width: 1023px) {
  .mz-header-inner {
    grid-template-columns: auto 1fr auto !important;
  }

  .mz-header-nav {
    display: none !important;
  }
}

/* ================================================================
   HEADER — LAYOUT DÜZELTME (v2)
   Tek satır: [LOGO+METİN] | [MENÜ] | [SOSYAL+ARAÇLAR]
   ================================================================ */

/* Header'ın kendi yüksekliği tek kümede */
#mz-header {
  height: auto !important;
  min-height: 0 !important;
}

/* İç kapsayıcı: TEK SATIR flex */
#mz-header .mz-header-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  padding: 10px 0 !important;
  grid-template-columns: none !important;
}

/* Sol: brand — genişliğini sabitle */
#mz-header .mz-header-brand {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
}

/* Orta: nav — flex 1 ile büyüsün, menü ortala */
#mz-header .mz-header-nav {
  flex: 1 1 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

/* Sağ: tools — flex son kol */
#mz-header .mz-header-tools {
  flex: 0 0 auto !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 6px !important;
}

/* tools içindeki separator gizle zorunlu değilse */
#mz-header .mz-header-tools .mz-header-social {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}

/* Sosyal ikonları header tools içinde küçült */
#mz-header .mz-header-social .mz-social-icon {
  width: 30px !important;
  height: 30px !important;
}

/* Dil seçici compact */
#mz-header .mz-header-langs {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}

/* Menü nav-links — yükseklik tam */
.mz-header-nav-links {
  height: auto !important;
}

.mz-header-nav-links>li {
  height: auto !important;
}

/* Aktif item alt çizgi — sticky yerine margin-bottom yöntemi */
.mz-header-nav-links>li.active>a::after {
  bottom: -6px !important;
}

/* Header brand logo küçük tutulacak (tek satır için) */
.mz-header-logo-img {
  width: 52px !important;
  height: 52px !important;
}

/* Site adı biraz küçüt */
.mz-header-site-name {
  font-size: 15px !important;
}

/* ================================================================
   HEADER — LOGO BÜYÜK + MENÜ BOYUT + RESPONSIVE
   ================================================================ */

/* Logo büyüt */
.mz-header-logo-img {
  width: 68px !important;
  height: 68px !important;
  border-radius: 10px !important;
}

/* Site adı büyüt */
.mz-header-site-name {
  font-size: 18px !important;
  letter-spacing: 1px !important;
}

/* Header yüksekliği otomatik */
#mz-header .mz-header-inner {
  padding: 8px 0 !important;
  min-height: 80px !important;
}

/* Menü: font büyüt, padding dengele */
.mz-header-nav-links>li>a {
  font-size: 14px !important;
  padding: 10px 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
}

/* Menü: sıkışınca da sığsın (yeni öğe eklenince flex-wrap) */
.mz-header-nav-links {
  flex-wrap: wrap !important;
  gap: 1px !important;
}

/* ================================================================
   RESPONSIVE — HAMBURGER MENÜ (< 1100px)
   ================================================================ */

@media (max-width: 1100px) {
  #mz-header .mz-header-nav {
    display: none !important;
  }

  /* Hamburger görünür */
  .mz-header-hamburger {
    display: flex !important;
  }
}

@media (min-width: 1101px) {
  #mz-header .mz-header-nav {
    display: flex !important;
  }

  .mz-header-hamburger {
    display: none !important;
  }
}

/* Mobil açık menü — nav_top'tan hamburger tıklayınca */
#mzHeaderNav.open {
  display: flex !important;
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 0 !important;
  background: rgba(10, 12, 26, 0.97) !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 2000 !important;
  backdrop-filter: blur(16px) !important;
}

#mzHeaderNav.open .mz-header-nav-links {
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

#mzHeaderNav.open .mz-header-nav-links>li>a {
  font-size: 22px !important;
  padding: 14px 32px !important;
  color: #fff !important;
}

#mzHeaderNav.open .mz-header-nav-links>li>a:hover {
  color: #e74c3c !important;
  background: rgba(192, 57, 43, 0.15) !important;
}

/* Mobil menü kapama butonu */
#mzHeaderNav.open::before {
  content: '✕' !important;
  position: absolute !important;
  top: 24px !important;
  right: 28px !important;
  font-size: 24px !important;
  color: rgba(255, 255, 255, 0.6) !important;
  cursor: pointer !important;
  line-height: 1 !important;
}

/* ================================================================
   SELÇUKLU CAMİ MOTİFİ — YARDAM TRANSPARAN SVG BACKGROUND
   ================================================================ */

/* Pattern container - body'nin arkasına */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.032 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cdefs%3E%3Cpattern id='selcuklu' x='0' y='0' width='100' height='100' patternUnits='userSpaceOnUse'%3E%3C!-- Sekizgen (camii kubbe formu) --%3E%3Cpolygon fill='none' stroke='%23000' stroke-width='0.8' points='50,5 75,18 90,43 90,57 75,82 50,95 25,82 10,57 10,43 25,18'/%3E%3C!-- İç daire (kubbe) --%3E%3Ccircle fill='none' stroke='%23000' stroke-width='0.6' cx='50' cy='50' r='22'/%3E%3C!-- Dört köşe çapraz (geleneksel Selçuklu kafes) --%3E%3Cline stroke='%23000' stroke-width='0.5' x1='10' y1='43' x2='28' y2='28'/%3E%3Cline stroke='%23000' stroke-width='0.5' x1='90' y1='43' x2='72' y2='28'/%3E%3Cline stroke='%23000' stroke-width='0.5' x1='10' y1='57' x2='28' y2='72'/%3E%3Cline stroke='%23000' stroke-width='0.5' x1='90' y1='57' x2='72' y2='72'/%3E%3C!-- Üst ve alt sivri kemer (eyvan) --%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.7' d='M35,5 Q50,-5 65,5'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.7' d='M35,95 Q50,105 65,95'/%3E%3C!-- Sol ve sağ kemer --%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.7' d='M5,35 Q-5,50 5,65'/%3E%3Cpath fill='none' stroke='%23000' stroke-width='0.7' d='M95,35 Q105,50 95,65'/%3E%3C!-- Köşe yıldız noktaları --%3E%3Ccircle fill='%23000' cx='10' cy='10' r='1.5'/%3E%3Ccircle fill='%23000' cx='90' cy='10' r='1.5'/%3E%3Ccircle fill='%23000' cx='10' cy='90' r='1.5'/%3E%3Ccircle fill='%23000' cx='90' cy='90' r='1.5'/%3E%3Ccircle fill='%23000' cx='50' cy='50' r='2'/%3E%3C!-- İç kafes çizgiler --%3E%3Cline stroke='%23000' stroke-width='0.4' x1='28' y1='28' x2='50' y2='28'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='50' y1='28' x2='72' y2='28'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='28' y1='72' x2='50' y2='72'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='50' y1='72' x2='72' y2='72'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='28' y1='28' x2='28' y2='50'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='28' y1='50' x2='28' y2='72'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='72' y1='28' x2='72' y2='50'/%3E%3Cline stroke='%23000' stroke-width='0.4' x1='72' y1='50' x2='72' y2='72'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='200' height='200' fill='url(%23selcuklu)'/%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 200px 200px !important;
}

/* Dark modda desen daha açık */
body.dark-mode::before {
  opacity: 0.05 !important;
  filter: invert(1) !important;
}

/* Sayfa içeriği z-index'i üste al */
#mz-header,
#mz-wrapper,
.mz-map-section,
footer,
.mz-footer-newsletter {
  position: relative !important;
  z-index: 1 !important;
}

/* ================================================================
   HEADER — MENÜ WRAP DÜZELTME + KOMPAKTlaştırma
   ================================================================ */

/* Menü kesinlikle tek satırda kalsın */
.mz-header-nav-links {
  flex-wrap: nowrap !important;
  gap: 0 !important;
}

/* Font ve padding dengele — 7 öğe tek satıra sığsın */
.mz-header-nav-links>li>a {
  font-size: 13.5px !important;
  padding: 8px 11px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Header'ın tüm genişliği kullanması için brand daha az yer alsın */
.mz-header-brand {
  min-width: 0 !important;
  flex-shrink: 0 !important;
}

/* Logo yüksekliğini header ile proportional tut */
.mz-header-logo-img {
  width: 60px !important;
  height: 60px !important;
}

/* Header inner'ı daha sıkı sarmalı */
#mz-header .mz-header-inner {
  gap: 12px !important;
}

/* Tools tarafı da kompakt */
#mz-header .mz-header-tools {
  gap: 4px !important;
}

/* ================================================================
   MOBİL — HAMBURGER DÜZELTMESİ
   ================================================================ */

/* Hamburger hep display:flex, sadece > 1100 gizle */
.mz-header-hamburger {
  display: none !important;
  /* default gizli */
}

@media (max-width: 1100px) {

  /* Mobilde hamburger göster */
  .mz-header-hamburger {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    order: 10 !important;
  }

  /* Mobilde nav gizle (hamburger açınca gösterilecek) */
  #mz-header .mz-header-nav {
    display: none !important;
  }

  /* Tools içinde abone butonu da gizle */
  .mz-header-subscribe-btn {
    display: none !important;
  }

  /* Logo yazısı gizle */
  .mz-header-site-info {
    display: none !important;
  }
}

@media (min-width: 1101px) {
  .mz-header-hamburger {
    display: none !important;
  }

  #mz-header .mz-header-nav {
    display: flex !important;
  }
}

/* ================================================================
   DROPDOWN — TRANSPARAN + KAPANMA SORUNLARI DÜZELTMESİ
   ================================================================ */

/* 1) Dropdown arka planı solid — body::before pattern görünmesin */
.mz-header-dropdown {
  background: #ffffff !important;
  border: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
  position: absolute !important;
  z-index: 9000 !important;
}

body.dark-mode .mz-header-dropdown {
  background: #1e2035 !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
}

/* 2) Kapanma sorunu: li ile dropdown arasındaki boşluğu kapat */
/* Dropdown'u a'ya yapıştır — üst boşluk sıfır */
.mz-header-dropdown {
  top: 100% !important;
  margin-top: 0 !important;
}

/* li hover alanını genişlet — pseudo element köprü */
.mz-header-nav-links>li.has-drop>a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -8px !important;
  left: 0 !important;
  right: 0 !important;
  height: 8px !important;
  background: transparent !important;
}

/* Aktif menü alt çizgisi override — has-drop'la çakışma önle */
.mz-header-nav-links>li.active>a::after {
  height: 2px !important;
  bottom: 0 !important;
  background: #c0392b !important;
  z-index: 1 !important;
}

/* has-drop'un aktif durumunda doğru after */
.mz-header-nav-links>li.has-drop.active>a::after {
  height: 2px !important;
  bottom: 0 !important;
  background: #c0392b !important;
}

/* li hover'ı dropdown'u içerecek şekilde genişlet */
.mz-header-nav-links>li.has-drop {
  padding-bottom: 8px !important;
  margin-bottom: -8px !important;
}

/* Dropdown arka plan — body::before'dan izole et */
.mz-header-dropdown,
.mz-header-dropdown * {
  isolation: isolate !important;
}

/* Genel yapı: dropdown içerik izolasyon */
#mz-header {
  isolation: isolate !important;
}

/* ================================================================
   SELÇUKLU DESEN — INLINE SVG DIV (body::before yerine)
   ================================================================ */

#mz-selcuklu-bg {
  position: fixed !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.06 !important;
  color: #000 !important;
}

body.dark-mode #mz-selcuklu-bg {
  opacity: 0.09 !important;
  color: #fff !important;
}

#mz-selcuklu-bg svg {
  width: 100% !important;
  height: 100% !important;
  display: block !important;
}

/* Tüm içerik üstte kalsın */
#mz-header,
#mz-wrapper,
.mz-map-section,
.mz-footer-newsletter,
footer,
#mz-footer-main {
  position: relative !important;
  z-index: 1 !important;
}

/* ================================================================
   DROPDOWN — HOVER SORUNU KESİN ÇÖZÜM
   CSS gap yerine padding köprü yöntemi
   ================================================================ */

/* Dropdown üstüne transparan padding ekle — gap kapansın */
.mz-header-dropdown {
  margin-top: 0 !important;
  padding-top: 10px !important;
  /* Bu alan hover köprüsü görevi görür */
  top: calc(100% - 10px) !important;
  /* Üst kısmı li altına girecek şekilde */
  background-clip: padding-box !important;
}

/* Dropdown iç içerik alanı */
.mz-header-dropdown>li:first-child {
  margin-top: 0 !important;
}

/* li: overflow visible — dropdown kesilmesin */
.mz-header-nav-links>li {
  overflow: visible !important;
}

/* li padding-bottom ve margin-bottom override temizle */
.mz-header-nav-links>li.has-drop {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* ================================================================
   SELÇUKLU ÇİNİ DESENİ — SADECE BANNER/SLIDER ALANI ÜZERİNDE
   body::before veya fixed overlay YOK — sadece slider section
   ================================================================ */

/* Eski full-page overlay yoktur artık — sadece slider */
#mz-selcuklu-bg {
  display: none !important;
}

/* Slider section üzerinde ::after ile transparan çini deseni */
.mz-slider-section {
  position: relative !important;
}

.mz-slider-section::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 2 !important;
  opacity: 0.10 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpolygon fill='none' stroke='%23fff' stroke-width='0.9' points='30,2 44,10 53,24 53,36 44,50 30,58 16,50 7,36 7,24 16,10'/%3E%3Ccircle fill='none' stroke='%23fff' stroke-width='0.6' cx='30' cy='30' r='12'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='30' y1='2' x2='30' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='30' y1='42' x2='30' y2='58'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='7' y1='30' x2='18' y2='30'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='42' y1='30' x2='53' y2='30'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='16' y1='10' x2='18' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='44' y1='10' x2='42' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='16' y1='50' x2='18' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='44' y1='50' x2='42' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='18' x2='42' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='42' x2='42' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='18' x2='18' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='42' y1='18' x2='42' y2='42'/%3E%3Ccircle fill='%23fff' cx='30' cy='30' r='1.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23p)'/%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 120px 120px !important;
}

/* Slider içeriği (metin, butonlar) desen üzerinde görünsün */
.mz-slider-section>* {
  position: relative !important;
  z-index: 3 !important;
}

/* ================================================================
   DROPDOWN — KESİN SOLID ARKA PLAN (saydamlık YOK)
   ================================================================ */

.mz-header-dropdown {
  background: #ffffff !important;
  background-color: #ffffff !important;
  opacity: 1 !important;
}

body.dark-mode .mz-header-dropdown {
  background: #1e2035 !important;
  background-color: #1e2035 !important;
  opacity: 1 !important;
}

.mz-header-dropdown li a {
  background: transparent !important;
  opacity: 1 !important;
}

/* ================================================================
   SELÇUKLU ÇİNİ DESENİ — SADECE SLIDER / BANNER (#mzFeatured)
   Diğer alanları etkilemez, dropdown'u etkilemez
   ================================================================ */

/* Slider container'ı relative yap */
#mzFeatured,
.mz-featured {
  position: relative !important;
  overflow: hidden !important;
}

/* SVG çini deseni slider'ın üstüne transparan katman olarak */
#mzFeatured::after,
.mz-featured::after {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 3 !important;
  opacity: 0.12 !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cdefs%3E%3Cpattern id='p' x='0' y='0' width='60' height='60' patternUnits='userSpaceOnUse'%3E%3Cpolygon fill='none' stroke='%23fff' stroke-width='0.9' points='30,2 44,10 53,24 53,36 44,50 30,58 16,50 7,36 7,24 16,10'/%3E%3Ccircle fill='none' stroke='%23fff' stroke-width='0.6' cx='30' cy='30' r='12'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='30' y1='2' x2='30' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='30' y1='42' x2='30' y2='58'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='7' y1='30' x2='18' y2='30'/%3E%3Cline stroke='%23fff' stroke-width='0.4' x1='42' y1='30' x2='53' y2='30'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='16' y1='10' x2='18' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='44' y1='10' x2='42' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='16' y1='50' x2='18' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.3' x1='44' y1='50' x2='42' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='18' x2='42' y2='18'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='42' x2='42' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='18' y1='18' x2='18' y2='42'/%3E%3Cline stroke='%23fff' stroke-width='0.25' x1='42' y1='18' x2='42' y2='42'/%3E%3Ccircle fill='%23fff' cx='30' cy='30' r='1.2'/%3E%3C/pattern%3E%3C/defs%3E%3Crect width='120' height='120' fill='url(%23p)'/%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 120px 120px !important;
}

/* Slider içeriği (yazı, butonlar, panel) desen ÜSTÜNDE kalsın */
#mzFeatured .mzs-track-wrap,
#mzFeatured .mzs-panel,
#mzFeatured .mzs-controls,
#mzFeatured .mzs-caption,
.mz-featured .mzs-track-wrap,
.mz-featured .mzs-panel,
.mz-featured .mzs-controls,
.mz-featured .mzs-caption {
  position: relative !important;
  z-index: 5 !important;
}

/* ================================================================
   DROPDOWN + SLIDER ÇAKIŞMASI — KESİN DÜZELTME
   ================================================================ */

/* 1) Slider stacking context kaldır: overflow:hidden iptal et */
#mzFeatured,
.mz-featured {
  overflow: visible !important;
}

/* 2) Slider ::after z-index'ini düşür, pointer-events none kalsın */
#mzFeatured::after,
.mz-featured::after {
  z-index: 1 !important;
  pointer-events: none !important;
}

/* 3) Header isolation kaldır — stacking context çakışmasını önle */
#mz-header {
  isolation: auto !important;
}

/* 4) Dropdown z-index en üste çıkar — her şeyin üstünde */
.mz-header-dropdown {
  z-index: 99999 !important;
  position: absolute !important;
}

/* 5) Header nav ve li overflow visible — dropdown kesilmesin */
.mz-header-nav,
.mz-header-nav-links,
.mz-header-nav-links>li {
  overflow: visible !important;
}

/* 6) Header'ın z-index'ini slider'ın üstüne çıkar */
#mz-header {
  z-index: 10000 !important;
}

/* ================================================================
   SLIDER BAŞLIK KONUMU DÜZELTME
   position:relative + z-index:5 eklediğimiz slider children reset
   ================================================================ */

/* Slider içerik elemanlarında eklediğimiz z-index/position override'larını kaldır */
#mzFeatured .mzs-track-wrap,
#mzFeatured .mzs-panel,
#mzFeatured .mzs-controls,
#mzFeatured .mzs-caption,
.mz-featured .mzs-track-wrap,
.mz-featured .mzs-panel,
.mz-featured .mzs-controls,
.mz-featured .mzs-caption {
  position: static !important;
  /* önceki override'ı sil — orijinal konumu geri al */
  z-index: auto !important;
}

/* Slider track: kendi z-index'ini koru */
#mzFeatured .mzs-track-wrap {
  position: relative !important;
  z-index: auto !important;
}

/* Slider panel sağ taraf */
#mzFeatured .mzs-panel {
  position: relative !important;
  z-index: auto !important;
}

/* Slider ::after desen: z-index düşük, pointer-events none — içeriği ASLA etkilemesin */
#mzFeatured::after,
.mz-featured::after {
  z-index: 1 !important;
  pointer-events: none !important;
  /* overflow:visible olunca inset: 0 clip etmez */
}

/* ================================================================
   SLIDER CAPTION — POSITION OVERRIDE DÜZELTMESİ
   Önceki "position:static !important" yanlıştı, caption'ı üste taşıdı
   ================================================================ */

/* Caption orijinal konumuna geri dön: absolute, bottom:0 */
#mzFeatured .mzs-caption,
.mz-featured .mzs-caption,
.mzs-caption {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  z-index: 2 !important;
}

/* Slider track: position korusun */
#mzFeatured .mzs-track-wrap,
.mz-featured .mzs-track-wrap {
  position: relative !important;
  z-index: auto !important;
}

/* Panel de orijinal konumunu korusun */
#mzFeatured .mzs-panel,
.mz-featured .mzs-panel {
  position: relative !important;
  z-index: auto !important;
}

/* ================================================================
   SELÇUKLU 8 KÖŞELİ YILDIZ DESENİ (SEKIZGEN YILDIZ / ÇİNİ)
   Sadece: header üst band + sayfa beyaz arka plan
   Slider'dan KALDIRILDI
   ================================================================ */

/* Slider'dan kaldır */
#mzFeatured::after,
.mz-featured::after {
  display: none !important;
}

/* Sayfa genel arkaplanı — body::before FIXED */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.055 !important;
  color: #5a1a1a !important;
  background-image: url("%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='220'%20height='220'%3E%3Cdefs%3E%3Cpattern%20id='sp'%20x='0'%20y='0'%20width='220'%20height='220'%20patternUnits='userSpaceOnUse'%3E%3C!--%20Merkez%20y%C4%B1ld%C4%B1z%20(tam)%20--%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='1.4'%20points='110,25%20124.7,75.3%20170.7,39.3%20145.3,90.7%20195,110%20145.3,129.3%20170.7,180.7%20124.7,144.7%20110,195%2095.3,144.7%2049.3,180.7%2074.7,129.3%2025,110%2074.7,90.7%2049.3,39.3%2095.3,75.3'/%3E%3C!--%20%C4%B0%C3%A7%20sekizgen%20--%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='0.8'%20points='110,52%20143,77%20168,110%20143,143%20110,168%2077,143%2052,110%2077,77'/%3E%3C!--%20Ba%C4%9Flant%C4%B1%20%C3%A7izgileri%20--%3E%3Cline%20x1=%22110%22%20y1=%2225%22%20x2=%22110%22%20y2=%2252%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%22170.7%22%20y1=%2239.3%22%20x2=%22143%22%20y2=%2277%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%22195%22%20y1=%22110%22%20x2=%22168%22%20y2=%22110%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%22170.7%22%20y1=%22180.7%22%20x2=%22143%22%20y2=%22143%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%22110%22%20y1=%22195%22%20x2=%22110%22%20y2=%22168%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%2249.3%22%20y1=%22180.7%22%20x2=%2277%22%20y2=%22143%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%2225%22%20y1=%22110%22%20x2=%2252%22%20y2=%22110%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3Cline%20x1=%2249.3%22%20y1=%2239.3%22%20x2=%2277%22%20y2=%2277%22%20stroke=%22currentColor%22%20stroke-width=%220.6%22/%3E%3C!--%20K%C3%B6%C5%9Fe%20y%C4%B1ld%C4%B1z%20%C3%A7eyrekler%20--%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='1.4'%20points='0.0,-85.0%2014.7,-34.7%2060.7,-70.7%2035.3,-19.3%2085.0,0.0%2035.3,19.3%2060.7,70.7%2014.7,34.7%200.0,85.0%20-14.7,34.7%20-60.7,70.7%20-35.3,19.3%20-85.0,0.0%20-35.3,-19.3%20-60.7,-70.7%20-14.7,-34.7'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='1.4'%20points='220.0,-85.0%20234.7,-34.7%20280.7,-70.7%20255.3,-19.3%20305.0,0.0%20255.3,19.3%20280.7,70.7%20234.7,34.7%20220.0,85.0%20205.3,34.7%20159.3,70.7%20184.7,19.3%20135.0,0.0%20184.7,-19.3%20159.3,-70.7%20205.3,-34.7'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='1.4'%20points='0.0,135.0%2014.7,185.3%2060.7,149.3%2035.3,200.7%2085.0,220.0%2035.3,239.3%2060.7,290.7%2014.7,254.7%200.0,305.0%20-14.7,254.7%20-60.7,290.7%20-35.3,239.3%20-85.0,220.0%20-35.3,200.7%20-60.7,149.3%20-14.7,185.3'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='1.4'%20points='220.0,135.0%20234.7,185.3%20280.7,149.3%20255.3,200.7%20305.0,220.0%20255.3,239.3%20280.7,290.7%20234.7,254.7%20220.0,305.0%20205.3,254.7%20159.3,290.7%20184.7,239.3%20135.0,220.0%20184.7,200.7%20159.3,149.3%20205.3,185.3'/%3E%3C!--%20K%C3%B6%C5%9Fe%20i%C3%A7%20sekizgenler%20--%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='0.7'%20points='0.0,-58.0%2033.0,-33.0%2058.0,0.0%2033.0,33.0%200.0,58.0%20-33.0,33.0%20-58.0,0.0%20-33.0,-33.0'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='0.7'%20points='220.0,-58.0%20253.0,-33.0%20278.0,0.0%20253.0,33.0%20220.0,58.0%20187.0,33.0%20162.0,0.0%20187.0,-33.0'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='0.7'%20points='0.0,162.0%2033.0,187.0%2058.0,220.0%2033.0,253.0%200.0,278.0%20-33.0,253.0%20-58.0,220.0%20-33.0,187.0'/%3E%3Cpolygon%20fill='none'%20stroke='currentColor'%20stroke-width='0.7'%20points='220.0,162.0%20253.0,187.0%20278.0,220.0%20253.0,253.0%20220.0,278.0%20187.0,253.0%20162.0,220.0%20187.0,187.0'/%3E%3C/pattern%3E%3C/defs%3E%3Crect%20width='220'%20height='220'%20fill='url(%23sp)'/%3E%3C/svg%3E") !important;
  background-repeat: repeat !important;
  background-size: 220px 220px !important;
}

/* Dark modda biraz daha parlak, açık renk */
body.dark-mode::before {
  opacity: 0.07 !important;
  color: #ffffff !important;
}

/* Tüm içerik body::before üzerinde kalsın */
#mz-header,
#mz-wrapper,
footer,
.mz-footer-newsletter,
#mz-footer-main,
.mz-map-section {
  position: relative !important;
  z-index: 1 !important;
}

/* Dropdown kesinlikle en üstte */
.mz-header-dropdown {
  position: absolute !important;
  z-index: 99999 !important;
  background: #ffffff !important;
  background-color: #ffffff !important;
}

body.dark-mode .mz-header-dropdown {
  background: #1e2035 !important;
  background-color: #1e2035 !important;
}

/* ================================================================
   HEADER KOMPAKT — LOGO BÜYÜK — MENÜ BOLD/UPPERCASE
   ================================================================ */

/* Header inner padding sıkıştır */
#mz-header .mz-header-inner {
  padding: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  gap: 10px !important;
  align-items: center !important;
}

/* Logo büyük */
.mz-header-logo-img {
  width: 80px !important;
  height: 80px !important;
  border-radius: 8px !important;
}

.mz-header-logo-link {
  padding: 4px !important;
}

/* Site adı */
.mz-header-site-name {
  font-size: 18px !important;
  font-weight: 800 !important;
  letter-spacing: 0.8px !important;
}

/* Tarih küçük */
.mz-header-date {
  font-size: 11px !important;
}

/* Menü uppercase, kalın, canlı */
.mz-header-nav-links>li>a {
  font-size: 13px !important;
  font-weight: 800 !important;
  padding: 6px 11px !important;
  letter-spacing: 0.5px !important;
  text-transform: uppercase !important;
}

/* Dropdown linkleri uppercase değil */
.mz-header-dropdown a {
  text-transform: none !important;
  font-weight: 600 !important;
  font-size: 13px !important;
}

/* ================================================================
   HEADER TOOLS — 2 SATIR LAYOUT
   Üst: Sosyal + Dil | Alt: Dark/Arama/Ayarlar/Abone
   ================================================================ */

.mz-header-tools {
  flex-direction: column !important;
  align-items: flex-end !important;
  gap: 4px !important;
  justify-content: center !important;
}

.mz-tools-row-top {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

.mz-tools-row-bottom {
  display: flex !important;
  align-items: center !important;
  gap: 4px !important;
}

/* Sosyal ikonları biraz küçült — satır sığsın */
.mz-tools-row-top .mz-social-icon {
  width: 26px !important;
  height: 26px !important;
}

/* Dil seçici küçük */
.mz-header-langs a {
  font-size: 11px !important;
  padding: 2px 5px !important;
}

/* ================================================================
   SELÇUKLU YILDIZI — SVG DOSYA URL (body::before override)
   ================================================================ */

body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.055 !important;
  background-image: url('../img/selcuklu-star.svg') !important;
  background-repeat: repeat !important;
  background-size: 240px 240px !important;
  background-color: transparent !important;
  filter: none !important;
  /* Koyu kırmızı renk için */
  --pattern-color: #6B1A1A;
}

/* SVG içinde currentColor'ı kırmızıdan ver */
@supports (color: color-mix(in srgb, red, blue)) {
  body::before {
    filter: hue-rotate(0deg) !important;
  }
}

/* Dark modda */
body.dark-mode::before {
  opacity: 0.07 !important;
  filter: invert(1) !important;
}

/* ================================================================
   SELÇUKLU YILDIZ DESENİ — GENİŞ, SONSUZ DÖNGÜ
   body + header üzerine uygulanır
   ================================================================ */

/* Tüm sayfa arka planı */
body::before {
  content: '' !important;
  position: fixed !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.048 !important;
  background-image: url('../img/selcuklu-star.svg') !important;
  background-repeat: repeat !important;
  background-size: 300px 300px !important;
}

body.dark-mode::before {
  opacity: 0.07 !important;
  filter: invert(1) !important;
}

/* HEADER ALANI — daha belirgin desen (aynı SVG ama biraz daha koyu) */
#mz-header::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 0 !important;
  opacity: 0.08 !important;
  background-image: url('../img/selcuklu-star.svg') !important;
  background-repeat: repeat !important;
  background-size: 240px 240px !important;
}

/* Header position relative olsun, içerikler üstte */
#mz-header {
  position: relative !important;
}

#mz-header .mz-header-inner {
  position: relative !important;
  z-index: 1 !important;
}

/* BANNER (slider) arka planı — sol alan ağırlıklı */
#mzFeatured::before {
  content: '' !important;
  position: absolute !important;
  inset: 0 !important;
  pointer-events: none !important;
  z-index: 1 !important;
  opacity: 0.12 !important;
  background-image: url('../img/selcuklu-star.svg') !important;
  background-repeat: repeat !important;
  background-size: 180px 180px !important;
}

#mzFeatured {
  position: relative !important;
  overflow: hidden !important;
}

/* Slider içerik üstte */
#mzFeatured .mzs-track-wrap,
#mzFeatured .mzs-panel,
#mzFeatured .mzs-controls,
#mzFeatured .mzs-caption {
  position: relative !important;
  z-index: 2 !important;
}

/* ================================================================
   SOSYAL MEDYA İKONLARI — İNCE ÇERÇEVE
   ================================================================ */

.mz-tools-row-top .mz-social-icon {
  width: 30px !important;
  height: 30px !important;
  border: 1px solid var(--mz-action-border) !important;
  border-radius: 6px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--mz-action-bg) !important;
  color: var(--mz-action-text) !important;
  transition: border-color 0.18s, background-color 0.18s, color 0.18s !important;
}

.mz-tools-row-top .mz-social-icon:hover {
  border-color: var(--mz-action-hover-border) !important;
  background-color: var(--mz-action-hover-bg) !important;
  color: var(--mz-action-hover-text) !important;
}

body.dark-mode .mz-tools-row-top .mz-social-icon {
  border-color: var(--mz-action-border) !important;
}

/* ================================================================
   BUTTON HİZALAMA — ÜST VE ALT SATIR UYUMLU
   ================================================================ */

.mz-tools-row-top,
.mz-tools-row-bottom {
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  justify-content: flex-end !important;
  min-height: 34px !important;
}

/* Header icon butonları eşit boyut */
.mz-header-icon-btn {
  width: 32px !important;
  height: 32px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid var(--mz-action-border) !important;
  border-radius: 6px !important;
  flex-shrink: 0 !important;
  background: var(--mz-action-bg) !important;
  color: var(--mz-action-text) !important;
  transition: border-color 0.18s, background-color 0.18s, color 0.18s !important;
}

body.dark-mode .mz-header-icon-btn {
  border-color: var(--mz-action-border) !important;
}

.mz-header-icon-btn:hover {
  border-color: var(--mz-action-hover-border) !important;
  background-color: var(--mz-action-hover-bg) !important;
  color: var(--mz-action-hover-text) !important;
}

.mz-header-icon-btn:focus-visible {
  outline: none !important;
  border-color: var(--mz-action-hover-border) !important;
}

/* Ayarlar butonu */
.mz-header-user-btn,
.mz-header-login-btn,
.mz-header-logout-btn {
  height: 32px !important;
  border: 1px solid var(--mz-action-border) !important;
  border-radius: 6px !important;
  padding: 0 10px !important;
  display: flex !important;
  align-items: center !important;
  gap: 5px !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  background: var(--mz-action-bg) !important;
  color: var(--mz-action-text) !important;
  transition: border-color 0.18s, background-color 0.18s, color 0.18s !important;
}

body.dark-mode .mz-header-user-btn,
body.dark-mode .mz-header-login-btn,
body.dark-mode .mz-header-logout-btn {
  border-color: var(--mz-action-border) !important;
}

.mz-header-user-btn:hover,
.mz-header-login-btn:hover,
.mz-header-logout-btn:hover {
  border-color: var(--mz-action-hover-border) !important;
  background-color: var(--mz-action-hover-bg) !important;
  color: var(--mz-action-hover-text) !important;
}

.mz-header-user-btn:focus-visible,
.mz-header-login-btn:focus-visible,
.mz-header-logout-btn:focus-visible {
  outline: none !important;
  border-color: var(--mz-action-hover-border) !important;
}

/* Abone ol butonu yüksekliği eşit */
.mz-header-subscribe-btn {
  height: 32px !important;
  border-radius: 6px !important;
  border: 1px solid var(--mz-primary) !important;
  background: transparent !important;
  color: var(--mz-primary) !important;
  box-shadow: none !important;
  transition: border-color 0.18s, background-color 0.18s, color 0.18s !important;
}

.mz-header-subscribe-btn:hover {
  border-color: var(--mz-action-hover-border) !important;
  background-color: var(--mz-primary) !important;
  color: #fff !important;
}

.mz-header-subscribe-btn:focus-visible {
  outline: none !important;
  border-color: var(--mz-action-hover-border) !important;
}

/* Dil seçici de hizalı */
.mz-header-langs {
  display: flex !important;
  align-items: center !important;
  gap: 2px !important;
}

.mz-header-langs a {
  height: 30px !important;
  display: flex !important;
  align-items: center !important;
  padding: 0 10px !important;
  font-size: 11px !important;
  border-radius: 6px !important;
  border: 1px solid var(--mz-action-border) !important;
  background: var(--mz-action-bg) !important;
  color: var(--mz-action-text) !important;
  transition: border-color 0.18s, background-color 0.18s, color 0.18s !important;
}

.mz-header-langs a:hover,
.mz-header-langs a.active {
  border-color: var(--mz-action-hover-border) !important;
  background-color: var(--mz-action-hover-bg) !important;
  color: var(--mz-action-hover-text) !important;
}

/* ================================================================
   DROPDOWN KESİN FİX — header slider'ın daima üstünde
   ================================================================ */

/* Header'a çok yüksek z-index ver — slider'ın üstünde kalır */
#mz-header {
  z-index: 9999 !important;
}

/* Dropdown header stacking context içinde görünsün */
.mz-header-dropdown {
  z-index: 99999 !important;
}

/* Slider overflow:hidden kaldır — dropdown clipping yapar */
#mzFeatured,
.mz-featured {
  overflow: visible !important;
}

/* Slider ::before desen (banner motifi) — overflow gizlenince kaybolur, clip koy sadece pattern'e */
#mzFeatured::before,
.mz-featured::before {
  overflow: hidden !important;
  border-radius: 0 !important;
}

/* ================================================================
   SLIDER CAPTION — KESİN DÜZELTME (EN GEÇ KURAL / KAZANIR)
   Tüm önceki position:relative/static overridelarını ezer
   ================================================================ */
#mzFeatured .mzs-caption,
.mz-featured .mzs-caption,
.mzs-slide .mzs-caption,
.mzs-slide.active .mzs-caption,
.mzs-caption {
  position: absolute !important;
  bottom: 0 !important;
  top: auto !important;
  left: 0 !important;
  right: 0 !important;
}

/* ================================================================
   LOGO — TAM BOY, SIFIR PADDING, HEADER'A YASLANSUN
   ================================================================ */
.mz-header-logo-link {
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  height: 100% !important;
}

.mz-header-logo-img {
  width: auto !important;
  height: 88px !important;
  max-height: 88px !important;
  border-radius: 0 8px 8px 0 !important;
  display: block !important;
  object-fit: contain !important;
}

/* Desen boyutunu 400px tile ile güncelle */
body::before {
  background-size: 400px 400px !important;
}

#mz-header::before {
  background-size: 320px 320px !important;
}

#mzFeatured::before,
.mz-featured::before {
  background-size: 260px 260px !important;
}

/* ================================================================
   DESEN BOYUTU — 300px tile
   ================================================================ */
body::before {
  background-size: 300px 300px !important;
  opacity: 0.04 !important;
}

#mz-header::before {
  background-size: 255px 255px !important;
  opacity: 0.06 !important;
}

#mzFeatured::before,
.mz-featured::before {
  background-size: 210px 210px !important;
  opacity: 0.09 !important;
}

/* ================================================================
   MENÜ BUTONLARI — İNCE KIRMIZI STROKE → HOVER SİYAH
   ================================================================ */

/* Ana menü linkleri — ince kırmızı border */
.mz-header-nav-links>li>a {
  border: 1.2px solid rgba(180, 30, 30, 0.35) !important;
  border-radius: 5px !important;
  transition: border-color 0.2s, color 0.2s, background-color 0.2s !important;
}

/* Hover: siyah border */
.mz-header-nav-links>li>a:hover,
.mz-header-nav-links>li:hover>a {
  border-color: #1a1a1a !important;
  background-color: rgba(0, 0, 0, 0.04) !important;
}

/* Aktif/seçili menü öğesi */
.mz-header-nav-links>li.active>a,
.mz-header-nav-links>li>a.active {
  border-color: var(--primary-color, #c0392b) !important;
}

/* ================================================================
   DROPDOWN HOVER FRAME — aynı kırmızı → siyah
   ================================================================ */
.mz-header-dropdown li a {
  border: 1px solid rgba(180, 30, 30, 0.2) !important;
  border-radius: 4px !important;
  margin: 2px 0 !important;
  display: block !important;
  transition: border-color 0.15s, background-color 0.15s !important;
}

.mz-header-dropdown li a:hover {
  border-color: #1a1a1a !important;
  background-color: rgba(0, 0, 0, 0.05) !important;
}

/* Dark mod */
body.dark-mode .mz-header-nav-links>li>a {
  border-color: rgba(200, 60, 60, 0.3) !important;
}

body.dark-mode .mz-header-nav-links>li>a:hover,
body.dark-mode .mz-header-nav-links>li:hover>a {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

body.dark-mode .mz-header-dropdown li a {
  border-color: rgba(200, 60, 60, 0.2) !important;
}

body.dark-mode .mz-header-dropdown li a:hover {
  border-color: rgba(255, 255, 255, 0.8) !important;
}

/* ================================================================
   MENÜ KIRMIZI BORDER — GERİ AL
   ================================================================ */
.mz-header-nav-links>li>a {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ================================================================
   MENÜ FONT — YÜKSEK/UZUN KONDENSEd
   Bebas Neue: tam kondense, uzun harfler, çok premium
   ================================================================ */

/* Google Font import */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@600;700;800&display=swap');

/* Menü ana linkleri — Bebas Neue: tam uzun dar harfler */
.mz-header-nav-links>li>a {
  font-family: 'Barlow Condensed', 'Bebas Neue', Arial Narrow, sans-serif !important;
  font-size: 15.5px !important;
  font-weight: 700 !important;
  letter-spacing: 1.2px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
}

/* Dropdown linkleri — Barlow Condensed biraz daha ağırlıklı */
.mz-header-dropdown a {
  font-family: 'Barlow Condensed', sans-serif !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
}

/* ================================================================
   DROPDOWN ALT MENÜ — KIRMIZI ÇİZGİ GERİ AL
   ================================================================ */
.mz-header-dropdown li a,
.mz-header-dropdown a {
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
}

.mz-header-dropdown li a:hover {
  border: none !important;
}

/* ================================================================
   MENÜ FONT — BEBAS NEUE + DAHA BÜYÜK
   En yüksek/uzun görünümlü font, 17.5px
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Russo+One&display=swap');

.mz-header-nav-links>li>a {
  font-family: 'Bebas Neue', 'Barlow Condensed', 'Arial Narrow', sans-serif !important;
  font-size: 17px !important;
  font-weight: 400 !important;
  /* Bebas Neue tek weight */
  letter-spacing: 2px !important;
  text-transform: uppercase !important;
  line-height: 1 !important;
  padding: 8px 13px !important;
}

/* ==============================================================


/* ==============================================================
   MOBİL DÜZELTMELER — v2 (temiz, layout bozmayan)
   ============================================================== */

/* --- Mobil Menü Açılımı --- */
@media (max-width: 1023px) {
  .mz-header-hamburger {
    display: flex !important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
  }

  .mz-header-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--mz-text);
    border-radius: 2px;
    transition: all 0.2s;
  }

  /* Menü kapalıyken gizle */
  #mzHeaderNav {
    display: none !important;
  }

  /* Menü açıkken full overlay */
  #mzHeaderNav.open {
    display: flex !important;
    flex-direction: column;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    animation: mzOverlayIn 0.2s ease;
  }

  #mzHeaderNav.open .mz-header-nav-links {
    display: flex !important;
    flex-direction: column !important;
    background: #fff;
    width: 80%;
    max-width: 320px;
    height: 100%;
    padding: 70px 0 24px;
    overflow-y: auto;
    box-shadow: 4px 0 24px rgba(0,0,0,0.2);
    animation: mzPanelSlide 0.25s ease;
  }

  .dark-mode #mzHeaderNav.open .mz-header-nav-links {
    background: #1a1a2e !important;
  }

  #mzHeaderNav.open .mz-header-nav-links li {
    width: 100%;
    border-bottom: 1px solid rgba(0,0,0,0.07);
  }

  .dark-mode #mzHeaderNav.open .mz-header-nav-links li {
    border-bottom-color: rgba(255,255,255,0.07) !important;
  }

  #mzHeaderNav.open .mz-header-nav-links li a {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    letter-spacing: 1.5px !important;
    color: #1a1a2e !important;
    text-transform: uppercase !important;
    border: none !important;
    background: none !important;
  }

  .dark-mode #mzHeaderNav.open .mz-header-nav-links li a {
    color: #fff !important;
  }

  #mzHeaderNav.open .mz-header-nav-links li a:hover {
    background: rgba(192,57,43,0.06) !important;
    color: var(--mz-primary) !important;
  }

  /* Kapatma X göstergesi (sağ üst) */
  #mzHeaderNav.open::after {
    content: '';
    position: fixed;
    top: 16px;
    left: calc(80% + 8px);
    width: 32px;
    height: 32px;
    background: white url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23333' stroke-width='2.5'%3E%3Cline x1='18' y1='6' x2='6' y2='18'/%3E%3Cline x1='6' y1='6' x2='18' y2='18'/%3E%3C/svg%3E") center/16px no-repeat;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    pointer-events: none;
  }

  body.nav-mobile-open {
    overflow: hidden;
  }

  @keyframes mzOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
  }

  @keyframes mzPanelSlide {
    from { transform: translateX(-100%); }
    to   { transform: translateX(0); }
  }
}

/* --- Slider Prev/Next — Slider resmin üzerine overlay butonlar --- */
@media (max-width: 900px) {
  /* Slider butonlarini resim alaninin uzerine tasi */
  .mzs-panel-header {
    display: none !important;
  }

  /* Slider track wrap'i relative yap ki butonlar absolute oturabilsin */
  .mzs-track-wrap {
    position: relative !important;
  }

  /* Prev/Next butonlari için yeni container - track-wrap icinde gosterilecek */
  .mzs-track-wrap::after,
  .mzs-track-wrap::before {
    display: none;
  }

  /* mzs-ctrl-btn'lara dokunma — bunlar panel-header icinde oldugu icin zaten gizlendi */
  /* Bunun yerine #mzsPrev ve #mzsNext'i dogrudan konumlandir */
  #mzsPrev,
  #mzsNext {
    position: absolute !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    z-index: 10 !important;
    width: 38px !important;
    height: 38px !important;
    background: rgba(0,0,0,0.5) !important;
    border: none !important;
    border-radius: 50% !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    backdrop-filter: blur(4px) !important;
  }

  #mzsPrev {
    left: 12px !important;
  }

  #mzsNext {
    right: 12px !important;
  }

  #mzsPrev:hover,
  #mzsNext:hover {
    background: rgba(192,57,43,0.8) !important;
  }
}

/* --- Mobil Slider Overlay Butonları (mzs-mob-prev/next) --- */
.mzs-mob-prev,
.mzs-mob-next {
  display: none;
}

@media (max-width: 900px) {
  .mzs-mob-prev,
  .mzs-mob-next {
    display: flex !important;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 40px;
    height: 40px;
    background: rgba(0,0,0,0.5);
    border: none;
    border-radius: 50%;
    color: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: background 0.18s;
  }

  .mzs-mob-prev {
    left: 12px;
  }

  .mzs-mob-next {
    right: 12px;
  }

  .mzs-mob-prev:hover,
  .mzs-mob-next:hover {
    background: rgba(192,57,43,0.85);
  }
}

/* ==============================================================
   SLIDER MOBİL HEIGHT FIX — mzs-track-wrap 0px yükseklik sorunu
   ============================================================== */
@media (max-width: 900px) {
  #mzFeatured {
    flex-direction: column !important;
    height: auto !important;
  }

  #mzFeatured .mzs-track-wrap,
  .mz-featured .mzs-track-wrap {
    width: 100% !important;
    height: 260px !important;
    min-height: 260px !important;
    flex-shrink: 0 !important;
    position: relative !important;
  }

  #mzFeatured .mzs-panel,
  .mz-featured .mzs-panel {
    width: 100% !important;
    max-height: 240px !important;
    height: auto !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  /* Menü X buton pseudo çakışması düzelt — ::after kaldır */
  #mzHeaderNav.open::after {
    display: none !important;
  }
}

/* ==============================================================
   SLIDER TRACK HEIGHT — mzs-track mobilde 100% almıyor
   ============================================================== */
@media (max-width: 900px) {
  #mzFeatured .mzs-track,
  .mz-featured .mzs-track {
    height: 260px !important;
  }

  #mzFeatured .mzs-slide,
  .mz-featured .mzs-slide {
    height: 260px !important;
    min-height: 260px !important;
  }

  #mzFeatured .mzs-slide .mzs-img-link,
  #mzFeatured .mzs-slide .img-container,
  #mzFeatured .mzs-slide .img-bg {
    height: 260px !important;
  }

  #mzFeatured .mzs-slide .img-container img,
  #mzFeatured .mzs-slide .img-bg {
    height: 260px !important;
    width: 100% !important;
    object-fit: cover !important;
  }
}

/* Footer: Mobilde Son Haberler gizle */
@media (max-width: 768px) {
  .mzf-col-news {
    display: none !important;
  }
}

/* ---- Header Logout Butonu ---- */
.mz-header-logout-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e74c3c !important;
  background: rgba(231,76,60,0.08);
  border: 1px solid rgba(231,76,60,0.2);
  transition: all 0.2s;
  text-decoration: none;
}
.mz-header-logout-btn:hover {
  background: #e74c3c !important;
  color: #fff !important;
  border-color: #e74c3c;
}
.mz-header-logout-btn svg {
  flex-shrink: 0;
}
.dark-mode .mz-header-logout-btn {
  background: rgba(231,76,60,0.12);
  border-color: rgba(231,76,60,0.3);
}

/* ================================================================
   SETTINGS SAYFASI — PREMIUM TASARIM
   ================================================================ */

/* Sayfa container */
.mzs-settings-page {
  padding: 32px 0 60px;
  min-height: 70vh;
}

/* Header */
.mzs-settings-header {
  display: flex;
  align-items: flex-start;
  margin-bottom: 28px;
}
.mzs-settings-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--mz-text);
  margin: 0 0 6px;
  letter-spacing: -0.3px;
}
.mzs-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--mz-text-muted, #888);
}
.mzs-breadcrumb a { color: inherit; text-decoration: none; }
.mzs-breadcrumb a:hover { color: var(--mz-primary); }
.mzs-breadcrumb span { opacity: 0.5; }

/* Layout */
.mzs-settings-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.mzs-settings-aside {
  width: 260px;
  flex-shrink: 0;
}
.mzs-settings-main {
  flex: 1;
  min-width: 0;
}

/* Sidebar */
.mzs-settings-sidebar {
  background: var(--mz-card, #fff);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--mz-border, #e8ecf2);
}

/* Kullanıcı kart */
.mzs-user-card {
  padding: 24px 20px 20px;
  text-align: center;
  background: linear-gradient(135deg, var(--mz-primary, #c0392b) 0%, #8e1e14 100%);
  color: #fff;
}
.mzs-user-avatar-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}
.mzs-user-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(255,255,255,0.35);
}
.mzs-user-avatar-ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px dashed rgba(255,255,255,0.3);
}
.mzs-user-name {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 2px;
}
.mzs-user-email {
  font-size: 11px;
  opacity: 0.75;
  word-break: break-all;
}

/* Nav */
.mzs-settings-nav {
  padding: 8px 0;
}
.mzs-settings-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--mz-text, #333);
  text-decoration: none;
  transition: all 0.15s;
  border-left: 3px solid transparent;
  position: relative;
}
.mzs-settings-nav-item:hover {
  background: rgba(0,0,0,0.03);
  color: var(--mz-primary);
}
.mzs-settings-nav-item.active {
  background: rgba(192,57,43,0.07);
  color: var(--mz-primary);
  font-weight: 600;
  border-left-color: var(--mz-primary);
}
.mzs-settings-nav-item.danger { color: #e74c3c; }
.mzs-settings-nav-item.danger:hover { background: rgba(231,76,60,0.06); }
.mzs-nav-arrow {
  margin-left: auto;
  opacity: 0.5;
}

/* Logout */
.mzs-settings-logout {
  padding: 12px 20px;
  border-top: 1px solid var(--mz-border, #eee);
}
.mzs-logout-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: #e74c3c;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: background 0.15s;
}
.mzs-logout-link:hover {
  background: rgba(231,76,60,0.08);
  color: #e74c3c;
}

/* Ana kart */
.mzs-settings-card {
  background: var(--mz-card, #fff);
  border-radius: 14px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  border: 1px solid var(--mz-border, #e8ecf2);
  overflow: hidden;
}
.mzs-settings-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px 28px;
  border-bottom: 1px solid var(--mz-border, #eee);
  background: var(--mz-bg, #f8f9fb);
}
.mzs-settings-card-header h2 {
  font-size: 16px;
  font-weight: 700;
  color: var(--mz-text);
  margin: 0;
}
.mzs-settings-card-header svg { color: var(--mz-primary); }

/* Form */
.mzs-form { padding: 28px; }

/* Avatar section */
.mzs-form-avatar-section {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}
.mzs-avatar-preview {
  position: relative;
  flex-shrink: 0;
}
.mzs-avatar-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--mz-border, #eee);
  display: block;
}
.mzs-avatar-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.2s;
  cursor: pointer;
  color: #fff;
  font-size: 10px;
  gap: 4px;
}
.mzs-avatar-preview:hover .mzs-avatar-overlay { opacity: 1; }
.mzs-avatar-name { font-size: 15px; font-weight: 700; color: var(--mz-text); margin-bottom: 4px; }
.mzs-avatar-hint { font-size: 11px; color: var(--mz-text-muted, #999); margin-bottom: 12px; }
.mzs-file-input { display: none !important; }
.mzs-file-name {
  display: inline-block;
  font-size: 11px;
  color: var(--mz-primary);
  margin-top: 6px;
  word-break: break-all;
}

/* Divider */
.mzs-form-divider {
  height: 1px;
  background: var(--mz-border, #eee);
  margin: 0 0 24px;
}

/* Form group */
.mzs-form-group {
  margin-bottom: 20px;
}
.mzs-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--mz-text-muted, #666);
  margin-bottom: 8px;
}
.mzs-input,
.mzs-textarea {
  width: 100%;
  padding: 11px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--mz-border, #e0e4ec);
  background: var(--mz-bg, #f8f9fb);
  color: var(--mz-text);
  font-size: 14px;
  font-family: inherit;
  transition: border-color 0.15s, box-shadow 0.15s;
  outline: none;
  box-sizing: border-box;
}
.mzs-input:focus,
.mzs-textarea:focus {
  border-color: var(--mz-primary);
  box-shadow: 0 0 0 3px rgba(192,57,43,0.1);
  background: var(--mz-card, #fff);
}
.mzs-textarea { resize: vertical; min-height: 100px; }

/* Badge */
.mzs-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.mzs-badge-success { background: rgba(39,174,96,0.12); color: #27ae60; }
.mzs-badge-danger  { background: rgba(231,76,60,0.12);  color: #e74c3c; }
.mzs-btn-resend {
  background: none;
  border: 1px solid currentColor;
  color: #e74c3c;
  font-size: 10px;
  padding: 2px 8px;
  border-radius: 4px;
  cursor: pointer;
  margin-left: 6px;
}

/* Buttons */
.mzs-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.18s;
  border: 1.5px solid transparent;
  text-decoration: none;
  letter-spacing: 0.3px;
}
.mzs-btn-primary {
  background: var(--mz-primary, #c0392b);
  color: #fff !important;
  border-color: var(--mz-primary, #c0392b);
}
.mzs-btn-primary:hover { background: #a93226; border-color: #a93226; }
.mzs-btn-outline {
  background: transparent;
  color: var(--mz-text) !important;
  border-color: var(--mz-border, #ddd);
}
.mzs-btn-outline:hover { background: var(--mz-bg, #f4f5f7); }
.mzs-form-actions { padding-top: 8px; }

/* Dark mode */
.dark-mode .mzs-settings-sidebar,
.dark-mode .mzs-settings-card {
  background: var(--mz-card, #1e2235);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.dark-mode .mzs-settings-card-header { background: rgba(255,255,255,0.04); }
.dark-mode .mzs-settings-nav-item:hover { background: rgba(255,255,255,0.05); }
.dark-mode .mzs-settings-nav-item.active { background: rgba(192,57,43,0.15); }
.dark-mode .mzs-input,
.dark-mode .mzs-textarea {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.1);
  color: #fff;
}
.dark-mode .mzs-input:focus,
.dark-mode .mzs-textarea:focus { background: rgba(255,255,255,0.08); }
.dark-mode .mzs-settings-logout { border-color: rgba(255,255,255,0.08); }

/* Responsive */
@media (max-width: 768px) {
  .mzs-settings-layout {
    flex-direction: column;
  }
  .mzs-settings-aside {
    width: 100%;
  }
  .mzs-form-avatar-section {
    flex-direction: column;
    text-align: center;
  }
  .mzs-form { padding: 20px; }
}
