.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  padding: 12px;
  background: #fff;
}
.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
}
.badge {
  font-size: 12px;
  background: #eef;
  padding: 2px 6px;
  border-radius: 8px;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 20px;
  color: #1f3a8a;
}
.brand:hover {
  opacity: 0.85;
}
.brand-icon {
  font-size: 22px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
}
.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: #222;
}
.nav-links a.active {
  background: #eef2ff;
  color: #1d4ed8;
}
.nav-links a:hover {
  background: #f5f5f5;
}

/* dropdown */
.dropdown {
  position: relative;
}
.drop-btn {
  background: transparent;
  border: 0;
  padding: 8px 10px;
  border-radius: 8px;
  cursor: pointer;
}
.drop-btn:hover {
  background: #f5f5f5;
}
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 6px;
  display: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.drop-menu.open {
  display: block;
}
.drop-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 6px;
  color: #222;
}
.drop-menu a:hover {
  background: #f3f4f6;
}

/* buton görünümü */
a.btn {
  background: #1d4ed8;
  color: #fff !important;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.25);
}
a.btn:hover {
  filter: brightness(0.95);
}

/* sayfa container */
.container {
  max-width: 1100px;
  margin: 24px auto;
  padding: 0 16px;
}
.site-footer {
  padding: 16px;
  background: #f9fafb;
  border-top: 1px solid #eee;
  text-align: center;
}

/* 2 sütun düzeni */
.two-col {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}
@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

/* Kart iskeleti */
.card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.card-header {
  padding: 10px 14px;
  border-bottom: 1px solid #eee;
  background: #f9fafb;
}
.card-header h3 {
  margin: 0;
  font-size: 16px;
}
.card-body {
  padding: 14px;
}

/* Form */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 12px;
}
.form-row .form-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-row label {
  font-size: 13px;
  color: #444;
}
.input,
.textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  outline: 0;
}
.input:focus,
.textarea:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}
@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.form-actions {
  margin-top: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
}
.kvkk {
  display: block;
  margin: 10px 0;
  font-size: 13px;
  color: #444;
}

/* Sepet */
.empty {
  background: #fff7cc;
  color: #6b5d00;
  padding: 8px 10px;
  border-radius: 8px;
  margin-bottom: 10px;
}
.cart-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid #eee;
  border-radius: 8px;
}
.cart-text .title {
  font-weight: 600;
}
.cart-text .meta {
  font-size: 12px;
  color: #666;
  margin-top: 2px;
}
.qty-input {
  width: 80px;
  padding: 8px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Butonlar ve uyarılar */
.btn {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d0d7ff;
  background: #eef2ff;
  cursor: pointer;
}
.btn:hover {
  filter: brightness(0.97);
}
.btn-primary {
  background: #f55755;
  color: #fff;
  border-color: #f55755;
  box-shadow: 0 6px 16px rgba(29, 78, 216, 0.25);
}
.btn-success {
  background: #16a34a;
  color: #fff;
  border-color: #16a34a;
}
.alert {
  padding: 10px 12px;
  border-radius: 8px;
  margin: 10px 0 16px;
}
.alert.success {
  background: #e8fbe8;
  color: #166534;
  border: 1px solid #a7f3d0;
}
.alert.error {
  background: #fee2e2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

/* ÜST MAVİ ŞERİT */
.topbar {
  background: #1670ff;
  color: #fff;
  font-size: 13px;
}
.topbar-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 6px 16px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.t-left span {
  opacity: 0.95;
}
.t-left .sep {
  opacity: 0.5;
  margin: 0 8px;
}
.t-right {
  opacity: 0.95;
}

/* NAV */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.nav-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: 22px;
  color: #1f57d6;
  margin-right: 8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
}
.nav-links a,
.drop-btn {
  padding: 8px 10px;
  border-radius: 8px;
  color: #444;
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
}
.nav-links a.active {
  color: #1d4ed8;
  box-shadow: inset 0 -2px 0 #1d4ed8;
}
.nav-links a:hover,
.drop-btn:hover {
  background: #f5f7ff;
}

/* DROPDOWN */
.dropdown {
  position: relative;
}
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  border: 1px solid #eef;
  border-radius: 12px;
  padding: 6px;
  display: none;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.08);
}
.drop-menu.open {
  display: block;
}
.drop-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
}
.drop-menu a:hover {
  background: #f3f6ff;
}

/* SAĞ BLOK: arama + sepet */
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
}
.search {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #e3e7f3;
  border-radius: 10px;
  padding: 6px 8px;
}
.search input {
  width: 260px;
  border: 0;
  outline: none;
}
.search-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
}
.cart-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 12px;
  background: linear-gradient(180deg, #f55755 0%, #f55755 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(207, 87, 87, 0.35);
}
.cart-btn:hover {
  filter: brightness(0.97);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .topbar-wrap {
    padding: 6px 12px;
  }
  .search input {
    width: 160px;
  }
}
/* Sepet sayfası */
.empty-wrap {
  background: #dff6ff;
  border: 1px solid #bfe9ff;
  color: #063c5b;
  padding: 16px;
  border-radius: 16px;
  max-width: 900px;
}
.empty-wrap .empty-title {
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 6px;
}
.empty-wrap hr {
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  margin: 12px 0;
}

.cart-form {
  max-width: 900px;
}
.cart-list.big {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px;
  border: 1px solid #eee;
  border-radius: 12px;
  background: #fff;
}
.cart-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #eee;
}
.cart-right {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
}

/* HERO */
.hero {
  position: relative;
  padding: 80px 0 80px;
  background: linear-gradient(135deg, #6a74f5 0%, #6e59c9 45%, #6a4fb6 100%);
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 48px; /* artık aşağı taşmıyor */
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
  pointer-events: none;
}
.hero-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}
.hero-title {
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: 0.2px;
  margin: 0 0 18px;
  font-weight: 800;
}
.hero-text {
  max-width: 720px;
  font-size: 18px;
  line-height: 1.6;
  opacity: 0.95;
  margin: 0 0 22px;
}
.hero-actions {
  display: flex;
  gap: 12px;
}

/* CTA butonları */
.btn-light {
  background: #fff;
  color: #0f172a !important;
  border: 1px solid #fff;
  box-shadow: 0 10px 24px rgba(255, 255, 255, 0.25);
}
.btn-light:hover {
  filter: brightness(0.98);
}
.btn-outline {
  background: transparent;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.7);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
}

/* responsive */
@media (max-width: 900px) {
  .hero {
    padding: 56px 0 72px;
  }
  .hero-title {
    font-size: 40px;
  }
  .hero-text {
    font-size: 16px;
  }
}

/* FEATURES */
.features {
  background: #f8fafc;
  padding: 28px 0;
}
.features-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.f-card {
  background: #fff;
  border: 1px solid #edf2f7;
  border-radius: 14px;
  padding: 22px;
  text-align: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}
.f-ico {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 8px;
}
.f-card h3 {
  margin: 6px 0 6px;
  font-size: 18px;
}
.f-card p {
  margin: 0;
  color: #667085;
  font-size: 13px;
}

/* renkler */
.f-blue {
  color: #2563eb;
}
.f-green {
  color: #16a34a;
}
.f-yellow {
  color: #f59e0b;
}
.f-cyan {
  color: #06b6d4;
}

@media (max-width: 1000px) {
  .features-wrap {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .features-wrap {
    grid-template-columns: 1fr;
  }
}
/* Yumuşak kaydırma */
html {
  scroll-behavior: smooth;
}

/* İLETİŞİM BLOĞU */
.contact-block {
  background: #25384a; /* koyu mavi ton */
  color: #dbe6f1;
  border-top: 3px solid #2dd4bf; /* üstte ince renk çizgi */
  margin-top: 24px;
}
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 16px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr;
  gap: 26px;
}
.contact-col h4 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
  position: relative;
}
.contact-col h4::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin-top: 6px;
  background: #2f6dfb;
  border-radius: 3px;
}
.brand-lg {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #fff;
  font-size: 22px;
  margin-bottom: 8px;
}
.brand-lg span {
  letter-spacing: 0.2px;
}
.contact-col p {
  margin: 0 0 12px;
  color: #c9d6e3;
}
.socials {
  display: flex;
  gap: 10px;
}
.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: #334a5f;
  color: #e5eff9;
  border-radius: 50%;
}
.socials a:hover {
  filter: brightness(1.1);
}

.c-list,
.c-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-list li {
  padding: 6px 0;
  color: #e2eaf3;
}
.c-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #dbe6f1;
}
.c-links li a:hover {
  color: #fff;
}

.contact-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12px 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #cbd5e1;
}
.pay-icons {
  opacity: 0.85;
}

@media (max-width: 900px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .contact-bottom {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
}
/* Full-bleed: .container içindeyken kenarlara taşır (hero, features, contact) */
.container .hero,
.container .features,
.container .contact-block {
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  width: 100vw;
}

/* Ana sayfada alttaki default footer'ı gösterme (iletişim bloğu zaten footer görevinde) */
.page-home .site-footer {
  display: none;
}
.c-links li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  color: #dbe6f1;
}
.c-links li a .ico {
  width: 22px;
  display: inline-grid;
  place-items: center;
  font-size: 16px;
  line-height: 1;
  color: #2f6dfb; /* mavi ikon rengi */
}
.c-links li a:hover {
  color: #fff;
}

/* ========== TEKLİF SAYFASI DÜZENİ (yalnızca /teklif) ========== */
/* ===== Teklif sayfası net düzen ===== */
/* ===== Teklif sayfası – daha sıkı ve orantılı ===== */
/* ===== Teklif sayfası – daha sıkı ve orantılı ===== */
.page-teklif .two-col {
  display: grid;
  grid-template-columns: minmax(0, 680px) 360px; /* sol daha dar, sağ sabit */
  justify-content: center;
  gap: 24px;
}

/* Form satırları (genel) */
.page-teklif .card form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px; /* iki kutu arası boşluk */
  margin-bottom: 12px; /* satırlar arası */
}

/* 1. ve 2. satır: Ad/Soyad + E-posta/Telefon — kutuları daralt */
.page-teklif .card form .form-row:nth-of-type(1),
.page-teklif .card form .form-row:nth-of-type(2) {
  grid-template-columns: repeat(2, minmax(0, 400px)); /* dar kutular */
  justify-content: space-between; /* ortaya yasla */
}

/* Etiket + input yakınlığı */
.page-teklif .card form .form-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page-teklif .card form label {
  font-size: 13px;
  color: #374151;
}

/* Giriş elemanları – yükseklikler */
.page-teklif .card form .input,
.page-teklif .card form select {
  height: 40px;
  padding: 10px 12px;
  border: 1px solid #d9dde8;
  border-radius: 10px;
  outline: 0;
}
.page-teklif .card form .textarea {
  min-height: 100px;
  padding: 10px 12px;
  border: 1px solid #d9dde8;
  border-radius: 10px;
  outline: 0;
}
.page-teklif .card form .input:focus,
.page-teklif .card form .textarea:focus,
.page-teklif .card form select:focus {
  border-color: #93c5fd;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Sağ kolon: kart boyları */
.page-teklif .two-col > :nth-child(2) .card {
  margin-bottom: 16px;
}
.page-teklif .two-col > :nth-child(2) .card:first-child .card-body {
  min-height: 200px;
} /* Sepet Özeti */
.page-teklif .two-col > :nth-child(2) .card:last-child .card-body {
  min-height: 260px;
} /* Bilgilendirme */

/* Boş sepet uyarısı + buton aralığı */
.page-teklif .two-col > :nth-child(2) .card-body .empty,
.page-teklif .two-col > :nth-child(2) .card-body .alert {
  background: #fff7cc;
  color: #6b5d00;
  padding: 10px 12px;
  border-radius: 10px;
  margin: 50;
}
.page-teklif .two-col > :nth-child(2) .card-body .empty + .btn,
.page-teklif .two-col > :nth-child(2) .card-body .alert + .btn {
  margin-top: 14px;
}

/* Sepet satırları (varsa) */
.page-teklif .cart-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.page-teklif .cart-row {
  padding: 10px 12px;
  border: 1px solid #eceff5;
  border-radius: 10px;
  background: #fff;
}
.page-teklif .qty-input {
  width: 86px;
  height: 38px;
  padding: 8px;
}

/* Butonlar */
.page-teklif .btn {
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1;
}
.page-teklif .btn-primary {
  background: #f55755;
  color: #fff;
  border: 1px solid #f55755;
  box-shadow: 0 6px 16px #f55755(29, 78, 216, 0.25);
}
.page-teklif .btn:hover {
  filter: brightness(0.97);
}

/* Mobil */
@media (max-width: 900px) {
  .page-teklif .two-col {
    grid-template-columns: 1fr;
  }
  .page-teklif .card form .form-row {
    grid-template-columns: 1fr;
  }
}

.card .mfr-logo {
  height: 42px;
  width: auto;
  object-fit: contain;
}

/* Dropdown */
.dropdown {
  position: relative;
}
.drop-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 8px 10px;
  border-radius: 8px;
}
.drop-btn:hover {
  background: #f3f4f6;
}

.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 40;
  min-width: 220px;
  max-height: 420px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  display: none;
}
.dropdown.open .drop-menu {
  display: block;
}

.drop-menu a {
  display: block;
  padding: 10px 14px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}
.drop-menu a:hover {
  background: #f1f5f9;
}
.drop-divider {
  height: 1px;
  margin: 6px 0;
  background: #e5e7eb;
}
/* ---- Dropdown temel (sende zaten vardı) ---- */
.dropdown {
  position: relative;
}
.drop-btn {
  background: transparent;
  border: 0;
  cursor: pointer;
  font: inherit;
  padding: 8px 10px;
  border-radius: 8px;
}
.drop-btn:hover {
  background: #f3f4f6;
}
.drop-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 50;
  min-width: 240px;
  max-height: 420px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  display: none;
}
.dropdown.open .drop-menu {
  display: block;
}
.dropdown-item,
.dropdown-link {
  display: block;
  padding: 10px 14px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}
.dropdown-item:hover,
.dropdown-link:hover {
  background: #f1f5f9;
}
.drop-divider {
  height: 1px;
  margin: 6px 0;
  background: #e5e7eb;
}

/* ---- Alt menü (submenu) ---- */
.drop-sub {
  position: relative;
}
.drop-sub .with-caret {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.drop-sub .caret {
  font-size: 12px;
  opacity: 0.7;
}

.submenu {
  position: absolute;
  top: 0;
  left: 100%;
  z-index: 55;
  min-width: 220px;
  max-height: 420px;
  overflow: auto;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  display: none;
}
.drop-sub:hover > .submenu {
  display: block;
} /* desktop hover */

.submenu-title {
  display: block;
  padding: 10px 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}
.submenu-item {
  display: block;
  padding: 10px 14px;
  color: #111827;
  text-decoration: none;
  white-space: nowrap;
}
.submenu-item:hover {
  background: #f1f5f9;
}

/* Mobile: .open sınıfı ile aç/kapat */
.drop-sub.open > .submenu {
  display: block;
}

/* Küçük ekranlarda menünün taşmasını önle */
@media (max-width: 768px) {
  .drop-menu,
  .submenu {
    position: static;
    box-shadow: none;
    border: 0;
    max-height: none;
  }
  .dropdown.open .drop-menu {
    display: block;
  }
  .submenu {
    display: none;
    padding-left: 8px;
    border-left: 2px solid #e5e7eb;
  }
  .drop-sub.open > .submenu {
    display: block;
  }
}
.drop-menu.simple {
  min-width: 260px;
}
.drop-menu.simple .dropdown-item {
  padding: 10px 14px;
}
.drop-menu.simple .dropdown-item:first-child {
  font-weight: 600;
}
/* Tek satır/kolon alanlar için dikey düzen */
.form-row.stacked {
  display: block;
  margin-bottom: 14px;
}
.form-row.stacked label {
  display: block;
  font-weight: 600;
  margin: 0 0 6px;
}
.form-row.stacked .input,
.form-row.stacked .textarea {
  width: 100%;
}
/* Tek kolon (iki sütunu kaplayan) alanlar */
.form-col.full {
  grid-column: 1 / -1; /* grid'in tamamını kapla */
}

.form-col.full label {
  display: block; /* etiket üstte */
  font-weight: 600;
  margin: 0 0 6px;
}

.form-col.full .input,
.form-col.full .textarea {
  width: 100%;
}

.kvkk-return {
  margin-top: 12px;
}
.kvkk-return .btn {
  display: inline-block;
}
/* Temel sıfırlamalar */
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: system-ui, sans-serif;
}

/* Konteyner / içerik genişliği kontrolü */
.container,
.content,
.admin-content {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

/* Kartlar, formlar vs */
.card,
.box,
.form {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

/* Form elemanları */
input[type="text"],
input[type="password"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 15px;
}

/* Butonlar */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

/* Responsive medya sorguları */
@media (max-width: 768px) {
  /* Daha dar ekranlar için ayarlar */
  .card,
  .box,
  .form {
    padding: 16px;
  }
  h1,
  h2,
  h3,
  .title {
    font-size: 1.5rem;
  }
  .btn {
    width: 100%;
    box-sizing: border-box;
    margin-top: 12px;
  }
  .sidebar {
    display: none; /* mobilde sidebar gizle */
  }
  .topbar-admin {
    display: block;
    width: 100%;
  }
}

/* Daha küçük telefonlar */
@media (max-width: 480px) {
  .title {
    font-size: 1.25rem;
  }
  .btn {
    padding: 8px 16px;
    font-size: 14px;
  }
  input,
  select {
    font-size: 14px;
    padding: 8px 10px;
  }
}
/* Genel: Responsive grid/flex yapı için */
.admin-wrap {
  display: flex;
  flex-wrap: wrap;
}

/* Sidebar responsive davranış */
.sidebar {
  width: 250px;
}

@media (max-width: 768px) {
  .admin-wrap {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    order: 2; /* Sidebar alta geçsin */
  }

  .content {
    width: 100%;
    order: 1;
  }
}
html,
body {
  overflow-x: hidden;
}
