/* ====== TEMEL AYARLAR ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --brand-1: #f97316;
  --brand-2: #ea580c;
  --brand-3: #fbbf24;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-600: #475569;
  --slate-700: #334155;
  --amber-700: #b45309;
  --choco: #78350f;
  --emerald: #10b981;
  --green: #22c55e;
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, .12);
  --radius-xl: 28px;
}

body {
  font-family: 'Muli', sans-serif !important;
  background: #fff;
  color: var(--slate-700);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(60rem 60rem at -10% -10%, rgba(249, 115, 22, .06), transparent 40%),
    radial-gradient(50rem 50rem at 110% 10%, rgba(16, 185, 129, .06), transparent 40%);
  pointer-events: none;
}
.ort{
    text-align: center;
}
legend {
    display: block;
    padding: 0;
    margin-bottom: 10px;
    font-size: 21px;
    line-height: inherit;
    color: #f97316;
    border: 0;
    border-bottom: 1px solid #f97316;
}
.container {
  max-width: 1800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.click-btn {
  width: 120px;
  height: 40px;
  justify-content: center;
  align-items: center;
  margin: 0px 8px;
  border: 1px solid;
  border-radius:  30px;
  text-align: center;
  color: #000;
  text-decoration: none;
  transition: all 0.35s;
  box-sizing: border-box;
	padding: 10px 20px;
	letter-spacing: 1px;
    font-weight: 900;

  border-color: #dd7e2a;
  color: #dd7e2a;
  transition: all 0.5s;
  &:hover {
    box-shadow: inset 0 1.5em 0em 0em #f5a11f,
      inset 0 -1.5em 0em 0em #f5a11f;
    border-color: #f5a11f;
    color: #fff;
  }
}
.tpmen {
	    margin: 0px 8px;
	position: relative;
  	display: inline-block;
    border: 1px solid #ccc;
    vertical-align: middle;
    padding: 10px 20px;
    border-radius: 30px;
    letter-spacing: 1px;
    font-weight: 900;
    cursor: pointer;
    background-color: #e7e7e7;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    box-shadow: rgb(38, 57, 77) 0px 14px 14px -10px;
  &:hover {
    transform: translateY(-0.25em);
    border-color: #8b5252;
    color: #bf7b7b;
    &::before {
      opacity: 1;
		bottom: -20px;
    }
  }
  &::before {
    width: 100%;
    height: 1em;
    position: absolute;
    left: 0;
    bottom: 0px;
    background: radial-gradient(
      ellipse at center,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0) 80%
    );
    opacity: 0;
    transition: all 0.65s;
    content: "";
  }
}

/* ====== HEADER / TOP-BANNER (TAM GENİŞLİK) ====== */
.top-banner {
  background: transparent;
  padding: 8px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.top-banner .ad-top {
  width: 100%;
  height: 90px;
  /* SABİT YÜKSEK */
  min-height: 90px;
  /* BANNER YOKKEN DE SABİT */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1.5px solid var(--brand-3);
  box-shadow: 0 10px 30px rgba(251, 191, 36, .20);
  background: linear-gradient(135deg, var(--brand-3) 0%, #f59e0b 100%);
  color: var(--choco);
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

/* ====== ANA YERLEŞİM (YERLER AYNI) ====== */
.main-layout {
  display: grid;
  grid-template-columns: 150px 1fr 150px;
  gap: 25px;
  padding: 22px 20px 26px;
  margin-bottom: 20px;
  align-items: start;
}

/* Banner gizlendiğinde layout ayarları */
.no-left-banner .main-layout {
  grid-template-columns: 1fr 150px;
}

.no-right-banner .main-layout {
  grid-template-columns: 150px 1fr;
}

.no-left-banner.no-right-banner .main-layout {
  grid-template-columns: 1fr;
}

.side-banner {
  background: transparent;
  border-radius: 22px;
  padding: 8px 0;
  text-align: center;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: sticky;
  top: 20px;
  align-self: flex-start;
  height: fit-content;
  overflow: hidden;
}

.side-banner .ad-vert {
  width: 140px;
  /* SABİT GENİŞLİK */
  height: 600px;
  /* SABİT YÜKSEK */
  min-height: 600px;
  /* BANNER YOKKEN DE SABİT */
  border-radius: 16px;
  border: 1.5px solid var(--green);
  box-shadow: 0 8px 28px rgba(34, 197, 94, .20);
  background: linear-gradient(180deg, var(--green) 0%, var(--emerald) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 24px;
  font-weight: 900;
  text-transform: uppercase;
}

/* ====== ANA İÇERİK ====== */
.main-content {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 46px 42px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(2, 6, 23, .06);
}

.logo {
  text-align: center;
  margin-bottom: 16px;
  padding: 5px;
}

.logo img {
  max-width: 280px;
  height: auto;
  display: inline-block;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: scale(1.05);
}

.slogan {
  background: linear-gradient(180deg, var(--slate-50), #fff);
  border: 1.5px solid var(--slate-300);
  border-radius: 18px;
  padding: 18px 22px;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .05);
}

.slogan p {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-600);
  text-transform: uppercase;
  letter-spacing: 1.4px;
}

/* ====== ARAMA VE LOGO REKLAM ====== */
.search-wrapper {
  display: flex;
  gap: 20px;
  margin-bottom: 26px;
  align-items: center;
  justify-content: center;
}

.logo-ad {
  width: 180px;
  /* SABİT GENİŞLİK */
  height: 80px;
  /* SABİT YÜKSEK */
  min-height: 80px;
  /* BANNER YOKKEN DE SABİT */
  min-width: 180px;
  /* BANNER YOKKEN DE SABİT */
  background: linear-gradient(135deg, var(--brand-3) 0%, #f59e0b 100%);
  border: 1.5px solid var(--brand-3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--choco);
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 8px 24px rgba(251, 191, 36, .20);
}

.logo-ad:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(251, 191, 36, .30);
  border-color: #f59e0b;
}

.search-bar {
  display: flex;
  gap: 14px;
  align-items: center;
  flex: 1;
  background: linear-gradient(135deg, #fff, var(--slate-50));
  border: 1.5px solid var(--slate-200);
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 3px 14px rgba(0, 0, 0, .04);
}

.search-label {
  font-weight: 800;
  color: var(--slate-600);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 8px;
  background: transparent;
  color: var(--slate-700);
  font-weight: 500;
}

.search-icon {
  font-size: 22px;
  cursor: pointer;
}

/* ====== KATEGORİLER ====== */
.categories-wrapper {
  margin-bottom: 28px;
}

.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 0;
  margin-left: auto;
  margin-right: auto;
}

.category-item {
  position: relative;
}

.category-btn {
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 14px;
  padding: 16px 18px;
  text-align: center;
  cursor: pointer;
  transition: all .25s ease;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  color: var(--slate-700);
  letter-spacing: .5px;
  position: relative;
}

.category-btn:hover {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: var(--brand-1);
  box-shadow: 0 10px 24px rgba(249, 115, 22, .25);
}

.category-btn.active {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: var(--brand-1);
}

/* ====== MEGA MENU ====== */
.mega-menu {
  position: relative;
  width: 100%;
  max-width: 100%;
  display: none;
  margin-top: 0;
  /* Boşluk yok - ::before ile doldurulacak */
  padding-top: 8px;
  /* Görsel boşluk için padding */
}

.mega-menu.show {
  display: block !important;
}

.mega-menu::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: transparent;
  /* Mouse bu alandan geçebilir */
  pointer-events: auto;
  /* Mouse olaylarını yakala */
}

.mega-menu-container {
  background: #fff;
  border: 2px solid var(--brand-1);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(249, 115, 22, .3);
  display: flex;
  min-height: auto;
  max-height: calc(80vh - 8px);
  overflow-y: auto;
  overflow-x: hidden;
}

/* Alt Kategoriler (Sol Taraf) */
.sub-categories {
  width: 250px;
  background: linear-gradient(135deg, var(--slate-50) 0%, var(--slate-100) 100%);
  padding: 10px 5px;
  border-right: none;
  flex-shrink: 0;
}

.sub-category-item {
  padding: 10px 15px;
  margin-bottom: 5px;
  border-radius: 7px;
  font-weight: 600;
  font-size: 14px;
  color: var(--slate-700);
  cursor: pointer;
  transition: all .25s ease;
  text-decoration: none;
  display: block;
}

.sub-category-item:hover {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color: #fff;
}

.sub-category-item.active {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color: #fff;
}
.whatsapp {
    position: fixed;
    right: 10px;
    bottom: 5px;
    z-index: 999;
}

#langToggle{
    position: fixed;
    right: 10px;
    bottom: 70px;
    z-index: 999;
}

/* İçerik Paneli (Sağ Taraf - Resimli) */
.mega-contents {
  flex: 0 0 0;
  width: 0;
  min-width: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  background: #fff;
  position: relative;
  transition: flex-basis .3s ease, opacity .3s ease, padding .3s ease;
  border-left: none;
}

.mega-contents.show {
  flex: 1;
  min-width: 600px;
  opacity: 1;
  padding: 10px;
  border-left: 2px solid var(--slate-200);
}

.mega-content {
  display: none !important;
  width: 100%;
}

.mega-content.active {
  display: block !important;
}

.mega-content-title {
  font-size: 20px;
  font-weight: 900;
  color: var(--brand-1);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-bottom: 3px solid var(--brand-3);
  padding-bottom: 5px;
}

/* 3. Kırılım Kategori Listesi */
.content-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 350px;
  overflow-y: auto;
}

.content-list li {
  margin: 0 10px 5px 0;
}

.content-list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px;
  background: #fff;
  border: 1.5px solid var(--slate-200);
  border-radius: 5px;
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-700);
  text-decoration: none;
  transition: all 0.2s ease;
}

.content-list-item:hover {
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  color: #fff;
  border-color: var(--brand-1);
  transform: translateX(4px);
}

/* ====== SLIDER BLOKLARI ====== */
.slider {
  background: linear-gradient(135deg, var(--brand-3) 0%, #f59e0b 100%);
  border-radius: 22px;
  padding: 146px 40px;
  text-align: center;
  margin-bottom: 28px;
  box-shadow: 0 10px 34px rgba(251, 191, 36, .25);
  position: relative;
  overflow: hidden;
}

.slider h2 {
  color: var(--choco);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ====== SPONSORLAR (KARE & BÜYÜME) ====== */
.sponsors-section {
    margin-bottom: 28px;
    margin-top: 28px;
}

.sponsors-section h3 {
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: #1e293b;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sponsors-section h3::before {
  content: '';
  width: 5px;
  height: 26px;
  background: linear-gradient(180deg, var(--brand-1), var(--brand-3));
  border-radius: 10px;
}

.main-sponsors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.category-sponsors {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.sponsor-card {
  background: #fff;
  border: 1.5px solid #fed7aa;
  border-radius: 12px;
  aspect-ratio: 1 / 0;
  display: grid;
  place-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(249, 115, 22, .14);
  transform: translateZ(0);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.sponsor-card:hover {
  transform: scale(1.045);
  box-shadow: 0 16px 40px rgba(249, 115, 22, .26);
  border-color: #f59e0b;
  background: #fff7ed;
}

/* Destek Sponsorları - Büyük kartlar (4'lü grid) */
.main-sponsors .sponsor-card {
  border: 2.5px solid #fed7aa;
  border-radius: 16px;
  box-shadow: 0 10px 35px rgba(249, 115, 22, .22);
}

.main-sponsors .sponsor-card:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 60px rgba(249, 115, 22, .36);
}

.main-sponsors .sponsor-logo {
  width: 80%;
  height: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  font-weight: 900;    
    margin-bottom: 10px;
}

.main-sponsors .sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.main-sponsors .sponsor-card span {
  position: absolute;
  bottom: 3px;
  text-align: center;
  color: #9a3412;
  font-size: 14px;
  font-weight: bold;
}

/* Kategori Sponsorları - Normal boyut */
.category-sponsors .sponsor-logo {
  width: 68%;
  height: 68%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  font-weight: 900;
}

.category-sponsors .sponsor-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.category-sponsors .sponsor-card span {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 10px;
  text-align: center;
  color: #9a3412;
  font-size: 12px;
  font-weight: 800;
}

/* ====== HABERLER SLIDER ====== */
.news-section {
  margin-bottom: 28px;
}

.news-section-header {
  background: linear-gradient(135deg, var(--brand-3) 0%, #f59e0b 100%);
  border-radius: 22px 22px 0 0;
  padding: 118px 40px;
  text-align: center;
  box-shadow: 0 10px 34px rgba(251, 191, 36, .25);
  position: relative;
  overflow: hidden;
}

.news-section-header h2 {
  color: var(--choco);
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin: 0;
}

.news-slider-container {
  background: #fff;
  border: 2px solid var(--brand-3);
  border-top: none;
  border-radius: 0 0 22px 22px;
  padding: 30px;
  box-shadow: 0 10px 34px rgba(251, 191, 36, .15);
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  overflow: hidden;
}

.news-card {
  background: #fff;
  border: 2px solid var(--brand-3);
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 12px rgba(251, 191, 36, .15);
}

.news-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 16px 38px rgba(251, 191, 36, .30);
  border-color: #f59e0b;
}

/* News Card Image */
.news-card-image {
  width: 100%;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--brand-3) 0%, #f59e0b 50%, var(--brand-1) 100%);
  font-size: 64px;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.news-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* News Card Content */
.news-card-content {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.news-card-content h4 {
  color: var(--choco);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-card-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.news-date {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: #92400e;
  font-weight: 600;
  margin-top: auto;
  padding-top: 8px;
  border-top: 1px solid var(--slate-200);
}

/* ====== ALT BANNERLAR ====== */
.bottom-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  padding: 0 20px;
  margin-bottom: 24px;
}

.bottom-banner {
  background: transparent;
  border-radius: 22px;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.bottom-banner .ad-wide {
  width: 100%;
  height: 100px;
  /* SABİT YÜKSEK (250px yerine 100px daha kompakt) */
  min-height: 100px;
  /* BANNER YOKKEN DE SABİT */
  border-radius: 22px;
  border: 1.5px solid var(--emerald);
  box-shadow: 0 10px 34px rgba(16, 185, 129, .22);
  background: linear-gradient(135deg, var(--emerald) 0%, var(--green) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 32px;
  font-weight: 900;
  text-transform: uppercase;
}

/* ====== RESPONSIVE ====== */
@media (max-width:1200px) {
  .main-layout {
    grid-template-columns: 1fr;
  }

  .side-banner {
    display: none;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-sponsors {
    grid-template-columns: repeat(4, 1fr);
  }

  .category-sponsors {
    grid-template-columns: repeat(3, 1fr);
  }

  .mega-menu {
    width: auto;
    max-width: 90%;
  }

  .mega-menu-container {
    flex-direction: column;
  }

  .sub-categories {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid var(--slate-200);
    padding: 20px;
  }

  .mega-contents.show {
    width: 100%;
  }

  .content-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:768px) {
  .main-content {
    padding: 20px 22px 28px;
  }

  .logo {
    padding: 3px;
    margin-bottom: 12px;
  }

  .logo img {
    max-width: 220px;
  }

  .search-wrapper {
    flex-direction: column;
    gap: 12px;
  }

  .logo-ad {
    display: none;
  }

  .search-bar {
    max-width: 100%;
  }

  .categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-sponsors {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .category-sponsors {
    grid-template-columns: repeat(2, 1fr);
  }

  .main-sponsors .sponsor-logo {
    font-size: 60px;
  }

  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-section-header {
    padding: 52px 24px;
  }

  .news-section-header h2 {
    font-size: 22px;
  }

  .news-slider-container {
    padding: 20px;
  }

  .bottom-banners {
    grid-template-columns: 1fr;
  }

  .slider {
    padding: 52px 24px;
  }

  .slider h2 {
    font-size: 22px;
  }

  .content-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mega-contents.show {
    padding: 20px;
  }

  .mega-content-title {
    font-size: 16px;
  }

  .mega-menu {
    width: calc(100vw - 40px);
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%);
  }
}

/* ====== FOOTER ====== */
.site-footer {
  background: linear-gradient(135deg, var(--slate-700) 0%, var(--slate-600) 100%);
  color: #fff;
  margin-top: 30px;
  padding: 30px 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--brand-1), var(--brand-3), var(--emerald));
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 20px;
}

.footer-column h3,
.footer-column h4 {
  margin-bottom: 20px;
}

.footer-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}

.footer-heading {
  font-size: 18px;
  font-weight: 600;
  color: var(--brand-3);
  position: relative;
  padding-bottom: 12px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--brand-1);
  border-radius: 2px;
}

.footer-description {
  color: var(--slate-200);
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 15px;
}

.footer-social {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.social-link {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.social-link:hover {
  background: var(--brand-1);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(249, 115, 34, 0.3);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--slate-200);
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--brand-3);
  padding-left: 8px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--slate-200);
  font-size: 15px;
  line-height: 1.6;
}

.footer-contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--brand-3);
}

.footer-contact a {
  color: var(--slate-200);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--brand-3);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  text-align: center;
}

.footer-bottom p {
  color: var(--slate-300);
  font-size: 14px;
  margin: 8px 0;
}

.footer-bottom strong {
  color: var(--brand-3);
  font-weight: 600;
}

.footer-credits {
  margin-top: 12px;
}

.footer-credits a {
  color: var(--slate-300);
  text-decoration: none;
  margin: 0 8px;
  transition: color 0.3s ease;
}

.footer-credits a:hover {
  color: var(--brand-1);
}

/* ====== HAMBURGER MENÜ ====== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 100;
  background: linear-gradient(135deg, var(--brand-1) 0%, var(--brand-2) 100%);
  border: none;
  border-radius: 12px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
  transition: all 0.3s ease;
  pointer-events: auto;
}

.mobile-menu-toggle.active {
  z-index: 10000;
}

.mobile-menu-toggle:active {
  transform: scale(0.95);
}

.hamburger {
  position: relative;
  width: 24px;
  height: 18px;
  margin: 0 auto;
}

.hamburger span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: white;
  border-radius: 3px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
  top: 0px;
}

.hamburger span:nth-child(2) {
  top: 7px;
}

.hamburger span:nth-child(3) {
  top: 14px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(1) {
  top: 7px;
  transform: rotate(135deg);
}

.mobile-menu-toggle.active .hamburger span:nth-child(2) {
  opacity: 0;
  left: -60px;
}

.mobile-menu-toggle.active .hamburger span:nth-child(3) {
  top: 7px;
  transform: rotate(-135deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  opacity: 1;
}

/* Mobile Categories Menu */
.mobile-categories-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: white;
  z-index: 9999;
  overflow-y: auto;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
  padding: 80px 0 20px;
}

.mobile-categories-menu.active {
  right: 0;
}

.mobile-category-item {
  border-bottom: 1px solid #f1f5f9;
}

.mobile-category-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  font-weight: 600;
  color: var(--slate-700);
  cursor: pointer;
  transition: background 0.2s;
}

.mobile-category-header:active {
  background: #f8fafc;
}

.mobile-category-header .icon {
  font-size: 20px;
  margin-right: 12px;
}

.mobile-category-header .arrow {
  font-size: 14px;
  transition: transform 0.3s;
}

.mobile-category-item.active .arrow {
  transform: rotate(180deg);
}

.mobile-subcategories {
  max-height: 0;
  overflow: hidden;
  background: #f8fafc;
  transition: max-height 0.3s ease;
}

.mobile-category-item.active .mobile-subcategories {
  max-height: 5000px;
}

.mobile-subcategory-link {
  display: block;
  padding: 12px 20px 12px 52px;
  color: var(--slate-600);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
  border-left: 3px solid transparent;
}

.mobile-subcategory-link:active {
  background: white;
  border-left-color: var(--brand-1);
  color: var(--brand-1);
}

/* ====== RESPONSIVE BREAKPOINTS ====== */

/* Tablet - 1024px */
@media (max-width: 1024px) {
  .container {
    max-width: 100%;
  }

  .main-layout {
    grid-template-columns: 120px 1fr 120px;
    gap: 15px;
    padding: 15px;
  }

  .side-banner {
    min-height: 800px;
  }

  .side-banner .ad-vert {
    width: 110px;
    height: 500px;
    min-height: 500px;
  }

  .main-content {
    padding: 20px 30px;
  }

  .logo img {
    max-width: 220px;
  }

  .search-wrapper {
    gap: 10px;
  }

  .logo-ad {
    width: 140px;
    height: 70px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

/* Mobile - 768px */
@media (max-width: 768px) {
  body {
    padding-top: 0;
    -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
  }

  /* Tüm linkleri touch-friendly yap */
  a,
  button,
  .category-btn,
  .search-result-item {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(249, 115, 22, 0.2);
    cursor: pointer;
    position: relative;
    z-index: 1;
  }

  /* Linklerin minimum tıklama alanı */
  a:not(.mobile-menu-toggle):not(.logo a) {
    min-height: 44px;
    padding: 8px;
  }

  /* Butonlar için özel ayar */
  button,
  .btn {
    min-height: 44px;
    padding: 12px 16px;
  }

  /* Overlay'lerin pointer-events'ini kontrol et */
  body::before {
    pointer-events: none;
  }

  /* Top Banner Mobil */
  .top-banner {
    padding: 8px 10px;
  }

  .top-banner .ad-top {
    height: 60px;
    min-height: 60px;
    font-size: 18px;
    border-radius: 8px;
  }

  /* Yan Bannerları Gizle */
  .main-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 10px;
  }

  .side-banner {
    display: none !important;
  }

  /* Main Content Mobil */
  .main-content {
    padding: 20px 15px;
    border-radius: 16px;
  }

  /* Logo Mobil */
  .logo {
    margin-bottom: 12px;
  }

  .logo img {
    max-width: 180px;
    max-height: 60px;
  }

  /* Slogan Mobil */
  .slogan {
    font-size: 11px;
    margin-bottom: 15px;
  }

  /* Search Bar Mobil */
  .search-wrapper {
    flex-direction: column;
    gap: 10px;
  }

  .logo-ad {
    width: 100%;
    max-width: 300px;
    height: 60px;
    margin: 0 auto;
  }

  .search-bar {
    width: 100%;
    padding: 12px 15px;
  }

  .search-bar input {
    font-size: 14px;
  }

  .search-label {
    font-size: 11px;
  }

  /* Kategoriler - Hamburger Menü */
  .categories-wrapper {
    display: none !important;
  }

  .mobile-menu-toggle {
    display: block !important;
    pointer-events: auto;
  }

  .mobile-menu-overlay,
  .mobile-categories-menu {
    display: block;
    pointer-events: none;
  }

  .mobile-menu-overlay.active,
  .mobile-categories-menu.active {
    pointer-events: auto;
  }

  /* News Section Mobil */
  .news-section-header {
    min-height: 200px !important;
  }

  .ad-slider-track img,
  .ad-slide img {
    height: 200px !important;
  }

  .news-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  /* Sponsor Cards Mobil */
  .premium-sponsor,
  .mid-sponsor,
  .standard-sponsor {
    padding: 15px;
  }

  .sponsor-logo {
    max-width: 80px;
    max-height: 50px;
  }

  /* Firma Cards Mobil */
  .company-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }

  .company-card {
    padding: 15px;
  }

  /* Alt Banner'ları Gizle */
  .bottom-banners {
    display: none !important;
  }

  /* Footer Mobil */
  .site-footer {
    margin-top: 40px;
    padding: 40px 0 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    margin-bottom: 35px;
  }

  .footer-column {
    text-align: center;
  }

  .footer-heading::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-social {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
    text-align: left;
  }
}

/* Small Mobile - 480px */
@media (max-width: 480px) {
  .main-content {
    padding: 15px 10px;
  }

  .logo img {
    max-width: 150px;
    max-height: 50px;
  }

  .slogan {
    font-size: 10px;
  }

  .search-bar {
    padding: 10px 12px;
  }

  .search-bar input {
    font-size: 13px;
  }

  .category-btn {
    font-size: 13px;
    padding: 10px 15px;
  }

  .news-section-header {
    min-height: 150px !important;
  }

  .ad-slider-track img,
  .ad-slide img {
    height: 150px !important;
  }
}
#popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.6);
  z-index: 9999;
	overflow-y: auto;
}

.popup-box {
  background: #fff;
    width: 90%;
    max-width: 700px;
    padding: 20px;
    border-radius: 6px;
    position: relative;
	margin: 40px auto;
}

.close {
  position: absolute;
  right: 12px;
  top: 8px;
  font-size: 22px;
  cursor: pointer;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
@media (max-width: 768px) {
  .companies-grid {
    grid-template-columns: 1fr;
  }
}
.company-card {
  background: white;
  border-radius: 12px;
  padding: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}
.company-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.12);
}
.company-card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}
.company-card-logo {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.company-card-logo img {
  max-width: 80px;
  max-height: 80px;
  object-fit: contain;
}
.company-card-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--slate-900);
  margin-bottom: 5px;
}
.company-card-info p {
  font-size: 13px;
  color: var(--slate-600);
}
.company-card-actions {
  display: flex;
  gap: 10px;
}
.company-card-btn {
  flex: 1;
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s;
}
.btn-contact {
  background: var(--brand-1);
  color: white;
}
.btn-contact:hover {
  background: var(--brand-2);
}
.btn-detail {
  background: var(--slate-100);
  color: var(--slate-700);
}
.btn-detail:hover {
  background: var(--slate-200);
}
.katagc:hover{
  text-decoration: underline !important;
}

.breadcrumb {
    background: #f8fafc;
    padding: 12px 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
}

.breadcrumb-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.breadcrumb a:hover { 
    color: #f97316; 
}

.breadcrumb .separator { 
    color: #94a3b8;
    margin: 0 4px;
}

.breadcrumb .current {
    color: #0f172a;
    font-weight: 600;
    font-size: 14px;
}


/* ürün slider */
.holder-pt-medium.holder-with-bg {
    padding-top: 20px;
}	
.aacontainer{
    max-width: 1300px !important;
	width: 100%;
    margin-right: auto;
    margin-left: auto;
}

	
.title-with-arrows {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: start;
    justify-content: flex-start;
}
.title-wrap {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    flex-direction: column;
    -ms-flex-direction: column;
}
.text-left {
    text-align: left !important;
}

h2, .h2-style {
	font-size: 20px;
    font-weight: 800;
    position: relative;
    margin: 20px 0 10px 0;
}

.carousel-arrows .slick-next {
    right: 0;
    left: auto;
}
.carousel-arrows .slick-prev, .carousel-arrows .slick-next {
    top: 10%;
}
.slick-prev, .slick-next {
    width: 15px;
    height: 0px;
}
.slick-next:before {
    content: '›';
}
.carousel-arrows .slick-prev:before, .carousel-arrows .slick-next:before {
    font-size: 40px;
    color: #000;
}
.carousel-arrows .slick-prev {
    right: 25px;
    left: auto;
}
.slick-prev:before {
    content: '‹';
}
.swiper-container {
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}
.ort {
    text-align: center;
}
.swiper-slide {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
}
.prd {
    position: relative;
    width: 100%;
    min-height: 1px;
    margin-right: 15px;
    margin-left: 6px;
}
.prd .prd-inside {
    overflow: hidden;
    background-color: #fff;
    padding: 10px;
}
.prd-img-area {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    border: 1px solid #ccc;
    border-radius: 3px;
}
a.image-hover-scale {
    display: -ms-flexbox;
    transition: 0s;
}
.prd-img {
    position: relative;
    display: -ms-flexbox;
    display: flex !important;
    width: 100%;
    padding-right: 0;
    padding-left: 0;
    -ms-flex-align: start;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
}
.image-container {
    position: relative;
    overflow: hidden;
    height: 0;
}
.h250 {
    height: 250px !important;
}
a {
    color: #000;
}
body:not(.equal-height) .prd .image-container>img {
    margin: 0 auto;
}
.swiper-slide .js-prd-img {
    height: 100%;
    position: absolute;
    right: 0;
    left: 0;
    width: auto;
    margin: 0 auto;
    object-fit: contain;
}
.prd-img img {
    transition: opacity .2s;
}
.prd-title{
	margin: 10px !important;
}