html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}

/* ===== Ekicioğlu Tarım — Pazarlama Sitesi Marka Stilleri ===== */
:root {
  --brand-green-darkest: #0f3d1e;
  --brand-green-dark: #14532d;
  --brand-green: #1e7d32;
  --brand-green-light: #e8f5e9;
  --brand-cream: #f7f8f3;
  --brand-text: #1f2a22;
}

body.public-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--brand-text);
  margin-bottom: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.public-main {
  flex: 1 0 auto;
}

/* Header */
.public-header {
  border-bottom: 1px solid #eef1ec;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1030;
}

.public-header .navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand-logo {
  height: 40px;
  width: auto;
}

.public-nav-link {
  color: var(--brand-text) !important;
  font-weight: 500;
  font-size: 0.95rem;
}

.public-nav-link:hover {
  color: var(--brand-green) !important;
}

.btn-brand {
  background-color: var(--brand-green);
  border-color: var(--brand-green);
  color: #fff;
}

.btn-brand:hover {
  background-color: var(--brand-green-dark);
  border-color: var(--brand-green-dark);
  color: #fff;
}

.btn-brand-outline {
  border: 1px solid #d8ded4;
  color: var(--brand-text);
  background: #fff;
}

.btn-brand-outline:hover {
  border-color: var(--brand-green);
  color: var(--brand-green);
}

.account-toggle {
  border: none;
  background: transparent;
  padding: 0.25rem 0;
}

.account-toggle::after {
  margin-left: 0.15rem;
}

.account-toggle:focus {
  box-shadow: none;
}

.dropdown-menu {
  border: 1px solid #eef1ec;
  border-radius: 0.75rem;
  box-shadow: 0 0.75rem 1.75rem rgba(15, 61, 30, 0.12);
  padding: 0.5rem;
  min-width: 14rem;
}

.dropdown-menu .dropdown-header {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-text);
}

.dropdown-menu .dropdown-item {
  border-radius: 0.5rem;
  font-size: 0.92rem;
  padding: 0.5rem 0.75rem;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background: var(--brand-green-light);
  color: var(--brand-green-darkest);
}

.btn-phone-cta {
  border-radius: 50rem;
  background: var(--brand-green-darkest);
  color: #fff;
  padding: 0.5rem 1.1rem;
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

.btn-phone-cta:hover {
  background: var(--brand-green-dark);
  color: #fff;
}

/* Hero */
.hero-section {
  background: linear-gradient(180deg, var(--brand-green-light) 0%, #ffffff 100%);
  padding: 3.5rem 0 5.5rem;
}

.hero-eyebrow {
  color: var(--brand-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.hero-title {
  font-weight: 800;
  font-size: 2.75rem;
  line-height: 1.15;
  color: var(--brand-green-darkest);
}

.hero-title .text-accent {
  color: var(--brand-green);
}

.hero-subtitle {
  color: #6c757d;
}

.hero-illustration {
  width: 100%;
  height: auto;
}

/* Hero — çoklu slayt (slider) modu, Hero Slaytları admin ekranından yönetilir */
.hero-section-photo {
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-carousel .carousel-item {
  height: 640px;
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 40, 20, 0.92) 0%,
    rgba(10, 40, 20, 0.78) 32%,
    rgba(10, 40, 20, 0.35) 60%,
    rgba(10, 40, 20, 0.05) 85%
  );
  z-index: 1;
}

.hero-section-photo .container {
  position: relative;
  z-index: 2;
}

.hero-section-photo .hero-eyebrow {
  color: #bfe6c4;
}

.hero-section-photo .hero-title {
  color: #fff;
}

.hero-section-photo .hero-title .text-accent {
  color: #8fe0a0;
}

.hero-section-photo .hero-subtitle {
  color: rgba(255, 255, 255, 0.88);
}

.hero-carousel .carousel-indicators {
  bottom: 1.25rem;
}

.hero-carousel .carousel-indicators [data-bs-target] {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

.hero-carousel .carousel-indicators .active {
  background-color: #fff;
}

.hero-carousel .carousel-control-prev,
.hero-carousel .carousel-control-next {
  width: 3.5rem;
}

.hero-carousel .carousel-control-prev-icon,
.hero-carousel .carousel-control-next-icon {
  width: 1.75rem;
  height: 1.75rem;
  background-color: rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  padding: 0.4rem;
  background-size: 60%;
}

@media (max-width: 991.98px) {
  .hero-carousel .carousel-item {
    height: 560px;
    align-items: flex-end;
    padding-bottom: 2.5rem;
  }

  .hero-overlay {
    background: linear-gradient(
      180deg,
      rgba(10, 40, 20, 0.25) 0%,
      rgba(10, 40, 20, 0.65) 45%,
      rgba(10, 40, 20, 0.92) 100%
    );
  }
}

/* Özellik rozetleri şeridi (hero üzerine binen kart) */
.feature-strip {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1rem 3rem rgba(15, 61, 30, 0.12);
  margin-top: -4rem;
  position: relative;
  z-index: 5;
  padding: 1.75rem 1rem;
}

.feature-item .feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item h6 {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.feature-item p {
  font-size: 0.85rem;
  color: #667066;
  margin-bottom: 0;
}

/* Genel bölüm başlıkları */
.section-eyebrow {
  color: var(--brand-green);
  font-weight: 700;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  text-transform: uppercase;
}

.section-title {
  font-weight: 800;
  color: var(--brand-green-darkest);
}

/* Ürün kategori kartları */
.category-card {
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.category-card:hover {
  box-shadow: 0 0.75rem 1.75rem rgba(15, 61, 30, 0.1);
  transform: translateY(-2px);
}

.category-card .category-thumb {
  height: 120px;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.category-card .category-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-card .category-icon-badge {
  position: absolute;
  bottom: -1.1rem;
  left: 1rem;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0.25rem 0.6rem rgba(15, 61, 30, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.category-card .category-body {
  padding: 1.6rem 1rem 1rem;
}

.category-card h6 {
  font-weight: 700;
}

.category-card p {
  font-size: 0.85rem;
  color: #667066;
}

.category-card .category-link {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: none;
}

/* Sağ CTA panel */
.cta-panel {
  background: var(--brand-green-dark);
  color: #fff;
  border-radius: 0.9rem;
  padding: 1.75rem 1.5rem;
}

.cta-panel h5 {
  font-weight: 700;
}

.cta-panel p {
  font-size: 0.9rem;
  opacity: 0.9;
}

.whatsapp-card {
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

/* İstatistik şeridi */
.stats-bar {
  background: var(--brand-green-dark);
  color: #fff;
}

.stats-bar .stat-item h3 {
  font-weight: 800;
  margin-bottom: 0.1rem;
}

.stats-bar .stat-item p {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-bottom: 0;
}

.stats-bar .badge-local {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  font-size: 0.8rem;
}

/* Kurumsal görsel kolaj */
.collage-main {
  border-radius: 0.9rem;
  height: 220px;
  background: var(--brand-green-light);
}

.collage-sub {
  border-radius: 0.9rem;
  height: 140px;
  background: #dfeee1;
}

.collage-badge {
  position: absolute;
  width: 7.5rem;
  height: 7.5rem;
  border-radius: 50%;
  background: var(--brand-green);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(15, 61, 30, 0.25);
}

.checklist-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin-bottom: 0.6rem;
}

.checklist-item .check-icon {
  color: var(--brand-green);
  flex-shrink: 0;
}

/* Haberler kartları */
.news-card {
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
}

.news-card .news-thumb {
  height: 150px;
  background: var(--brand-green-light);
}

.news-card .news-body {
  padding: 1.1rem;
}

.news-card .news-date {
  font-size: 0.75rem;
  color: #8a9188;
}

.news-card h6 {
  font-weight: 700;
}

.news-card p {
  font-size: 0.85rem;
  color: #667066;
}

.news-card .news-link {
  color: var(--brand-green);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
}

/* Ürün kartları (halka açık ürün listesi) */
.product-card {
  display: block;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  overflow: hidden;
  background: #fff;
  height: 100%;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.product-card:hover {
  box-shadow: 0 0.75rem 1.75rem rgba(15, 61, 30, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.product-card .product-thumb {
  height: 160px;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
}

/* Gerçek ürün fotoğrafı olan kartlarda zemin beyaza dönüyor (stüdyo fotoğraflarının
   kendi arka planıyla kaynaşsın diye) — görseli olmayıp ikon gösteren kartlarda
   üstteki yeşil zemin değişmeden kalıyor. */
.product-card .product-thumb:has(img) {
  background: #fff;
}

.product-card .product-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* İletişim sayfası harita */
.map-embed {
  border-radius: 0.9rem;
  overflow: hidden;
  border: 1px solid #eef1ec;
  line-height: 0;
}

.map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.map-embed-wide {
  height: 420px;
}

@media (max-width: 767.98px) {
  .map-embed-wide {
    height: 300px;
  }
}

/* Kurumsal sayfa zaman çizelgesi */
.timeline {
  max-width: 44rem;
  margin: 0 auto;
}

.timeline-item {
  position: relative;
  padding-left: 2rem;
  padding-bottom: 2.25rem;
  border-left: 2px solid #dfe6da;
  margin-left: 0.5rem;
}

.timeline-item:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -0.65rem;
  top: 0.05rem;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 50%;
  background: var(--brand-green);
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px var(--brand-green);
}

.timeline-year {
  display: inline-block;
  background: var(--brand-green-light);
  color: var(--brand-green-darkest);
  font-weight: 700;
  font-size: 0.8rem;
  border-radius: 50rem;
  padding: 0.15rem 0.75rem;
  margin-bottom: 0.5rem;
}

.timeline-item h5 {
  font-weight: 700;
  margin-bottom: 0.3rem;
}

/* Misyon & Vizyon kartları */
.mv-card {
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 1.75rem;
}

.mv-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.mv-card h5 {
  font-weight: 700;
}

/* Ödüller sayfası rozet kartları */
.award-badge {
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 1.75rem 1rem;
  text-align: center;
}

.award-badge .mv-icon {
  margin-left: auto;
  margin-right: auto;
}

.award-image {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  margin: 0 auto 1rem;
}

.award-year {
  font-weight: 800;
  color: var(--brand-green-darkest);
  font-size: 1.4rem;
  margin: 0.25rem 0 0.15rem;
}

/* Çözüm Ortaklarımız sayfası — logo duvarı kartları */
.partner-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 1.5rem 1rem;
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

a.partner-logo-card:hover {
  box-shadow: 0 0.75rem 1.75rem rgba(15, 61, 30, 0.1);
  transform: translateY(-2px);
  color: inherit;
}

.partner-logo-thumb {
  width: 100%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.partner-logo-thumb img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-logo-name {
  font-weight: 600;
  font-size: 0.9rem;
  text-align: center;
  color: var(--brand-green-darkest);
}

.product-card .product-body {
  padding: 1.1rem;
}

.product-card h6 {
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.product-card .category-link {
  font-size: 0.9rem;
}

.product-detail-image {
  border-radius: 0.9rem;
  background: var(--brand-green-light);
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.product-detail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Ürün bulucu sihirbazı */
.wizard-category-btn {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  background: #fff;
  padding: 1.1rem 0.5rem;
  font-weight: 600;
  font-size: 0.85rem;
  text-align: center;
  color: var(--brand-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wizard-category-btn:hover {
  border-color: var(--brand-green);
  box-shadow: 0 0.5rem 1.25rem rgba(15, 61, 30, 0.1);
}

.wizard-category-thumb {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--brand-green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.wizard-category-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wizard-subcategory-btn {
  width: 100%;
  text-align: left;
  border: 1px solid #eef1ec;
  border-radius: 0.7rem;
  background: #fff;
  padding: 0.7rem 1rem;
  font-size: 0.9rem;
  color: var(--brand-text);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.wizard-subcategory-btn:hover {
  border-color: var(--brand-green);
  box-shadow: 0 0.35rem 1rem rgba(15, 61, 30, 0.08);
}

.wizard-result-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid #eef1ec;
  border-radius: 0.7rem;
  padding: 0.5rem 0.75rem;
  text-decoration: none;
  color: var(--brand-text);
  transition: border-color 0.15s ease, background 0.15s ease;
}

.wizard-result-item:hover {
  border-color: var(--brand-green);
  background: var(--brand-green-light);
}

.wizard-result-thumb {
  width: 44px;
  height: 44px;
  border-radius: 0.5rem;
  background-color: var(--brand-green-light);
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.wizard-result-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.wizard-result-name {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wizard-result-meta {
  font-size: 0.78rem;
  color: #667066;
}

/* Footer */
.public-footer {
  background: var(--brand-green-darkest);
  color: rgba(255, 255, 255, 0.75);
  padding: 1.5rem 0;
  font-size: 0.9rem;
}

.public-footer a {
  color: #fff;
}

@media (max-width: 767.98px) {
  .hero-title {
    font-size: 2rem;
  }

  .feature-strip {
    margin-top: 1.5rem;
  }
}

/* Kimlik doğrulama sayfaları (Giriş, Şifremi Unuttum vb.) */
.auth-body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(160deg, var(--brand-green-dark) 0%, var(--brand-green) 45%, var(--brand-green-light) 100%);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.auth-wrapper {
  width: 100%;
  max-width: 26rem;
  padding: 1.5rem;
}

.auth-card {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 1.5rem 3rem rgba(15, 61, 30, 0.25);
  padding: 2.25rem 1.75rem;
}

.auth-logo {
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand-green-darkest);
  text-decoration: none;
  margin-bottom: 1.75rem;
}

.auth-logo small {
  display: block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--brand-green);
}

.auth-footer-note {
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.85rem;
  margin-top: 1.25rem;
}

/* ===== Admin Paneli ===== */
body.admin-body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--brand-cream);
  color: var(--brand-text);
  margin-bottom: 0;
}

.admin-shell {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background-color: var(--brand-green-darkest) !important;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 1.5rem 0;
  flex-shrink: 0;
}

.admin-sidebar-brand {
  padding: 0 1.5rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.admin-sidebar-brand a {
  display: flex;
  align-items: center;
}

.admin-sidebar-logo {
  height: 36px;
  width: auto;
}

.admin-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0 0.75rem;
  flex: 1;
}

.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.85rem;
  border-radius: 0.6rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: background 0.15s ease, color 0.15s ease;
}

.admin-nav-link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.admin-nav-link.active {
  background: var(--brand-green);
  color: #fff;
  font-weight: 600;
}

.admin-nav-link svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.admin-nav-badge {
  margin-left: auto;
  background: #e05252;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 50rem;
  padding: 0.1rem 0.5rem;
  line-height: 1.4;
}

.admin-sidebar-footer {
  padding: 1rem 1.5rem 0;
  margin-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-footer a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
  text-decoration: none;
}

.admin-sidebar-footer a:hover {
  color: #fff;
}

.admin-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.admin-topbar {
  background: #fff;
  border-bottom: 1px solid #eef1ec;
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1020;
}

.admin-menu-toggle {
  border: 1px solid #d8ded4;
  background: #fff;
  color: var(--brand-text);
}

.admin-user-chip {
  font-size: 0.9rem;
  color: var(--brand-text);
  font-weight: 500;
}

.admin-content {
  padding: 1.75rem;
  flex: 1;
}

.admin-content h1 {
  color: var(--brand-green-darkest);
  font-weight: 700;
}

.admin-view > table,
.admin-view > form,
.admin-view > dl {
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 1.5rem;
  box-shadow: 0 0.25rem 1rem rgba(15, 61, 30, 0.05);
}

.admin-view > table {
  padding: 0;
  overflow: hidden;
}

.admin-view table thead th {
  background: var(--brand-green-light);
  color: var(--brand-green-darkest);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-weight: 700;
  border-bottom: none;
}

.admin-view table td,
.admin-view table th {
  border-color: #eef1ec;
  vertical-align: middle;
}

.admin-view table tbody tr:hover {
  background: #fafbf9;
}

.admin-content .card {
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  box-shadow: 0 0.25rem 1rem rgba(15, 61, 30, 0.05);
  transition: box-shadow 0.15s ease;
}

.admin-content .card:hover {
  box-shadow: 0 0.5rem 1.5rem rgba(15, 61, 30, 0.1);
}

/* Site Ayarları — sekmeli sol menü */
.settings-nav-wrap {
  position: sticky;
  top: 1.5rem;
  border-right: 1px solid #eef1ec;
  padding-right: 1rem;
}

.settings-nav .nav-link {
  color: var(--brand-text);
  border-radius: 0.6rem;
  padding: 0.65rem 0.9rem;
  font-weight: 500;
  font-size: 0.92rem;
  text-align: left;
  background: transparent;
}

.settings-nav .nav-link:hover:not(.active) {
  background: var(--brand-green-light);
}

.settings-nav .nav-link.active {
  background: var(--brand-green);
  color: #fff;
  font-weight: 600;
}

.settings-tab-content h5 {
  color: var(--brand-green-darkest);
  font-weight: 700;
}

@media (max-width: 991.98px) {
  .settings-nav-wrap {
    position: static;
    border-right: none;
    border-bottom: 1px solid #eef1ec;
    padding-right: 0;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }

  .settings-nav {
    flex-direction: row !important;
    flex-wrap: wrap;
  }
}

.admin-icon-badge {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--brand-green-light);
  color: var(--brand-green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.admin-icon-badge.is-danger {
  background: #fdecec;
  color: #c94b4b;
}

@media (max-width: 991.98px) {
  .admin-sidebar {
    width: 280px;
  }

  .admin-content {
    padding: 1.25rem;
  }
}

/* Gizlilik Politikası sayfası */
.policy-card {
  background: #fff;
  border: 1px solid #eef1ec;
  border-radius: 0.9rem;
  padding: 2.5rem;
  box-shadow: 0 0.25rem 1rem rgba(15, 61, 30, 0.05);
}

.policy-section + .policy-section {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid #eef1ec;
}

.policy-section h2 {
  font-weight: 700;
  color: var(--brand-green-darkest);
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.policy-section p,
.policy-section li {
  font-size: 0.95rem;
}

.policy-section ul {
  padding-left: 1.25rem;
}

.policy-section li {
  margin-bottom: 0.5rem;
}

.policy-section li:last-child {
  margin-bottom: 0;
}

@media (max-width: 767.98px) {
  .policy-card {
    padding: 1.5rem;
  }
}