
/*
Theme Name: Küçük İlanlar Gazete35 v6
Description: Bölgesel ilan teması (v6) - Gazete35
Version: 6.0
Author: ChatGPT
*/
:root {
  --blue: #3398cc;
  --yellow: #fff8d6;
  --dark: #002b45;
}
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f7f9;
  color: #333;
}
.wrap {
  max-width: 1150px;
  margin: 0 auto;
  padding: 0 16px;
}
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--Modern-Lacivert);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.header-banner img {
  max-width: 728px;
  height: auto;
}
.main-menu {
  background: var(--Modern-Lacivert);
}
.main-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.main-menu ul li {
  margin: 0;
}
.main-menu ul li a {
  display: block;
  color: #fff;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
}
.main-menu ul li a:hover {
  background: var(--dark);
}
.banner-yellow {
  background: var(--yellow);
  color: #000;
  text-align: center;
  font-weight: bold;
  padding: 10px;
  margin-top: 10px;
}
.category-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 15px 0;
}

.cat-item {
  background: #001F5B; /* Lacivert */
  color: white;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-weight: 500;
}

.cat-item:hover {
  background: #003366;
}

.cat-item.active {
  background: #FFD700; /* Sarı */
  color: black;
  font-weight: bold;
  transform: scale(1.05);
}
.search-box-wrap {
  background: var(--Modern-Lacivert);
  color: #003366;
  padding: 20px 10px;
  text-align: center;
  border-radius: 6px;
}
.search-box-wrap h3 {
  margin-top: 0;
}
.search-box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 10px;
}
.search-box select,
.search-box input {
  padding: 8px;
  border-radius: 4px;
  border: none;
  width: 180px;
}
.search-box button {
  background: #003366;
  border: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
}
.ilans-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 sütun */
  gap: 8px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.ilan-kutu {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 4px;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  font-size: 11px;
  height: 80px;              /* 📏 Boy sabit */
  overflow: hidden;          /* içerik taşarsa gizle */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.ilan-kutu img {
  width: 100%;
  height: 35px;              /* küçük resim */
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 2px;
}
.ilan-kutu h3 {
  font-size: 15px;
  margin: 10px 0;
}
.ilan-kutu p {
  font-size: 13px;
  color: #555;
}
.ilan-kutu.ozel {
  background: var(--yellow);
  border: 1px solid #e6c800;
}
@media(max-width:1000px){.ilans-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:600px){.ilans-grid{grid-template-columns:1fr;}}

.cat-item {
  background: #001F5B;
  color: #fff;
  padding: 6px 12px;
  border-radius: 4px;
  margin: 2px;
  cursor: pointer;
  display: inline-block;
  transition: background 0.3s ease;
}

.cat-item:hover {
  background: #003366;
}

.cat-item.active {
  background: #FFD700; /* Seçili kategori sarı olur */
  color: #000;
  font-weight: bold;
}



