:root {
    --brand: #007aff;
    --bg: #f6f8fb;
    --ink: #1c1c1c;
    --radius: 14px;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

body {
    background: var(--bg);
    color: var(--ink);
    font-family: "Inter", sans-serif;
}

/* === NAVBAR === */
.navbar {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    padding: 0.8rem 0;
}

.navbar-brand {
    font-family: "Poppins", sans-serif;
    font-weight: 700;
    color: var(--brand);
    font-size: 1.4rem;
}

.nav-link {
    color: #333 !important;
    font-weight: 500;
    position: relative;
    margin-right: 1rem;
    transition: 0.25s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand) !important;
}

.nav-link.active::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--brand);
    border-radius: 10px;
}

.search-box {
    position: relative;
    max-width: 300px;
}

.search-box input {
    border-radius: 50px;
    padding-left: 36px;
    border: 1px solid #ddd;
}

.search-box i {
    position: absolute;
    top: 50%;
    left: 12px;
    transform: translateY(-50%);
    color: #777;
}

.btn-icon {
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    background: #fff;
    transition: 0.2s;
}

.btn-icon:hover {
    background: #f2f2f2;
}

/* === LAYOUT === */
.main-container {
    max-width: 1350px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.content-wrapper {
    display: flex;
    gap: 1.8rem;
    align-items: flex-start;
}

/* === SIDEBAR === */
.sidebar {
    flex: 0 0 260px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}

.sidebar h6 {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 1rem;
}

.filter-title {
    font-weight: 600;
    font-size: 0.8rem;
    color: #555;
    margin-top: 1.3rem;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

.form-check-label {
    font-size: 0.9rem;
    color: #333;
}

.btn-apply {
    background: var(--brand);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-weight: 500;
    width: 100%;
    padding: 0.6rem;
    margin-top: 1rem;
    transition: 0.3s;
}

.btn-apply:hover {
    background: #005fd4;
}

.ad-slot {
    border: 2px dashed #ddd;
    border-radius: 10px;
    text-align: center;
    color: #aaa;
    font-size: 0.9rem;
    padding: 2rem 1rem;
    margin-top: 1.2rem;
}

@media (min-width: 992px) {
    .sidebar {
        position: sticky;
        top: 1rem;
    }
}

/* === RIGHT CONTENT === */
.right-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

/* === STATS === */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.stats-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 1.3rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.stats-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.stats-card i {
    font-size: 1.6rem;
    color: var(--brand);
    margin-bottom: 0.4rem;
}

.stats-card h5 {
    font-weight: 600;
}

/* === SORT BAR === */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: -0.8rem;
    margin-bottom: -0.8rem;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.sort-select {
    border-radius: 10px;
    border: 1px solid #ccc;
    padding: 0.4rem 0.7rem;
    font-size: 0.9rem;
    background: #fff;
    box-shadow: var(--shadow);
}

.filter-toggle-mobile {
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 0.4rem 0.7rem;
    background: #fff;
    box-shadow: var(--shadow);
    font-weight: 500;
    display: none;
}

@media (max-width: 991px) {
    .filter-toggle-mobile {
        display: inline-flex;
        align-items: center;
        gap: 0.3rem;
    }
}

/* === MODELS GRID === */
.models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.4rem;
}

.model-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: 0.25s ease;
}

.model-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.img-box {
    aspect-ratio: 1/1;
    background: #f1f1f1;
    overflow: hidden;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.model-card:hover img {
    transform: scale(1.06);
}

.model-card .content {
    padding: 0.9rem 1rem 1rem;
}

.model-card .title {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.badge-platform {
    background: #eef2ff;
    color: #3b5bdb;
    font-size: 0.75rem;
    border-radius: 6px;
}

.badge-free {
    background: #e7f8ee;
    color: #118b35;
}

.badge-paid {
    background: #fff4e5;
    color: #c77a00;
}

/* === PAGINATION === */
.pagination {
    display: flex;
    gap: 0.3rem;
}

.page-item .page-link {
    color: #333;
    border-radius: 8px;
    border: none;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.page-item.active .page-link {
    background: var(--brand);
    color: #fff;
}

.page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* === FOOTER === */
.footer {
    box-shadow: 0 -1px 6px rgba(0, 0, 0, 0.05);
}

.footer-link {
    color: #444;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s;
}

.footer-link:hover {
    color: var(--brand);
}

.aurix-link {
    color: var(--brand);
    transition: color 0.25s ease;
}

.aurix-link:hover {
    color: #0056c4;
    text-shadow: 0 0 10px rgba(0, 122, 255, 0.3);
}

.footer p {
    max-width: 480px;
    margin: 0 auto;
}

/* ==============================
   RESPONSIVE FIXES
   ============================== */

@media (max-width: 991px) {

    /* === NAVBAR === */
    .navbar {
        padding: 0.6rem 0.5rem;
    }

    .navbar-toggler {
        border: 1.5px solid #ccc;
        border-radius: 8px;
        padding: 4px 8px;
    }

    .navbar-collapse {
        background: transparent !important;
        box-shadow: none !important;
        padding: 0.5rem 0 !important;
    }

    .navbar-nav {
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.05);
        padding: 0.8rem 1rem;
    }

    .navbar-nav .nav-link {
        padding: 0.55rem 0;
        border-bottom: 1px solid #f3f3f3;
    }

    .navbar-nav .nav-link:last-child {
        border-bottom: none;
    }

    .navbar .btn-icon {
        width: 42px;
        height: 42px;
    }

    .navbar .d-flex.gap-2 {
        margin-top: 0.8rem;
        justify-content: center;
    }

    /* === LAYOUT === */
    .content-wrapper {
        flex-direction: column;
        gap: 1.2rem;
    }

    .sidebar {
        width: 100%;
        padding: 1.2rem;
        border-radius: 12px;
    }

    /* Boşluk hatasını kaldır */
    .sidebar:not(:has(#filterCollapse.show)) {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        box-shadow: none;
        background: transparent;
    }

    /* Filtre collapse içeriği */
    #filterCollapse {
        background: #fff;
        box-shadow: var(--shadow);
        border-radius: var(--radius);
        padding: 1.2rem;
        margin-top: 0.8rem;
    }

    /* MODELS */
    .models-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
    }

    /* Sort bar mobil */
    .sort-bar {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.5rem;
    }
}

@media (max-width: 575px) {
    .models-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .model-card .title {
        font-size: 0.85rem;
    }

    .navbar-brand {
        font-size: 1.15rem;
    }
}
.sort-select {
  margin-left: auto; /* sağa yasla */
}

/* Ads kart stili */
.ad-card {
  border: 2px dashed #bbb;
  border-radius: var(--radius);
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  color: #777;
  transition: 0.25s;
}

.ad-card:hover {
  background: #f9fafb;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
}


.models-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
/* === RESPONSIVE FIXES (MOBILE OPTIMIZATION) === */

/* Mobilde sidebar boşluk bırakmasın */
@media (max-width: 991px) {
  .sidebar {
    width: 100%;
    padding: 0;
    background: transparent;
    box-shadow: none;
    border: none;
    margin: 0 !important;
  }

  /* Filtre collapse kapalıyken tamamen gizle */
  .sidebar:not(:has(#filterCollapse.show)) {
    display: none !important;
  }

  /* Filtre butonu üstten çıksın */
  .filter-toggle-mobile {
    display: inline-flex !important;
    align-items: center;
    gap: 0.3rem;
    margin-bottom: 0.6rem;
  }

  /* Mobilde model kartları 2 sütun */
  .models-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1rem !important;
  }

  /* Model başlık boyutunu küçült */
  .model-card .title {
    font-size: 0.85rem;
  }
}
/* === NAVBAR FIXES === */

/* Logo rengi siyah olacak, hover ile değişmesin */
.navbar-brand {
  color: #000 !important;
  transition: color 0.25s ease;
}

.navbar-brand:hover {
  color: var(--brand) !important; /* hover'da mavi olabilir istersen, tamamen sabit istiyorsan #000 bırak */
}

/* Search alanı genişletildi (menü bitimi ile dil seçeneği arası) */
@media (min-width: 992px) {
  .navbar .search-box {
    flex: 1; /* otomatik genişle */
    max-width: none !important;
    margin: 0 1rem;
  }

  .navbar .search-box input {
    width: 100%;
    padding-left: 40px;
  }

  .navbar .search-box i {
    left: 14px;
  }

  /* Butonlar sağda kalmaya devam etsin */
  .navbar .d-flex.gap-2 {
    flex-shrink: 0;
  }
}
/* === MODEL DETAIL PAGE === */
.model-detail-card img {
  border-radius: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.model-detail-card ul li {
  margin-bottom: 6px;
  color: #555;
}

.ad-card-large {
  background: #fff;
  border: 2px dashed #ccc;
  border-radius: 14px;
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  min-height: 400px;
}

/* Similar Models */
.similar-models .model-card {
  transition: 0.25s;
}

.similar-models .model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
}



/* === DARK MODE FIX === */
body.dark-mode {
  --bg: #0d0f12;
  --ink: #f2f5fa;
  --brand: #0094ff;
  --card-bg: #171a1f;
  --shadow: 0 3px 12px rgba(0, 0, 0, 0.4);
}

/* Navbar */
body.dark-mode .navbar {
  background: #121418 !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

body.dark-mode .navbar-brand {
  color: #ffffff !important;
}

body.dark-mode .navbar-brand:hover {
  color: var(--brand) !important;
}

body.dark-mode .nav-link {
  color: #d1d1d1 !important;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
  color: var(--brand) !important;
}

/* Hero */
body.dark-mode .hero {
  background: linear-gradient(180deg, #15171b 0%, #0f1115 100%);
}

body.dark-mode .hero h1 {
  color: #fff;
}

body.dark-mode .hero p {
  color: #ccc;
}

body.dark-mode .hero-search input {
  background: #1e2126;
  color: #fff;
  border: 1px solid #333;
}

body.dark-mode .hero-search i {
  color: #aaa;
}

/* Model Cards */
body.dark-mode .model-card {
  background: var(--card-bg);
  color: var(--ink);
}

body.dark-mode .badge-platform {
  background: #2a2f36;
  color: #aad4ff;
}

body.dark-mode .badge-free {
  background: #153d24;
  color: #66ff99;
}

body.dark-mode .badge-paid {
  background: #3c2b10;
  color: #ffb74d;
}

/* Platforms */
body.dark-mode .platforms {
  background: #181a1f;
  box-shadow: none;
}

body.dark-mode .platform-logo span {
  color: #ddd;
}

body.dark-mode .platform-logo img {
  filter: brightness(0.9);
}

/* Footer */
body.dark-mode footer.footer {
  background: #121418;
  color: #ccc;
  box-shadow: none;
}

body.dark-mode footer h5 {
  color: #fff;
}

body.dark-mode .footer-link {
  color: #ccc;
}

body.dark-mode .footer-link:hover {
  color: var(--brand);
}

body.dark-mode .aurix-link {
  color: var(--brand);
}

body.dark-mode .btn-icon {
  background: #1c1f25;
  border-color: #333;
  color: #ddd;
}

body.dark-mode .btn-icon:hover {
  background: #23272f;
  color: #fff;
}

/* === DARK MODE - HERO SEARCH === */
body.dark-mode .hero-search {
  background: transparent;
}

body.dark-mode .hero-search input {
  background: #1c1f25;
  color: #e5e8ec;
  border: 1px solid #333;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
}

body.dark-mode .hero-search input::placeholder {
  color: #999;
}

body.dark-mode .hero-search i {
  color: #aaa;
}

body.dark-mode .hero h1,
body.dark-mode .hero p {
  color: #f2f5fa;
}


/* === FOOTER BASE === */
footer.footer {
  background: #fff;
  border-top: 1px solid #eaeaea;
  color: #333;
  transition: background 0.3s ease, color 0.3s ease;
}

footer.footer .site-name {
  color: var(--brand);
}

footer.footer .footer-desc {
  color: #555;
}

footer.footer .footer-link {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

footer.footer .footer-link:hover {
  color: var(--brand);
}

/* === DARK MODE FOOTER === */
body.dark-mode footer.footer {
  background: #0c0e10;
  border-top: 1px solid #1b1f24;
  color: #e7edf5;
}

body.dark-mode footer.footer .site-name {
  color: #ffffff;
}

body.dark-mode footer.footer .footer-desc {
  color: #cfd6de;
}

body.dark-mode footer.footer .footer-link {
  color: #9fc6ff;
}

body.dark-mode footer.footer .footer-link:hover {
  color: #58aaff;
  text-shadow: 0 0 6px rgba(88, 170, 255, 0.5);
}

body.dark-mode footer.footer .aurix-link {
  color: #7abaff;
}

body.dark-mode footer.footer .aurix-link:hover {
  color: #4da7ff;
}
/* === DARK MODE SIDEBAR === */
body.dark-mode .sidebar {
  background: #0d0f12;
  border: 1px solid #1b1f24;
  color: #e7edf5;
}

body.dark-mode .sidebar h6,
body.dark-mode .sidebar .filter-title {
  color: #fff;
}

body.dark-mode .sidebar .form-check-label {
  color: #d0d7e0;
}

body.dark-mode .sidebar .form-check-input {
  background-color: #121418;
  border-color: #2b2f35;
}

body.dark-mode .sidebar .form-check-input:checked {
  background-color: var(--brand);
  border-color: var(--brand);
}

body.dark-mode .sidebar .btn-outline-dark {
  color: #d0d7e0;
  border-color: #444a52;
  background: #0f1115;
}

body.dark-mode .sidebar .btn-outline-dark.active,
body.dark-mode .sidebar .btn-outline-dark:hover {
  background-color: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

body.dark-mode .sidebar .btn-apply {
  background-color: var(--brand);
  color: #fff;
}

body.dark-mode .sidebar .btn-apply:hover {
  background-color: #005bd1;
}

/* === DARK MODE FILTER AD SLOT === */
body.dark-mode .sidebar .ad-slot {
  border: 1px dashed #3a3f46;
  color: #9ea7b2;
  background: #13161b;
}

/* === DARK MODE STATS GRID === */
body.dark-mode .stats-card {
  background: #0d0f12;
  border: 1px solid #1c1f24;
  color: #e7edf5;
  box-shadow: 0 2px 4px rgba(0,0,0,0.25);
}

body.dark-mode .stats-card i {
  color: var(--brand);
}

body.dark-mode .stats-card .fw-semibold {
  color: #d0d7e0;
}

/* === DARK MODE SORT BAR === */
body.dark-mode .sort-bar {
  background: #0f1115;
  border: 1px solid #1b1f24;
  color: #e7edf5;
}

body.dark-mode .sort-bar .filter-toggle-mobile {
  color: #e7edf5;
  background: #13161b;
  border: 1px solid #2a2f35;
}

body.dark-mode .sort-bar .filter-toggle-mobile:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

body.dark-mode .sort-bar .sort-select {
  background: #0d0f12;
  border: 1px solid #2a2f35;
  color: #e7edf5;
}

/* === DARK MODE PAGINATION === */
body.dark-mode .pagination .page-link {
  background: #0f1115;
  border-color: #1c1f24;
  color: #e7edf5;
}

body.dark-mode .pagination .page-link:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

body.dark-mode .pagination .active .page-link {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* === DARK MODE FOOTER TEXTS OVERRIDE (for muted areas) === */
body.dark-mode .text-muted {
  color: #c8d0da !important;
}

/* === DARK MODE – ADD MODELS PAGE === */
body.dark-mode .upload-card {
  background: #0d0f12;
  border: 1px solid #1b1f24;
  color: #e7edf5;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

body.dark-mode .accordion-item {
  background: #0f1115;
  border: 1px solid #2a2f35;
  color: #e7edf5;
  border-radius: 10px;
}

body.dark-mode .accordion-button {
  background: #0f1115;
  color: #e7edf5;
  border-bottom: 1px solid #1c1f24;
}

body.dark-mode .accordion-button:not(.collapsed) {
  background: #121417;
  color: #fff;
  box-shadow: inset 0 -1px 0 #1c1f24;
}

body.dark-mode .accordion-button.collapsed {
  background: #0f1115;
}

body.dark-mode .accordion-body {
  background: #101215;
  border-top: 1px solid #1b1f24;
}

body.dark-mode .form-control,
body.dark-mode textarea {
  background: #0f1115;
  color: #e7edf5;
  border: 1px solid #2a2f35;
}

body.dark-mode .form-control:focus,
body.dark-mode textarea:focus {
  background: #13161b;
  border-color: var(--brand);
  box-shadow: 0 0 0 0.15rem rgba(0,122,255,0.3);
  color: #fff;
}

body.dark-mode .form-label {
  color: #cfd6de;
}

body.dark-mode .btn-submit {
  background: var(--brand);
  color: #fff;
  border: none;
}

body.dark-mode .btn-submit:hover {
  background: #005bd1;
}

body.dark-mode .text-muted {
  color: #b7bec7 !important;
}

body.dark-mode .bi-info-circle {
  color: var(--brand);
}

/* Accordion divider softness */
body.dark-mode .accordion-button::after {
  filter: invert(1) brightness(0.8);
}

/* === DARK MODE PLACEHOLDER COLOR FIX === */
body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: #9aa4b1 !important; /* açık gri - yüksek kontrast */
  opacity: 1; /* Firefox'ta da görünür kalsın */
}

/* Odaklandığında biraz daha belirgin */
body.dark-mode input:focus::placeholder,
body.dark-mode textarea:focus::placeholder {
  color: #b9c2cd !important;
}

/* === DARK MODE - ABOUT PAGE === */

/* HERO SECTION */
body.dark-mode .about-hero {
  background: linear-gradient(180deg, #0c0f13 0%, #101317 100%);
  color: #e7edf5;
  border-bottom: 1px solid #1b1f24;
  text-align: center;
  padding: 3rem 1rem 2.5rem;
}

body.dark-mode .about-hero h1 {
  color: #fff;
  font-weight: 700;
  text-shadow: 0 0 10px rgba(0, 122, 255, 0.15);
}

body.dark-mode .about-hero p {
  color: #c0c7d0;
  max-width: 720px;
  margin: 1rem auto 0;
  font-size: 1.05rem;
  line-height: 1.6;
}

/* INFO CARDS */
body.dark-mode .info-card {
  background: #0f1115;
  border: 1px solid #2a2f35;
  border-radius: 14px;
  padding: 1.5rem 1.2rem;
  color: #e7edf5;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.35);
  transition: 0.3s ease;
}

body.dark-mode .info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 122, 255, 0.25);
  border-color: var(--brand);
}

body.dark-mode .info-card i {
  font-size: 1.8rem;
  color: var(--brand);
  margin-bottom: 0.5rem;
}

body.dark-mode .info-card h6 {
  color: #fff;
  font-weight: 600;
}

body.dark-mode .info-card p {
  color: #aeb7c2;
}

/* CTA SECTION */
body.dark-mode .cta-section {
  background: linear-gradient(180deg, #101317 0%, #0b0d10 100%);
  border: 1px solid #1a1d22;
  border-radius: 14px;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #e7edf5;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

body.dark-mode .cta-section h3 {
  color: #fff;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

body.dark-mode .cta-section p {
  color: #c0c7d0;
  margin-bottom: 1.4rem;
}

body.dark-mode .cta-section .btn-cta {
  background: var(--brand);
  color: #fff;
  border-radius: 10px;
  font-weight: 500;
  padding: 0.7rem 1.5rem;
  transition: 0.3s;
}

body.dark-mode .cta-section .btn-cta:hover {
  background: #005bd1;
  box-shadow: 0 0 12px rgba(0, 122, 255, 0.35);
}

body.dark-mode .cta-section i {
  margin-right: 0.4rem;
}
/* === Mobil Menü Dark Mode Fix === */
@media (max-width: 992px) {

  /* Menü iconu (hamburger/close) */
  .navbar-toggler {
    border: none;
    background: transparent !important;
  }
  .navbar-toggler-icon {
    filter: brightness(100%) invert(1); /* dark modda beyaz ikon */
    transition: filter 0.3s ease;
  }
  html[data-theme='light'] .navbar-toggler-icon {
    filter: none; /* light modda normal */
  }

  /* Açılan menü kartı */
  .offcanvas,
  .mobile-menu,
  .navbar-collapse {
    background-color: var(--bg-dark, #121212);
    color: var(--ink-light, #fff);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
  }
  html[data-theme='light'] .offcanvas,
  html[data-theme='light'] .mobile-menu,
  html[data-theme='light'] .navbar-collapse {
    background-color: #fff;
    color: #000;
  }

  /* Menü linkleri */
  .navbar-nav .nav-link {
    color: var(--ink-light, #f5f5f5) !important;
    padding: 12px 16px;
    font-weight: 500;
    border-radius: 8px;
    transition: background 0.3s, color 0.3s;
  }
  .navbar-nav .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  html[data-theme='light'] .navbar-nav .nav-link {
    color: #111 !important;
  }
  html[data-theme='light'] .navbar-nav .nav-link:hover {
    background: rgba(0, 0, 0, 0.05);
  }

  /* Dil butonu veya ekstra ikonlar */
  .nav-lang,
  .theme-toggle {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
  }
  html[data-theme='light'] .nav-lang,
  html[data-theme='light'] .theme-toggle {
    color: #000 !important;
    background: rgba(0, 0, 0, 0.05);
  }
}
/* === DARK MODE - NAVBAR TOGGLER ICON (bi-list) === */
body.dark-mode .navbar-toggler {
  border: 1px solid #2a2f35 !important;
  background: #1a1d22 !important;
  border-radius: 8px;
  padding: 6px 10px;
  transition: 0.3s;
}

body.dark-mode .navbar-toggler i {
  color: #e7edf5 !important;
  transition: color 0.3s ease, transform 0.3s ease;
}

body.dark-mode .navbar-toggler:hover {
  background: var(--brand) !important;
  border-color: var(--brand) !important;
}

body.dark-mode .navbar-toggler:hover i {
  color: #fff !important;
  transform: rotate(90deg);
}
.search-suggest {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  display: none;
  z-index: 9999;
}
.suggest-item:hover { background: #f8f9fa; }
body.dark-mode .search-suggest { background: #1e1e1e; }
body.dark-mode .suggest-item:hover { background: #2a2a2a; }
