/*
Theme Name: gruply.co
Theme URI: https://gruply.co
Author: gruply.co
Description: gruply.co - Optimized & Cleaned
Version: 6.2
*/

/* =========================================
   1. TEMEL AYARLAR & DEĞİŞKENLER
   ========================================= */

:root {
    --bg-body: #ffffff;
    --bg-gray: #F0F2F5; /* WhatsApp Grisi */
    --color-brand: #25D366; /* WhatsApp Ana Yeşili */
    --color-brand-dark: #128C7E; /* Koyu Yeşil (Tıklama rengi) */
    --color-text-main: #111b21; /* WhatsApp Siyahı */
    --color-text-sub: #41525d;
    --border-color: #e9edef;
    --radius: 12px;
    --header-height: 70px;
}

* { box-sizing: border-box; }

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--color-text-main);
    background: linear-gradient(180deg, rgba(255, 51, 102, 0.08) 0%, rgba(255, 255, 255, 0) 500px);
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a { text-decoration: none; color: inherit; transition: 0.2s; }
ul { list-style: none; padding: 0; margin: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; letter-spacing: -0.02em; }
p { margin: 0; line-height: 1.5; }

.max-w-container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* =========================================
   2. HEADER & NAVİGASYON
   ========================================= */

/* Admin Bar Düzeltmesi */
body.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) { body.admin-bar .site-header { top: 46px; } }

/* ============================================================
   WHATSAPP DÖNÜŞÜM YAMASI & DÜZELTMELER (BUNU EN ALTA EKLEYİN)
   ============================================================ */

/* 1. ARKA PLAN GRADYANI (Pembe yerine Yeşil) */
body {
    background: linear-gradient(180deg, rgba(37, 211, 102, 0.08) 0%, rgba(255, 255, 255, 0) 500px) no-repeat !important;
}

/* 2. PEMBE BUTONLARI YEŞİLE ÇEVİR */
.gh-btn-pink, 
.btn-login-pink, 
.submit-btn, 
.btn-contact-submit, 
.btn-cat-join,
.cat-pagination .page-numbers.current,
.search-btn {
    background-color: var(--color-brand) !important;
    color: #fff !important;
}

.gh-btn-pink:hover, 
.btn-login-pink:hover, 
.submit-btn:hover, 
.btn-contact-submit:hover, 
.btn-cat-join:hover {
    background-color: var(--color-brand-dark) !important;
}

/* 3. PEMBE ETİKETLERİ YEŞİLE ÇEVİR */
.tag-pill-pink {
    background-color: #F0FFF4 !important; /* Açık Yeşil */
}
.tag-pill-pink span {
    color: var(--color-brand-dark) !important;
}

/* 4. ONLINE SAYACI DÜZELTMESİ (Kutu İçine Al) */
.online-counter-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    background-color: #F0FFF4 !important;
    border: 1px solid #25D366 !important;
    padding: 6px 14px;
    border-radius: 50px;
    margin-right: 15px;
    font-size: 13px;
    font-weight: 700;
    color: #075E54 !important;
    white-space: nowrap;
    line-height: 1;
}
.live-dot {
    background-color: #25D366 !important;
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    animation: pulse-green 2s infinite;
}
@keyframes pulse-green {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(37, 211, 102, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}



/* 7. İKON VE METİN RENKLERİ */
.cat-name:hover, a:hover { color: var(--color-brand-dark) !important; }
.cat-sidebar svg, .cat-sidebar svg path { stroke: var(--color-brand) !important; }
.meta-item.star-rating svg { fill: #FFD700 !important; color: #FFD700 !important; } /* Yıldız sarı kalsın */

.site-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    z-index: 1001; /* Menü butonunun çalışması için */
    background: transparent;
    padding: 10px 0;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

/* Menü Açıldığında Header Sabitleme */
body.menu-is-open .site-header {
    position: fixed !important;
    top: 0 !important; left: 0 !important; width: 100% !important;
    background-color: #ffffff !important;
    box-shadow: 0 1px 0 rgba(0,0,0,0.05);
    z-index: 10000 !important; /* En üstte */
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.header-left-group {
    display: flex; align-items: center; gap: 40px;
}

/* Logo */
.logo-area { display: flex; align-items: center; }
.logo-area img, .custom-logo-link img, .custom-logo {
    max-height: 42px !important;
    width: auto !important;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

/* Masaüstü Menü */
.desktop-nav .nav-links-desktop { display: flex; gap: 24px; }
.desktop-nav .nav-links-desktop li a {
    font-weight: 600; font-size: 16px; color: var(--color-text-main); opacity: 0.8;
}
.desktop-nav .nav-links-desktop li a:hover { opacity: 1; color: var(--color-brand); }

/* Header Sağ Alan */
.header-right-area { display: flex; align-items: center; gap: 16px; }

.header-user-icon {
    display: flex; align-items: center; justify-content: center;
    color: #1a202c; width: 32px; height: 32px;
}
.header-user-icon svg { width: 26px; height: 26px; }

/* Giriş Butonu */
.btn-login-pink {
    display: inline-flex; align-items: center; justify-content: center;
    height: 42px; padding: 0 24px;
    background-color: var(--color-brand);
    color: #ffffff !important;
    font-weight: 700; font-size: 15px;
    border-radius: 8px; line-height: 1;
}
.btn-login-pink:hover { opacity: 0.9; transform: translateY(-1px); }

/* Header Arama (Orta) */
.header-search-mid { width: 260px; margin-right: 10px; }
.hs-form { position: relative; width: 100%; }
.hs-input {
    width: 100%; height: 40px;
    background-color: #F7FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 8px;
    padding: 0 40px 0 15px;
    font-size: 14px; color: #1a202c; font-weight: 500;
    outline: none; transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
}
.hs-input:focus {
    background-color: #fff; border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}
.hs-btn {
    position: absolute; right: 5px; top: 50%; transform: translateY(-50%);
    background: transparent; border: none; color: #A0AEC0;
    cursor: pointer; padding: 6px; display: flex; align-items: center; justify-content: center;
}
.hs-btn:hover { color: var(--color-brand); }

/* =========================================
   3. MOBİL MENÜ (ROBUST & CLEAN)
   ========================================= */

/* Hamburger Buton */
.mobile-menu-toggle {
    display: none; /* Mobilde flex olacak */
    width: 40px; height: 40px;
    background: transparent; border: none; padding: 0;
    cursor: pointer; align-items: center; justify-content: center;
    position: relative; z-index: 1002;
}

.hamburger-box { width: 24px; height: 18px; display: inline-block; position: relative; }
.hamburger-inner {
    display: block; top: 50%; margin-top: -1px;
    width: 24px; height: 2px; background-color: #1a202c; border-radius: 2px;
    position: absolute; transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger-inner::before, .hamburger-inner::after {
    content: ""; display: block; width: 24px; height: 2px;
    background-color: #1a202c; border-radius: 2px; position: absolute;
    transition: transform 0.2s cubic-bezier(0.645, 0.045, 0.355, 1);
}
.hamburger-inner::before { top: -7px; }
.hamburger-inner::after { bottom: -7px; }

/* Menü Açılınca Çarpı (X) Animasyonu */
body.menu-is-open .hamburger-inner { background-color: transparent !important; }
body.menu-is-open .hamburger-inner::before { transform: translateY(7px) rotate(45deg); }
body.menu-is-open .hamburger-inner::after { transform: translateY(-7px) rotate(-45deg); }

/* Tam Ekran Overlay */
.fullscreen-mobile-menu {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-color: #ffffff; /* Kesin Beyaz */
    z-index: 1000; /* Header altında */
    padding-top: 100px; /* GÜNCELLENDİ: 80px -> 120px yapıldı, daha aşağıdan başlar */
    opacity: 0; visibility: hidden; pointer-events: none;
    transform: translateY(15px);
    transition: all 0.3s ease-in-out;
}
.mobile-menu-overlay { display: none !important; } /* Eski sınıfı iptal et */

body.menu-is-open .fullscreen-mobile-menu {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}

/* Menü İçerik */
.fmm-container {
    height: 100%; width: 100%;
    overflow-y: auto; -webkit-overflow-scrolling: touch;
    padding: 10px 24px 100px 24px;
}
.fmm-list li { border-bottom: 1px solid #f7f7f7; }
.fmm-list li a {
    display: block; padding: 16px 0;
    font-size: 18px; font-weight: 700; color: #1a202c;
}
.fmm-list li a:hover { color: var(--color-brand); padding-left: 5px; }
.fmm-divider { height: 1px; background: #eee; margin: 25px 0; }
.fmm-section { margin-bottom: 30px; }
.fmm-title { font-size: 11px; font-weight: 800; color: #A0AEC0; text-transform: uppercase; margin-bottom: 15px; letter-spacing: 1px; }
.fmm-sub-list li { margin-bottom: 10px; }
.fmm-sub-list li a { font-size: 15px; color: #4A5568; font-weight: 600; }

body.menu-is-open { overflow: hidden; }

/* Menü Açıkken İçerik Z-Index Ayarı (Çakışma Önleyici) */
body.menu-is-open .max-w-container,
body.menu-is-open .hero-section,
body.menu-is-open .cat-layout-grid, 
body.menu-is-open footer {
    z-index: 0 !important; position: static !important;
}

/* =========================================
   4. ANASAYFA & HERO ALANI
   ========================================= */
.hero-section {
    margin-top: 120px !important; 
    margin-bottom: 50px;
    position: relative; z-index: 1;
}

.hero-main-title {
    text-align: left;
    font-size: 35px; font-weight: 800; color: #1a202c;
    margin-top: 0; margin-bottom: 40px;
    line-height: 1.2; letter-spacing: -0.02em; padding: 0;
}

/* Anasayfa Arama */
.search-wrapper { position: relative; width: 100%; margin-bottom: 25px; }
.search-input {
    width: 100%; background-color: rgba(240, 240, 240, 0.6);
    border: 1px solid transparent; padding: 18px 24px; border-radius: var(--radius);
    font-size: 17px; font-family: 'Manrope', sans-serif; outline: none; transition: all 0.2s;
}
.search-input:focus { background-color: #fff; box-shadow: 0 0 0 2px var(--color-brand); }
.search-btn {
    position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
    background-color: var(--color-brand); color: white;
    width: 44px; height: 44px; border-radius: 6px; border: none;
    display: flex; align-items: center; justify-content: center; cursor: pointer;
}

/* Etiketler ve Kategoriler */
.quick-tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 30px; }
.tag-pill-pink {
    background-color: rgba(255, 51, 102, 0.1); color: var(--color-text-main);
    padding: 8px 14px; border-radius: 6px; font-size: 14px; font-weight: 700;
    display: inline-flex; align-items: center;
}
.tag-pill-pink span { color: var(--color-brand); margin-right: 5px; }

.section-title { font-size: 24px; font-weight: 800; margin-bottom: 6px; margin-top: 0; color: #1a202c; }
.section-desc { font-size: 15px; color: var(--color-text-sub); margin-bottom: 16px; font-weight: 500; }

.popular-cats-container, .all-cats-wrapper {
    background-color: var(--bg-gray); border-radius: var(--radius); padding: 15px;
    display: flex; flex-wrap: wrap; gap: 10px; border: 1px solid var(--border-color);
}
.cat-card-rect {
    flex: 1; min-width: fit-content; padding: 12px 20px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 15px; transition: 0.2s; white-space: nowrap; color: var(--color-text-main);
}
.cat-card-rect:hover { background-color: rgba(0,0,0,0.05); }

.all-cats-section { margin-top: 40px; margin-bottom: 15px !important; }
.cat-pill {
    background-color: #fff; border: 1px solid var(--border-color); padding: 8px 16px;
    border-radius: 6px; font-size: 14px; font-weight: 700; color: var(--color-text-main);
    display: inline-flex; align-items: center; transition: all 0.2s;
    
    /* YENİ EKLENENLER: Kutuyu tam doldurması için */
    flex: 1;                  /* Bulunduğu satırdaki boşluğu kapla */
    justify-content: center;  /* Yazıyı butonun içinde ortala */
    min-width: fit-content;   /* Yazı sığmıyorsa butonu küçültme */
    text-align: center;
}
.cat-pill:hover { transform: translateY(-2px); box-shadow: 0 4px 6px rgba(0,0,0,0.05); }

.cat-card-rect .cat-count, .cat-pill .count {
    margin-left: 8px; font-weight: 500; font-size: 0.9em; color: #718096; opacity: 0.9;
}

/* =========================================
   5. LAYOUT GRID & KART TASARIMI
   ========================================= */
.cat-layout-grid {
    display: grid; grid-template-columns: 1fr; gap: 30px;
    align-items: start; margin-top: 40px !important; margin-bottom: 60px;
}
@media (min-width: 1024px) {
    .cat-layout-grid { grid-template-columns: 2.5fr 1fr; }
}

.cat-header {
    margin-bottom: 25px !important; padding-bottom: 10px !important;
    border-bottom: 1px solid #E2E8F0;
}
.cat-title { font-size: 28px; font-weight: 800; color: var(--color-text-main); margin-bottom: 10px; }
.cat-desc { color: var(--color-text-sub); font-size: 16px; }

.cat-items-wrapper { display: flex; flex-direction: column; gap: 15px; }

/* Kart Tasarımı */
.cat-card {
    background-color: #f2f3f5; border-radius: 12px; padding: 20px;
    display: flex; gap: 20px; transition: all 0.2s ease;
    border: 1px solid transparent; position: relative; align-items: flex-start;
}
.cat-card:hover {
    background-color: #ffffff; border-color: #e2e8f0;
    transform: translateY(-3px); box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.cat-card-logo { flex-shrink: 0; width: 80px; height: 80px; }
.cat-logo-img, .cat-logo-placeholder {
    width: 100%; height: 100%; border-radius: 50%; object-fit: cover;
    background: #fff; box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.cat-card-info { flex: 1; display: flex; flex-direction: column; }
.cat-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 2px; }
.cat-name {
    font-size: 18px; font-weight: 800; color: #000; text-decoration: none; line-height: 1.3;
}
.cat-name:hover { text-decoration: underline; }

/* Masaüstü Kart Düzeni */
@media (min-width: 769px) {
    .cat-card-info { gap: 0 !important; justify-content: flex-start !important; padding-top: 5px !important; }
    .cat-card-top { margin-bottom: 0 !important; padding-bottom: 0 !important; align-items: center !important; min-height: auto !important; }
    .cat-name { margin: 0 !important; padding: 0 !important; line-height: 1 !important; display: inline-block; }
    .cat-meta-row { margin-top: 4px !important; padding-top: 0 !important; }
}

/* Butonlar */
.cat-actions-desktop { display: none; align-items: center; gap: 10px; }
@media (min-width: 768px) { .cat-actions-desktop { display: flex; } }

.btn-cat-view { background-color: #D0D3D8; color: #1a202c; padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 13px; transition: 0.2s; }
.btn-cat-view:hover { background-color: #c1c4c9; color: #000; }

.btn-cat-vote {
    background: transparent; color: #1a202c; border: 1px solid #1a202c;
    padding: 7px 15px; border-radius: 6px; font-weight: 700; font-size: 13px;
    display: flex; align-items: center; gap: 5px; cursor: pointer;
}
.btn-cat-vote:hover { background-color: #1a202c; color: #fff; }

.btn-cat-join {
    background-color: var(--color-brand); color: #ffffff !important;
    padding: 8px 16px; border-radius: 6px; font-weight: 700; font-size: 13px;
    transition: 0.2s; text-decoration: none; display: inline-flex; align-items: center; justify-content: center;
}
.btn-cat-join:hover { background-color: #e02e5a; transform: translateY(-1px); }

/* Meta Bilgileri */
.cat-meta-row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
.meta-item { display: flex; align-items: center; gap: 4px; font-size: 13px; font-weight: 700; color: #4A5568; }
.meta-item.star-rating svg { color: var(--color-brand); width: 14px; height: 14px; }
.cat-tags { display: flex; gap: 6px; }
.mini-tag { background: #E2E8F0; color: #4A5568; font-size: 11px; padding: 3px 8px; border-radius: 4px; font-weight: 600; }

.cat-short-desc {
    font-size: 14px; color: #4A5568; line-height: 1.5; margin: 0;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* =========================================
   6. SIDEBAR & FİLTRELER
   ========================================= */
.cat-sidebar {
    position: sticky; top: 100px;
    display: flex; flex-direction: column; gap: 12px; margin-top: 60px !important;
}
@media (min-width: 1024px) {
    .cat-sidebar-col {
        width: 300px !important; flex-shrink: 0 !important; margin-top: 87px !important;
        position: sticky !important; top: 40px !important; height: fit-content !important;
    }
}

.sidebar-header-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px !important; }
.sidebar-header-row h4 { font-size: 18px; font-weight: 700; margin: 0 !important; color: #000; line-height: 1.2; }
.btn-reset { font-size: 13px; color: #000; font-weight: 600; cursor: pointer; }
.btn-reset:hover { text-decoration: underline; }

/* İKON RENKLERİ (TÜMÜ) */
.cat-sidebar svg, .cat-sidebar svg path, .cat-sidebar svg rect, .cat-sidebar svg polyline, .cat-sidebar svg line, .cat-sidebar svg circle {
    stroke: var(--color-brand) !important; color: var(--color-brand) !important;
}
.cat-sidebar svg[fill]:not([fill="none"]), .cat-sidebar svg *[fill]:not([fill="none"]) {
    fill: var(--color-brand) !important;
}

/* Dropdown */
.custom-dropdown { position: relative; width: 100%; font-family: 'Manrope', sans-serif; }
.dropdown-trigger {
    background-color: #E5E7EB; border-radius: 8px; padding: 12px 16px;
    display: flex; align-items: center; justify-content: space-between;
    cursor: pointer; font-weight: 600; font-size: 15px; color: #000;
    border: 1px solid transparent; transition: all 0.2s;
}
.dropdown-trigger:hover { background-color: #d1d5db; }
.dropdown-trigger:hover svg, .dropdown-item:hover svg { stroke: var(--color-brand) !important; }

.dropdown-menu {
    position: absolute; top: 110%; left: 0; width: 100%;
    background: #fff; border: 1px solid #E5E7EB; border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1); padding: 8px;
    z-index: 50; display: none; opacity: 0; transform: translateY(-10px); transition: all 0.2s ease;
}
.dropdown-menu.show { display: block; opacity: 1; transform: translateY(0); }

.dropdown-item {
    display: flex; align-items: center; gap: 12px; padding: 10px 12px;
    border-radius: 6px; color: #374151; font-weight: 600; font-size: 14px;
    text-decoration: none; transition: 0.2s; cursor: pointer;
}
.dropdown-item:hover { background-color: #F3F4F6; color: #000; }

/* =========================================
   7. SAYFALAMA (PAGINATION)
   ========================================= */
.cat-pagination {
    margin-top: 15px !important; margin-bottom: 0 !important; padding-bottom: 0 !important;
    display: flex; justify-content: center; align-items: center; gap: 8px; flex-wrap: wrap; width: 100%;
}

.cat-pagination .page-numbers {
    display: flex; align-items: center; justify-content: center;
    min-width: 44px; height: 44px; background-color: #fff;
    border: 2px solid #EDF2F7; border-radius: 10px;
    color: #4A5568; font-size: 15px; font-weight: 700;
    text-decoration: none; transition: all 0.2s ease; padding: 0 5px; box-sizing: border-box;
}

.cat-pagination a.page-numbers:hover {
    border-color: var(--color-brand); color: var(--color-brand);
    transform: translateY(-2px); box-shadow: 0 4px 12px rgba(255, 51, 102, 0.15);
}
.cat-pagination .page-numbers.current {
    background-color: var(--color-brand); border-color: var(--color-brand); color: #ffffff;
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.3); cursor: default; pointer-events: none;
}
.cat-pagination .page-numbers.dots {
    border: none; background: transparent; color: #A0AEC0; min-width: auto;
}
.cat-pagination .page-numbers svg { width: 18px; height: 18px; stroke-width: 2.5px; }

/* Footer Boşluk Düzeltme */
.search .max-w-container, .archive .max-w-container, .tax-grup_kategori .max-w-container, .tax-grup_dil .max-w-container {
    margin-bottom: 0px !important;
}

/* =========================================
   8. GRUP DETAY & İNCELEMELER
   ========================================= */
.group-banner { height: 180px; background: linear-gradient(180deg, rgba(255, 51, 102, 0.08) 0%, rgba(255, 255, 255, 0) 100%); width: 100%; }
.gh-wrapper { display: flex; justify-content: space-between; align-items: flex-end; margin-top: -40px; padding-bottom: 25px; position: relative; z-index: 5; }
.gh-left { display: flex; align-items: flex-end; gap: 24px; }
.gh-logo-box { width: 100px; height: 100px; background: #fff; border-radius: 50%; padding: 4px; box-shadow: 0 4px 12px rgba(0,0,0,0.08); flex-shrink: 0; }
.gh-logo-img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.gh-info { padding-bottom: 5px; }
.gh-title { font-size: 32px; font-weight: 800; color: #000; line-height: 1.2; margin: 0 0 5px 0; }
.gh-meta-row { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
.gh-right { display: flex; align-items: center; gap: 12px; padding-bottom: 5px; }

.gh-btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    border-radius: 8px; font-weight: 700; font-size: 15px; cursor: pointer;
    transition: all 0.2s ease; height: 44px; border: none; text-decoration: none; white-space: nowrap;
}
.gh-btn-pink { background-color: var(--color-brand); color: #ffffff !important; padding: 0 28px; }
.gh-btn-pink:hover { background-color: #e02e5a; transform: translateY(-2px); }
.gh-btn-gray { background-color: #E3E5E8; color: #1a202c; padding: 0 24px; }
.gh-btn-icon { background-color: #E3E5E8; color: #1a202c; width: 44px; padding: 0; }

.gh-tabs { display: flex; gap: 30px; border-bottom: 1px solid #E2E8F0; margin-bottom: 30px; }
.gh-tab { padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--color-text-sub); border-bottom: 2px solid transparent; }
.gh-tab.active { color: var(--color-brand); border-bottom-color: var(--color-brand); }

.entity-grid { display: grid; grid-template-columns: 1fr; gap: 60px; padding-bottom: 60px; }
@media (min-width: 1024px) { .entity-grid { grid-template-columns: 2.5fr 1fr; } }

/* İncelemeler */
.review-dashboard-card { display: flex; flex-wrap: wrap; background: #fff; padding: 30px 0; margin-bottom: 40px; border-bottom: 1px solid #E2E8F0; align-items: center; }
.rd-left { flex: 0 0 180px; display: flex; flex-direction: column; justify-content: center; margin-right: 40px; }
.rd-big-score { font-size: 64px; font-weight: 800; line-height: 1; color: #1a202c; margin-bottom: 10px; }
.rd-stars-static { display: flex; gap: 4px; margin-bottom: 8px; color: var(--color-brand); }
.rd-right { flex: 1; min-width: 280px; }
.bar-track { flex: 1; height: 8px; background-color: #EDF2F7; border-radius: 10px; overflow: hidden; margin: 0 12px; }
.bar-fill { height: 100%; background-color: var(--color-brand); border-radius: 10px; }

/* Yorum Formu */
.comment-form { display: flex; flex-wrap: wrap; gap: 20px; }
.comment-form-comment { width: 100%; flex-basis: 100%; }
.comment-form-author, .comment-form-email, .comment-form-rating { flex: 1; min-width: 200px; margin-bottom: 0 !important; }
.comment-form input, .comment-form textarea, .comment-form select {
    width: 100%; padding: 14px 18px; border: 2px solid #EDF2F7; background: #F7FAFC;
    border-radius: 8px; font-size: 15px; color: #2D3748; transition: all 0.3s ease; outline: none;
}
.comment-form input:focus, .comment-form textarea:focus, .comment-form select:focus {
    border-color: var(--color-brand); background-color: #fff; box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}

/* Paylaşım Dropdown */
.share-wrapper { position: relative; display: inline-block; }
.share-dropdown {
    position: absolute; top: 110%; right: 0; width: 220px;
    background: #fff; border-radius: 12px; box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    border: 1px solid #E2E8F0; padding: 8px 0; z-index: 100; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.2s ease;
}
.share-dropdown.active { opacity: 1; visibility: visible; transform: translateY(0); }
.share-item {
    display: flex; align-items: center; gap: 12px; width: 100%; padding: 10px 16px;
    border: none; background: none; text-align: left; font-size: 15px; font-weight: 600; color: #4A5568; cursor: pointer; transition: background 0.2s;
}
.share-item:hover { background-color: #F7FAFC; color: #1a202c; }

/* =========================================
   9. NSFW & FOOTER
   ========================================= */
.nsfw-wrapper { position: relative; overflow: hidden; border-radius: 50%; width: 100%; height: 100%; }
.nsfw-wrapper.is-nsfw img { filter: blur(8px); transform: scale(1.1); transition: all 0.3s ease; }
.nsfw-wrapper.is-nsfw:hover img { filter: blur(0); transform: scale(1); }
.nsfw-badge-overlay, .nsfw-text { display: none !important; }

/* Footer */
.tf-site-footer { border-top: none !important; padding: 0 !important; background: #fff; }
.tf-site-footer .max-w-container {
    border-top: 1px solid var(--border-color); padding-top: 20px !important; padding-bottom: 20px !important;
}
.tf-footer-grid { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .tf-footer-grid { grid-template-columns: 2.5fr 1fr 1fr 1fr 1fr; } }
.tf-link-col ul li a:hover { color: var(--color-brand); }

/* =========================================
   10. MOBİL VE RESPONSIVE AYARLAR (HEPSİ BURADA)
   ========================================= */
.mobile-sort-bar { display: none; }

@media (max-width: 1100px) {
    .header-search-mid { display: none; }
}

@media (max-width: 900px) {
    .desktop-nav { display: none !important; }
    .mobile-menu-toggle { display: flex !important; }
    
    .mobile-hide-btn {
        display: inline-flex !important; height: 36px !important;
        padding: 0 14px !important; font-size: 13px !important; margin-right: 10px;
    }

    /* Sidebar Gizle / Sıralama Göster */
    .cat-sidebar, .cat-sidebar-col { display: none !important; }
    
    .mobile-sort-bar {
        display: flex; align-items: center; justify-content: space-between;
        margin-bottom: 25px; padding-bottom: 15px; border-bottom: 1px solid #f0f0f0;
    }
    .ms-label { font-size: 14px; font-weight: 700; color: #1a202c; }
    .ms-buttons { display: flex; gap: 8px; }
    .ms-btn {
        padding: 6px 12px; border-radius: 6px; font-size: 13px; font-weight: 600;
        color: #718096; background: #F7FAFC; border: 1px solid #EDF2F7; text-decoration: none; transition: 0.2s;
    }
    .ms-btn.active { background: var(--color-brand); color: #fff; border-color: var(--color-brand); }
    .cat-header { margin-bottom: 15px !important; border-bottom: none !important; padding-bottom: 0 !important; }
}

@media (max-width: 768px) {
    .logo-area img, .custom-logo-link img, .custom-logo { max-height: 36px !important; }
    
    .gh-wrapper { flex-direction: column; align-items: center; text-align: center; margin-top: -30px; }
    .gh-left { flex-direction: column; align-items: center; gap: 10px; width: 100%; }
    .gh-meta-row { justify-content: center; }
    .gh-right { width: 100%; margin-top: 20px; justify-content: center; gap: 10px; }
    .gh-btn { flex: 1; }
    .gh-btn-icon { flex: 0 0 44px; }

    .hero-section { margin-top: 90px !important; }
    .hero-main-title { font-size: 25px; margin-bottom: 25px; padding-left: 5px; padding-right: 5px; }

    /* Limitler */
    .quick-tags .tag-pill-pink:nth-child(n+7) { display: none; }
    .popular-cats-container .cat-card-rect:nth-child(n+7) { display: none; }

    /* Mobil Kart Tasarımı (V6) */
    .cat-card {
        display: grid !important; grid-template-columns: 72px 1fr !important;
        grid-template-rows: auto auto auto auto !important; gap: 0 15px !important;
        padding: 16px !important; text-align: left !important; align-items: start !important;
        justify-items: start !important; background: #f8f9fa !important; border: 1px solid #eef0f2 !important;
        flex-direction: row !important;
    }
    .cat-card-info { display: contents !important; }
    .cat-card-logo {
        grid-column: 1 / 2; grid-row: 1 / 3; width: 72px !important; height: 72px !important;
        margin: 0 !important; align-self: center !important;
    }
    .cat-logo-img, .cat-logo-placeholder { width: 100% !important; height: 100% !important; border-radius: 12px !important; margin: 0 !important; }
    
    .cat-card-top {
        grid-column: 2 / 3; grid-row: 1 / 2; display: flex !important; flex-direction: column !important;
        align-items: flex-start !important; justify-content: flex-end !important;
        margin-bottom: 0 !important; min-height: auto !important; width: 100% !important;
    }
    .cat-name {
        font-size: 17px !important; font-weight: 800 !important; color: #1a202c !important;
        line-height: 1.1 !important; margin-top: 6px !important; margin-bottom: 0 !important; text-align: left !important; display: block !important;
    }
    .cat-meta-row {
        grid-column: 2 / 3; grid-row: 2 / 3; display: flex !important; flex-wrap: wrap !important;
        justify-content: flex-start !important; align-items: center !important; align-self: start !important;
        gap: 8px !important; margin-top: -3px !important; margin-bottom: 0 !important; width: 100% !important; line-height: 1 !important;
    }
    .meta-item { font-size: 13px !important; font-weight: 700 !important; }
    .meta-item.star-rating svg { fill: var(--color-brand) !important; color: var(--color-brand) !important; }
    .cat-tags { display: flex !important; gap: 5px !important; }
    .mini-tag { background: #E2E8F0 !important; color: #4A5568 !important; font-size: 10px !important; padding: 2px 6px !important; text-transform: uppercase; }
    .cat-actions-desktop { display: none !important; }
    
    .cat-short-desc {
        grid-column: 1 / 3; grid-row: 3 / 4; font-size: 14px !important; color: #718096 !important;
        margin-top: 12px !important; margin-bottom: 12px !important; line-height: 1.5 !important; text-align: left !important;
        display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    }
    .cat-actions-mobile {
        grid-column: 1 / 3; grid-row: 4 / 5; display: flex !important; gap: 10px !important; width: 100% !important;
    }
    .cat-actions-mobile a, .cat-actions-mobile .btn-cat-vote {
        flex: 1 !important; height: 38px !important; border-radius: 8px !important;
        font-size: 13px !important; font-weight: 700 !important; display: flex !important;
        align-items: center !important; justify-content: center !important;
    }
    .btn-cat-join { background-color: var(--color-brand) !important; color: #fff !important; }
    .cat-actions-mobile .btn-cat-vote { background-color: #EDF2F7 !important; color: #2D3748 !important; border: 1px solid transparent !important; }

    /* İncelemeler Mobil */
    .review-dashboard-card { flex-direction: column; align-items: flex-start; padding: 20px; }
    .rd-left {
        margin-right: 0; margin-bottom: 25px; flex-direction: row; align-items: center;
        gap: 20px; width: 100%; border-bottom: 1px solid #eee; padding-bottom: 20px;
    }
    .rd-big-score { margin-bottom: 0; font-size: 48px; }
    .rd-right { width: 100%; }
    .comment-form-author, .comment-form-email, .comment-form-rating { min-width: 100%; flex-basis: 100%; }
    .review-body { gap: 12px; }
    .review-avatar img { width: 40px; height: 40px; }
    .review-author { font-size: 15px; }

    /* Boşluklar */
    .cat-pagination { margin-top: 15px !important; margin-bottom: 40px !important; gap: 6px; }
    .cat-pagination .page-numbers { min-width: 38px; height: 38px; font-size: 14px; border-radius: 8px; margin-bottom: 6px; }
    .cat-pagination .page-numbers.dots { min-width: 20px; }
    .cat-header { margin-bottom: 20px !important; }
    .cat-layout-grid { margin-top: 20px !important; }
    .search .max-w-container, .archive .max-w-container, 
    .tax-grup_kategori .max-w-container, .tax-grup_dil .max-w-container {
        margin-bottom: 30px !important;
    }

    /* 1. ÜST BOŞLUK (BAŞLIK İLE KART ARASI) */
    /* Bölümün üst boşluğunu daralt */
    .reviews-section#reviews {
        margin-top: 30px !important; /* DÜZELTİLDİ: 20px -> 30px Eşitlendi */
        padding-top: 0 !important;
    }
    
    /* Başlığın alt boşluğunu sıfıra yakın yap */
    .reviews-section .section-header {
        margin-bottom: 8px !important;
        padding-bottom: 0 !important;
        font-size: 18px !important;
        line-height: 1.2 !important;
    }

    /* 2. ANA KART YAPISI (KUTUYU SIKIŞTIR) */
    .review-dashboard-card {
        display: block !important; /* Flex yapısını kırıp blok yapıyoruz */
        padding: 12px 16px !important; /* İç boşluğu azalttık */
        background-color: #fff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        margin-bottom: 20px !important;
        height: auto !important;
    }

    /* 3. SOL KISIM (PUAN VE YILDIZLAR) - ORTA BOŞLUĞU SİLME */
    .rd-left {
        display: flex !important;
        flex-direction: row !important; /* Yan yana diz (Puan solda, yıldızlar sağda) */
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        margin: 0 !important; /* Dış boşluk SIFIR */
        padding-bottom: 12px !important; /* Sadece alt çizgi için azıcık boşluk */
        margin-bottom: 12px !important; /* Alt elemanla mesafe */
        border-bottom: 1px solid #f0f0f0 !important; /* İnce ayırıcı çizgi */
        flex: none !important;
    }

    /* Büyük Puan (5) */
    .rd-big-score {
        font-size: 32px !important;
        line-height: 1 !important;
        font-weight: 800 !important;
        margin: 0 !important;
        color: #1a202c !important;
    }

    /* Yıldızlar ve Yazı Alanı */
    .rd-stars-static {
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 2px !important;
    }
    
    /* Yıldız İkonları */
    .rd-stars-static svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* "1 inceleme" yazısı */
    .rd-total-count {
        font-size: 12px !important;
        margin-left: 8px !important;
        color: #718096 !important;
    }

    /* 4. SAĞ KISIM (BARLAR) - SIKIŞTIRMA */
    .rd-right {
        width: 100% !important;
        margin: 0 !important; /* Üst boşluk SIFIR */
        padding: 0 !important;
        flex: none !important;
        display: block !important;
    }

    /* Bar Satırları */
    .bar-row-compact {
        display: flex !important;
        align-items: center !important;
        margin-bottom: 6px !important; /* Satırlar arası mesafe */
        gap: 10px !important;
    }
    .bar-row-compact:last-child {
        margin-bottom: 0 !important;
    }

    /* Bar Etiketi (5 Yıldız) */
    .bar-label-compact {
        font-size: 12px !important;
        flex: 0 0 60px !important; /* Genişlik sabit */
        margin: 0 !important;
    }

    /* 5. FORM BAŞLIĞI BOŞLUĞU */
    .review-form-wrapper {
        margin-top: 20px !important; /* Kart ile form arası mesafe */
    }
    .review-form-wrapper h4 {
        margin-bottom: 10px !important;
        font-size: 16px !important;
    }
}

@media (max-width: 600px) {
    .cat-pagination { gap: 6px; }
}

/* =========================================
   MOBİL HEADER DÜZENLEMESİ (KOMPAKT GÖRÜNÜM)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. Header'ın Sağ ve Sol İç Boşluğunu İdeal Seviyeye Çek */
    /* Telefondan bakınca kenarlara çok uzak kalmasın */
    .site-header .max-w-container {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    /* 2. Sağdaki Grup (Buton ve Menü) Arasındaki Boşluğu Sıkılaştır */
    .header-right-area {
        gap: 8px !important; /* Eskiden 16px idi, şimdi daha yakın */
    }

    /* 3. Giriş Yap Butonunun Fazlalıklarını Al */
    .mobile-hide-btn {
        margin-right: 0 !important; /* Sağdaki gereksiz boşluğu sil (Gap yetiyor) */
        padding: 0 14px !important; /* İç dolguyu koru */
        height: 38px !important;    /* Yüksekliği sabitle */
        font-size: 13px !important; /* Yazı boyutu ideal */
        display: inline-flex !important;
        align-items: center;
    }

    /* 4. Hamburger Menü Alanını Butonla Hizala */
    .mobile-menu-toggle {
        width: 38px !important;  /* Buton yüksekliği ile aynı yap */
        height: 38px !important;
        /* Kendi içindeki paddingleri sıfırla ki merkezde dursun */
        padding: 0 !important; 
        justify-content: flex-end !important; /* Sağa yasla */
    }

    /* Hamburger ikonunun çizgi genişliğini hafif kısalt (Daha kibar durur) */
    .hamburger-box {
        width: 22px !important;
    }
    .hamburger-inner, 
    .hamburger-inner::before, 
    .hamburger-inner::after {
        width: 22px !important;
    }

    /* 5. Logo Alanı */
    /* Logoyu tam sola yasla */
    .header-left-group {
        gap: 0 !important;
    }
}

/* =========================================
   ÇİFT BUTON SORUNU ÇÖZÜMÜ (FIX)
   ========================================= */

/* 1. Masaüstü Buton Grubu (Üstteki Yan Yana Olanlar) */
/* Varsayılan olarak gizli (Mobil öncelikli) */
.cat-actions-desktop {
    display: none !important;
}

/* Sadece 769px üzeri (Tablet/PC) ekranlarda göster */
@media (min-width: 769px) {
    .cat-actions-desktop {
        display: flex !important;
        align-items: center;
        gap: 10px;
    }
}

/* 2. Mobil Buton Grubu (Alttaki Büyük Olanlar) */
/* Varsayılan olarak gizli (Masaüstünde görünmesin diye) */
.cat-actions-mobile {
    display: none !important;
}

/* Sadece 768px ve altı (Mobil) ekranlarda göster */
@media (max-width: 768px) {
    .cat-actions-mobile {
        display: flex !important;
        width: 100%;
        gap: 10px;
        margin-top: 15px;
        /* Grid konumlandırması (Mobil kart tasarımı için) */
        grid-column: 1 / 3;
        grid-row: 4 / 5;
    }
}

/* =========================================
   KART AÇIKLAMASI TEK SATIR (SADECE MASAÜSTÜ)
   ========================================= */

@media (min-width: 769px) {
    .cat-short-desc {
        /* Sadece masaüstünde 1 satıra indir */
        -webkit-line-clamp: 1 !important; 
        max-height: 1.5em; 
        overflow: hidden !important;
    }
}

/* =========================================
   ÖNE ÇIKARILMIŞ GRUP KARTI (FEATURED)
   ========================================= */

.cat-card.featured-card {
    /* Zarif Altın/Pembe Çerçeve */
    border: 2px solid #FFD700; 
    background: linear-gradient(to bottom right, #ffffff, #fffdf5); /* Çok hafif sarımsı beyaz */
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.15); /* Altın gölge */
    transition: transform 0.2s, box-shadow 0.2s;
}

.cat-card.featured-card:hover {
    border-color: #FF3366; /* Üzerine gelince marka rengi olsun */
    box-shadow: 0 8px 25px rgba(255, 51, 102, 0.15);
}

/* Logonun köşesindeki Taç İkonu */
.featured-badge {
    position: absolute;
    top: -5px;
    left: -5px;
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    z-index: 10;
    border: 1px solid #FFD700;
}

.featured-badge svg {
    width: 16px;
    height: 16px;
}

/* Kartın içine hafif bir "Premium" etiketi (Opsiyonel - İstersen kaldırabilirsin) */
.cat-card.featured-card::before {
    content: "Öne Çıkan";
    position: absolute;
    top: 0;
    right: 0;
    background: #FFD700;
    color: #885800;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 8px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    z-index: 5;
}

/* Mobilde Kart Yapısı Bozulmasın */
@media (max-width: 768px) {
    .cat-card.featured-card {
        border-width: 2px; /* Mobilde de çerçeve belli olsun */
        background: #fffdf5 !important;
    }
    .featured-badge {
        width: 24px;
        height: 24px;
        top: -8px; 
        left: -8px;
    }
    .featured-badge svg { width: 14px; height: 14px; }
}

/* =========================================
   YENİ: DETAY SAYFASI OPTİMİZASYONLARI
   ========================================= */

/* 1. Kompakt Puanlama Çubukları */
.review-dashboard-card {
    align-items: flex-start !important; /* Mobilde ortalamayı engelle */
}
.rd-right {
    display: flex;
    flex-direction: column;
    gap: 8px; /* Satırlar arası boşluk */
}
.bar-row-compact {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}
.bar-label-compact {
    flex: 0 0 90px; /* Etiket genişliği sabit */
    font-size: 14px;
    font-weight: 600;
    color: #4A5568;
    display: flex;
    align-items: center;
    gap: 4px;
    white-space: nowrap;
}
.bar-label-compact .count-val {
    color: #A0AEC0;
    font-weight: 500;
    font-size: 13px;
}
.bar-track-compact {
    flex: 1; /* Kalan alanı doldur */
    height: 6px; /* Daha ince, kibar çubuk */
    background-color: #EDF2F7;
    border-radius: 10px;
    overflow: hidden;
}
/* Çubuk dolgusu rengi (Zaten var olan .bar-fill class'ını kullanıyor) */


/* 2. "İncelemeyi Gönder" Buton Düzeltmesi */
.comment-form .submit, 
#respond input#submit {
    background-color: var(--color-brand) !important; /* Pembe Renk */
    color: #ffffff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 14px 24px !important;
    border-radius: 8px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    width: 100%;
    margin-top: 10px;
    -webkit-appearance: none; /* Safari düzeltmesi */
}

.comment-form .submit:hover, 
#respond input#submit:hover {
    background-color: #d61c59 !important; /* Hover koyu pembe */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
}


/* 3. Yorum Listesi Tasarımı (Profesyonel Görünüm) */
.review-list-container {
    margin-top: 40px;
}
.custom-comment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.review-item {
    background: #fff;
    border-bottom: 1px solid #E2E8F0;
    padding: 25px 0;
}
.review-item:last-child {
    border-bottom: none;
}
.review-body {
    display: flex;
    gap: 15px;
}
.review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background: #f7fafc;
    border: 1px solid #edf2f7;
}
.review-content {
    flex: 1;
}
.review-meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}
.review-author {
    font-size: 16px;
    font-weight: 800;
    color: #1a202c;
}
.review-stars-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.star-display {
    color: #FFD700; /* Altın Sarısı Yıldızlar */
    font-size: 14px;
    letter-spacing: 1px;
}
.s-empty {
    color: #E2E8F0;
}
.review-date {
    font-size: 12px;
    color: #A0AEC0;
    font-weight: 500;
}
.review-text p {
    font-size: 15px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* Mobilde Düzenlemeler */
@media (max-width: 768px) {
    .review-body {
        gap: 12px;
    }
    .review-avatar img {
        width: 40px;
        height: 40px;
    }
    .bar-label-compact {
        flex: 0 0 80px;
        font-size: 13px;
    }
}

/* =========================================
   İNCELEME ALANI FİNAL DÜZENLEMESİ (BAŞLIK SİLME & ORANTILI ÇİZGİ)
   ========================================= */

/* 1. Başlığı Her Yerde Gizle */
#reviews .section-header {
    display: none !important;
}

/* 2. Masaüstü Görünümü: Simetrik Çizgiler */
@media (min-width: 769px) {
    .reviews-section {
        border-top: 1px solid #E2E8F0; /* Üst Çizgi */
        margin-top: 30px;   /* DÜZELTİLDİ: 40px -> 30px Eşitlendi */
        padding-top: 0;     /* İç boşluk SIFIR (Kartın boşluğunu kullanacağız) */
    }

    .review-dashboard-card {
        /* Kartın kendi boşlukları simetriyi sağlar */
        padding-top: 30px !important;    /* Çizgiden içeriğe 30px */
        padding-bottom: 30px !important; /* İçerikten alt çizgiye 30px */
        border-bottom: 1px solid #E2E8F0; /* Alt Çizgi */
        background: transparent !important; /* Arka planı şeffaf yap ki bütünlük bozulmasın */
        margin-bottom: 40px;
    }
}

/* 3. Mobil Görünümü: Çizgi Gizle & Kompakt Tut */
@media (max-width: 768px) {
    .reviews-section {
        border-top: none !important; /* Mobilde üst çizgiyi GİZLE */
        margin-top: 15px !important; 
        padding-top: 0 !important;
    }
    
    /* Mobilde kart kutu görünümünde olduğu için boşlukları ona göre ayarla */
    .review-dashboard-card {
        margin-top: 0 !important;
        /* Diğer mobil ayarlar önceki koddan geliyor (agresif stil) */
    }
}

/* =========================================
   SIDEBAR PROFESYONEL GÖRÜNÜM (KATEGORİ & DİL)
   ========================================= */

/* Widget Kutusu */
.sidebar-widget.modern-widget {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px !important; /* Daha yuvarlak köşeler */
    padding: 30px !important; /* İç boşluğu artır (Daha büyük görünür) */
    box-shadow: 0 4px 15px rgba(0,0,0,0.03); /* Hafif gölge ile derinlik kat */
}

/* Başlık Stili */
.modern-widget-title {
    font-size: 19px !important; /* Başlığı büyüt */
    font-weight: 800 !important;
    margin-bottom: 25px !important;
    padding-bottom: 15px !important;
    border-bottom: 1px solid #F7FAFC; /* Altına ince çizgi */
    display: flex;
    align-items: center;
    gap: 12px !important;
    color: #1a202c;
}
.modern-widget-title svg {
    width: 24px !important; /* İkonu büyüt */
    height: 24px !important;
}

/* Etiket Havuzu Düzeni */
.modern-tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 12px !important; /* Etiketler arasını aç */
}

/* Etiket (Pill) Stili - BÜYÜTÜLDÜ */
.modern-pill {
    background: #F8FAFC !important;
    border: 1px solid #EDF2F7 !important;
    padding: 12px 20px !important; /* Buton iç hacmini artır */
    border-radius: 10px !important;
    font-size: 15px !important; /* Yazıyı büyüt */
    font-weight: 700 !important;
    color: #4A5568 !important;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* Hashtag Rengi */
.modern-pill .hash {
    color: #FF3366 !important;
    font-weight: 800;
}

/* Hover Efekti */
.modern-pill:hover {
    background: #fff !important;
    border-color: #FF3366 !important;
    color: #1a202c !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.15);
}

/* =========================================
   GRUP DETAY ÜST BOŞLUK (BANNER) AYARI
   ========================================= */

/* Masaüstü için yükseklik ayarı */
.group-banner {
    height: 200px !important; /* Orijinali 180px idi, kısalttık */
    min-height: 130px !important;
}

/* Mobil için özel ayar (Daha da kompakt) */
@media (max-width: 768px) {
    .group-banner {
        height: 100px !important; /* Mobilde daha az yer kaplasın */
        min-height: 100px !important;
    }
    
    /* İçeriği yukarı çeken negatif boşluğu dengele */
    .gh-wrapper {
        margin-top: -10px !important; 
    }
}

/* =========================================
   MOBİL GRUP BAŞLIĞI - MODERN TASARIM (YAN YANA)
   ========================================= */
@media (max-width: 768px) {
    
    /* 1. Kapsayıcıyı Sola Yasla ve Düzenle */
    .gh-wrapper {
        margin-top: -30px !important; /* Banner'ın içine doğru çek */
        align-items: flex-start !important; /* Ortalamayı iptal et, sola yasla */
        padding: 0 5px !important; /* Kenarlardan hafif boşluk */
    }

    /* 2. Sol Alanı (Logo + Bilgi) Yan Yana Diz */
    .gh-left {
        flex-direction: row !important; /* Alt alta değil, yan yana olsun */
        align-items: center !important; /* Dikeyde ortala */
        gap: 15px !important; /* Logo ile yazı arasına boşluk */
        width: 100% !important;
        text-align: left !important; /* Yazıları sola yasla */
    }

    /* 3. Logo Ayarları (Kompakt) */
    .gh-logo-box {
        width: 75px !important; /* Logoyu ideal boyuta getir */
        height: 75px !important;
        margin-bottom: 0 !important; /* Altındaki boşluğu sil */
        flex-shrink: 0; /* Sıkışmasını engelle */
        border: 2px solid #fff; /* Beyaz çerçeve ekle, şık durur */
        box-shadow: 0 4px 6px rgba(0,0,0,0.1); /* Hafif gölge */
    }

    /* 4. Bilgi Alanı Ayarları */
    .gh-info {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important; /* İçeriği sola yasla */
        justify-content: center !important;
        width: auto !important;
        padding-bottom: 0 !important;
    }

    /* 5. Grup İsmi */
    .gh-title {
        font-size: 20px !important; /* Mobilde taşmaması için font */
        margin-bottom: 6px !important;
        line-height: 1.2 !important;
        text-align: left !important;
    }

    /* 6. Meta Veriler (Yıldızlar, Üye Sayısı) */
    .gh-meta-row {
        justify-content: flex-start !important; /* Sola yasla */
        flex-wrap: wrap !important;
        gap: 8px !important;
        font-size: 12px !important;
    }
    
    /* Meta aralarındaki noktaları gizle (Daha temiz görünüm için opsiyonel) */
    .gh-meta-row .gh-dot {
        display: none !important;
    }
    
    /* Üye Sayısı İkonu ve Yazısı */
    .gh-stat-item {
        background: #f7fafc;
        padding: 2px 6px;
        border-radius: 4px;
        border: 1px solid #edf2f7;
    }

    /* 7. Alt Kısımdaki Butonlar (Katıl / Oy Ver) */
    .gh-right {
        margin-top: 15px !important; /* Üst kısımla arayı aç */
        width: 100% !important;
        justify-content: space-between !important; /* Butonları yay */
        gap: 10px !important;
    }
    
    /* Butonları Eşitle */
    .gh-btn {
        flex: 1 !important; /* Eşit genişlik */
    }
    /* Paylaş butonu kare kalsın */
    .gh-btn-icon {
        flex: 0 0 44px !important; 
    }
}

/* =========================================
   GRUP DETAYI - YATAY SOL HİZALAMA (MİLMETRİK AYAR)
   ========================================= */

/* Genel/Masaüstü Ayarı */
@media (min-width: 769px) {
    /* Logo ve Başlık alanını, 'Genel Bakış' yazısıyla hizalamak için sola kaydır */
    .gh-wrapper {
        margin-left: -15px !important; 
        /* Genişliği korumak için gerekli */
        width: calc(100% + 15px);
    }
}

/* Mobil Ayarı (Daha önceki mobil stilleri dengelemek için) */
@media (max-width: 768px) {
    .gh-wrapper {
        margin-left: -5px !important; /* Mobilde daha az kaydırarak hizala */
        width: calc(100% + 5px);
    }
    
    /* Mobil butonları da kaydırmayı dengele */
    .gh-right {
         padding-right: 5px; /* Sağ tarafa 5px padding ekleyerek butonları sağ kenardan uzaklaştır */
    }
}

/* =========================================
   MODERN YORUM ALANI (OPTIMIZE & MINIMIZE)
   ========================================= */

/* 1. Form Kapsayıcısı */
.review-form-box {
    background-color: #F8FAFC; /* Çok hafif gri zemin */
    border: 1px solid #E2E8F0;
    border-radius: 16px; /* Daha yuvarlak köşeler */
    padding: 30px;
    margin-top: 40px;
}

/* Başlık */
.review-form-box h4 {
    font-size: 18px !important;
    font-weight: 800;
    margin-bottom: 20px;
    color: #1a202c;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* 2. Grid Yapısı (Yan Yana Dizme) */
.comment-form {
    display: grid;
    grid-template-columns: 1fr 1fr; /* İki eşit kolon */
    gap: 20px; /* Alanlar arası boşluk */
}

/* Tam Genişlik Olması Gerekenler */
.comment-form-rating,
.comment-form-comment,
.form-submit {
    grid-column: span 2; /* Tüm satırı kapla */
}

/* Yazar ve Email (Yarı Yarıya Otomatik Kalır) */
.comment-form-author, 
.comment-form-email {
    margin-bottom: 0 !important;
}

/* 3. Input ve Select Stilleri (Modernleştirme) */
.comment-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #718096;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form select,
.comment-form textarea {
    width: 100%;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 15px;
    font-weight: 600;
    color: #2D3748;
    transition: all 0.2s ease;
    font-family: 'Manrope', sans-serif;
    outline: none;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.comment-form textarea {
    height: 120px; /* Yüksekliği sabitle (Minimize) */
    resize: vertical;
}

/* Focus Efekti */
.comment-form input:focus,
.comment-form select:focus,
.comment-form textarea:focus {
    border-color: #FF3366;
    box-shadow: 0 0 0 3px rgba(255, 51, 102, 0.1);
}

/* 4. Gönder Butonu (Tam Genişlik & Modern) */
.comment-form .submit {
    width: 100%;
    background-color: #1a202c !important; /* Siyah buton daha profesyonel durur */
    color: #ffffff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 16px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}
.comment-form .submit:hover {
    background-color: #FF3366 !important; /* Hover'da pembe */
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
}

/* 5. MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .review-form-box {
        padding: 20px; /* Mobilde iç boşluğu azalt */
    }
    .comment-form {
        grid-template-columns: 1fr; /* Tek kolona düşür */
        gap: 15px;
    }
    .comment-form-author, 
    .comment-form-email,
    .comment-form-rating,
    .comment-form-comment,
    .form-submit {
        grid-column: span 1; /* Hepsi tam satır */
    }
}

/* =========================================
   3'LÜ YORUM KARTLARI (GRID LAYOUT)
   ========================================= */

/* 1. Izgara Yapısı (Grid) */
.custom-comment-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Yan yana */
    gap: 20px; /* Kartlar arası boşluk */
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 2. Kart Tasarımı */
.review-card-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px; /* Yuvarlak köşeler */
    transition: all 0.3s ease;
    height: 100%; /* Satır yüksekliğini eşitle */
    display: flex;
    flex-direction: column;
}

.review-card-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Kart Hover Efekti */
.review-card-item:hover {
    transform: translateY(-4px); /* Yukarı hafif kalkma */
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    border-color: #FF3366; /* Hover'da marka rengi */
}

/* 3. Kart İçeriği */
.review-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #F7FAFC;
}

.rc-avatar img {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    object-fit: cover;
    border: 2px solid #F7FAFC;
}

.rc-meta {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.rc-author {
    font-size: 15px;
    font-weight: 800;
    color: #1a202c;
}

.rc-date {
    font-size: 11px;
    color: #A0AEC0;
    font-weight: 600;
    text-transform: uppercase;
}

.rc-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 12px;
}

.rc-content p {
    font-size: 14px;
    color: #4A5568;
    line-height: 1.6;
    margin: 0;
}

/* 4. RESPONSIVE (MOBİL UYUMLULUK) */

/* Tablet (2 Yan Yana) */
@media (max-width: 900px) {
    .custom-comment-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobil (1 Yan Yana - Alt Alta) */
@media (max-width: 600px) {
    .custom-comment-list {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .review-card-inner {
        padding: 16px;
    }
}

/* =========================================
   GİRİŞ YAPMAMIŞ KULLANICI UYARISI
   ========================================= */
.login-notify-box {
    background-color: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px; /* Sitenin genel yuvarlak hattı */
    padding: 50px 30px;
    text-align: center;
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

.lnb-icon {
    width: 64px;
    height: 64px;
    background-color: #FFF5F7; /* Açık pembe zemin */
    color: #FF3366; /* Marka rengi */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.lnb-title {
    font-size: 20px;
    font-weight: 800;
    color: #1a202c;
    margin-bottom: 10px;
}

.lnb-desc {
    font-size: 15px;
    color: #718096;
    max-width: 400px;
    margin: 0 auto 25px auto;
    line-height: 1.6;
}

.lnb-btn {
    background-color: #1a202c; /* Siyah buton (Premium hissi) */
    color: #ffffff !important;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.2s ease;
}

.lnb-btn:hover {
    background-color: #FF3366; /* Hover olunca pembe */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 51, 102, 0.2);
}

/* =========================================
   GRUP DETAY: TAM SİMETRİK BOŞLUK (FİNAL)
   ========================================= */

/* 1. TAB MENÜSÜNÜN ALTINI TEMİZLE */
/* Tab çizgisinden sonra ekstra boşluk olmasın ki kontrol bizde olsun */
.gh-tabs {
    margin-bottom: 0 !important;
    border-bottom: 1px solid #E2E8F0;
}

/* 2. METİN ALANI (BOŞLUKLARI EŞİTLE) */
.long-description {
    /* Üst Boşluk: Tab çizgisinden metne kadar */
    margin-top: 40px !important;   
    
    /* Alt Boşluk: Metinden inceleme çizgisine kadar */
    margin-bottom: 40px !important; 
    
    /* Metin Okunabilirliği */
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
    display: block;
}

/* 3. İNCELEME ALANI ÇİZGİSİ */
.reviews-section {
    /* Metnin margin-bottom'ı zaten boşluğu veriyor, burayı sıfırla */
    margin-top: 0 !important;
    padding-top: 0 !important;
    
    /* Ayırıcı Çizgi */
    border-top: 1px solid #E2E8F0; 
}

/* Mobil için biraz daha kompakt olabilir */
@media (max-width: 768px) {
    .long-description {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
}

/* =========================================
   GRUP DETAY: TAM HİZALI VE ORANTILI BOŞLUKLAR
   ========================================= */

/* 1. METİN ALANI (Sol Taraf) */
.long-description {
    /* Üst Çizgiden Boşluk */
    margin-top: 40px !important;   
    
    /* Alt Çizgiye (Yorumlar) Boşluk */
    margin-bottom: 40px !important; 
    
    font-size: 16px;
    line-height: 1.7;
    color: #4A5568;
}

/* 2. SIDEBAR / REKLAM ALANI (Sağ Taraf) */
/* Reklam da metinle aynı hizada başlasın diye üstten itiyoruz */
.entity-sidebar {
    margin-top: 40px !important;
}

/* 3. İNCELEME ALANI ÇİZGİSİ */
.reviews-section {
    margin-top: 0 !important;
    padding-top: 0 !important;
    border-top: 1px solid #E2E8F0; 
}

/* MOBİL İÇİN OPTİMİZASYON */
@media (max-width: 768px) {
    .long-description {
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }
    
    /* Mobilde sidebar altta kalacağı için ekstra boşluğa gerek yok, sıfırla */
    .entity-sidebar {
        margin-top: 0 !important; 
    }
}

/* =========================================
   MOBİL BOŞLUK DÜZENLEMELERİ (HEADER & TAB)
   ========================================= */

@media (max-width: 768px) {
    
    /* 1. HEADER İLE İÇERİK ARASI BOŞLUK DÜZELTMESİ */
    .group-banner {
        margin-top: 0 !important;      /* Kutuyu en tepeye yapıştır (Pembe alan yukarıda kalsın) */
        padding-top: 175px !important;  /* Sadece İÇERİĞİ aşağı it (Header'ın altına girmesin) */
        height: auto !important;       /* Sabit yükseklik yerine içeriğe göre uzasın */
        min-height: 130px !important;  /* Pembe alanın çok kısa kalmaması için minimum boy */
    }

    /* 2. İÇERİK (BİLGİ) İLE GENEL BAKIŞ YAZISI ARASI BOŞLUK */
    /* "Genel Bakış" sekmesini yukarıdaki butonlardan ayırıyoruz */
    .gh-tabs {
        margin-top: 25px !important; /* Hafif bir boşluk */
    }
}

/* =========================================
   YENİ FOOTER TASARIMI (LIGHT & CLEAN - KIRPILMIŞ ÇİZGİLER)
   ========================================= */

/* Footer Genel Yapı */
.site-footer {
    margin-top: 100px; /* CTA kutusu için üstten mesafe */
    position: relative;
    background-color: #ffffff; /* Beyaz Zemin */
    color: #718096; /* Gri Metin Rengi */
    font-size: 14px;
    border-top: none !important; /* Tam boy üst çizgiyi kaldırdık */
}

/* 1. CTA KUTUSU (Üstteki Pembe Alan - Aynen Korundu) */
.footer-cta-wrapper {
    position: absolute;
    top: -60px; /* Footer'ın dışına, yukarı taşır */
    left: 0; width: 100%;
    padding: 0 24px;
    z-index: 10;
}
.footer-cta-box {
    background: linear-gradient(135deg, #FF3366 0%, #E02E5A 100%);
    border-radius: 20px; /* Daha yumuşak köşeler */
    padding: 35px 50px;
    display: flex; align-items: center; justify-content: space-between;
    box-shadow: 0 20px 40px rgba(255, 51, 102, 0.15); /* Hafif pembe gölge */
    flex-wrap: wrap; gap: 20px;
    max-width: 1100px; margin: 0 auto; /* Ortala ve çok genişleme */
}
.cta-content h3 {
    font-size: 24px; font-weight: 800; color: #fff; margin-bottom: 6px; letter-spacing: -0.5px;
}
.cta-content p {
    color: rgba(255,255,255,0.95); font-size: 16px; margin: 0; font-weight: 500;
}
.btn-footer-cta {
    background: #fff; color: #FF3366 !important;
    padding: 14px 28px; border-radius: 12px; font-weight: 800; font-size: 15px;
    display: inline-flex; align-items: center; gap: 8px; transition: 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.btn-footer-cta:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }

/* 2. ANA FOOTER */
.footer-main {
    padding-top: 60px; /* CTA kutusu payı */
    padding-bottom: 60px;
}

/* ÜST ÇİZGİ AYARI (İçeriğe taşıdık - Header hizasında) */
.footer-main .max-w-container {
    border-top: 1px solid #EDF2F7; /* Çizgi artık kutunun içinde */
    padding-top: 60px; /* Çizgi ile içerik arası boşluk */
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 50px;
}

/* Marka Kolonu */
.brand-col .footer-logo { display: block; margin-bottom: 20px; }
.brand-col .footer-logo img { max-height: 42px; }
.footer-desc { line-height: 1.7; margin-bottom: 25px; color: #718096; }

/* Sosyal İkonlar (Aydınlık Tema) */
.footer-socials { display: flex; gap: 12px; }
.footer-socials a {
    width: 40px; height: 40px; 
    background: #F7FAFC; /* Çok açık gri zemin */
    color: #4A5568; /* Koyu gri ikon */
    border: 1px solid #EDF2F7;
    border-radius: 10px; /* Karemsi yuvarlak */
    display: flex; align-items: center; justify-content: center;
    transition: all 0.2s ease;
}
.footer-socials a:hover { 
    background: #FF3366; color: #fff; border-color: #FF3366; 
    transform: translateY(-3px); 
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.2);
}

/* Link Kolonları */
.footer-title {
    color: #1a202c; /* Koyu Başlık */
    font-size: 17px; font-weight: 800; margin-bottom: 25px;
}
.footer-col ul li { margin-bottom: 14px; }
.footer-col ul li a {
    color: #718096; transition: 0.2s; font-weight: 500; font-size: 15px;
}
.footer-col ul li a:hover { color: #FF3366; padding-left: 5px; }

/* 3. ALT ŞERİT (COPYRIGHT) */
.footer-bottom {
    border-top: none !important; /* Tam boy çizgiyi kaldırdık */
    padding: 0 0 30px 0; 
    font-size: 14px; 
    background: #fff;
}

/* ALT ÇİZGİ AYARI (İçeriğe taşıdık) */
.fb-inner {
    border-top: 1px solid #EDF2F7; /* Çizgi burada */
    padding-top: 30px; /* Çizgi ile yazı arası boşluk */
    display: flex; justify-content: space-between; align-items: center; color: #A0AEC0;
}
.fb-links span { font-weight: 600; color: #1a202c; }

/* MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .brand-col { grid-column: span 2; }
}

@media (max-width: 600px) {
    .site-footer { margin-top: 60px; }
    
    /* CTA Kutusu Mobilde */
    .footer-cta-box {
        flex-direction: column; text-align: center; padding: 30px 20px;
    }
    .cta-content h3 { font-size: 20px; }
    .cta-btn { width: 100%; }
    .btn-footer-cta { width: 100%; justify-content: center; }

    /* Footer Kolonları */
    .footer-main { padding-top: 160px; /* Mobilde kutu uzadığı için boşluğu artır */ padding-bottom: 40px; }
    .footer-grid { grid-template-columns: 1fr; gap: 40px; text-align: center; }
    .brand-col { grid-column: span 1; }
    .footer-desc { font-size: 14px; }
    
    /* Ortalamalar */
    .footer-socials { justify-content: center; }
    .fb-inner { flex-direction: column; gap: 15px; text-align: center; }
}

/* =========================================
   MOBİLDE FOOTER GİZLEME
   ========================================= */

@media (max-width: 768px) {
    .site-footer {
        display: none !important;
    }
}

/* =========================================
   HEADER ONLINE SAYACI STİLİ
   ========================================= */

.online-counter-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #F0FFF4; /* Çok açık yeşil zemin */
    border: 1px solid #C6F6D5; /* Yeşil çerçeve */
    padding: 6px 12px;
    border-radius: 50px; /* Tam yuvarlak (Pill) */
    font-size: 13px;
    color: #276749; /* Koyu yeşil yazı */
    margin-right: 10px;
    white-space: nowrap;
}

/* Yanıp Sönen Yeşil Nokta */
.live-dot {
    width: 8px;
    height: 8px;
    background-color: #48BB78;
    border-radius: 50%;
    display: block;
    box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    animation: pulse-green 2s infinite;
}

.oc-text strong {
    font-weight: 800;
}

/* Animasyon */
@keyframes pulse-green {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(72, 187, 120, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(72, 187, 120, 0);
    }
}

/* Mobilde Uyum */
@media (max-width: 768px) {
    .online-counter-badge {
        padding: 6px 10px;
        font-size: 12px;
        margin-right: 5px;
    }
    .oc-text {
        font-weight: 600;
    }
}

/* =========================================
   MOBİL ALT BOŞLUK DÜZELTMESİ (Sayfa Altı)
   ========================================= */

@media (max-width: 768px) {
    /* Arama, Arşiv, Kategori ve Dil sayfalarının ana konteyner boşluğunu al */
    .search .max-w-container,
    .archive .max-w-container,
    .tax-grup_kategori .max-w-container,
    .tax-grup_dil .max-w-container {
        margin-bottom: 10px !important; /* 60px olan boşluğu sıfıra yakın yap */
        padding-bottom: 0 !important;
    }
    
    /* Eğer içerik grid'inden gelen ekstra boşluk varsa onu da al */
    .cat-layout-grid {
        margin-bottom: 10px !important;
    }
}

/* =========================================
   GLOBAL ALT BOŞLUK DÜZELTMESİ (TÜM SAYFALAR İÇİN)
   ========================================= */

/* 1. Footer'ın Dış Boşluğunu Sıfırla */
/* Footer'ı içeriğe yaklaştırıyoruz */
.site-footer {
    margin-top: 0 !important; 
    padding-top: 40px !important; /* İçerik bittikten sonra çizgiye kadar olan mesafe */
}

/* 2. Sayfa İçeriklerinin Altındaki Aşırı Boşlukları Kırp */
/* PHP dosyalarında kalan 'style="margin-bottom: 100px"' gibi kodları ezer */
.max-w-container, 
.cat-layout-grid,
.hero-section {
    margin-bottom: 40px !important; /* Standart boşluk (İdeal) */
}

/* 3. Mobilde Daha Sıkı Boşluk */
@media (max-width: 768px) {
    .site-footer {
        padding-top: 20px !important;
    }
    
    .max-w-container, 
    .cat-layout-grid,
    .hero-section {
        margin-bottom: 20px !important;
    }
    
    /* Anasayfa özelindeki son bloğun boşluğunu al */
    .home .max-w-container:last-child,
    .home div[class*="section"] {
        margin-bottom: 20px !important;
    }
}

/* =========================================
   FOOTER DÜZELTMESİ (BOŞLUK SİLME & TEMİZLİK)
   ========================================= */

/* 1. ESKİ CTA KUTUSUNU GİZLE / YOK ET */
/* Eğer HTML'de kalıntısı varsa bile görünmez olur ve yer kaplamaz */
.footer-cta-wrapper, 
.footer-cta-box {
    display: none !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* 2. FOOTER ÜST BOŞLUĞUNU SIFIRLA */
.site-footer {
    margin-top: 0 !important; /* Eskiden 100px idi, şimdi 0 */
    padding-top: 0 !important; 
    border-top: none !important;
    position: relative;
    background-color: #ffffff;
    color: #718096;
    font-size: 14px;
}

/* 3. İÇERİK - FOOTER ARASI MESAFE AYARI */
/* Footer'ın içindeki ilk konteynerin üst boşluğu */
.footer-main {
    padding-top: 15px !important; /* İçerik bittikten sonra 40px boşluk */
    padding-bottom: 40px;
}

/* Çizgiyi (Border) İçeriğe Taşı */
.footer-main .max-w-container {
    border-top: 1px solid #EDF2F7;
    padding-top: 40px; 
}

/* Alt Kısım (Copyright) */
.footer-bottom {
    padding: 0 0 30px 0;
    background: #fff;
    border-top: none !important;
}

.fb-inner {
    border-top: 1px solid #EDF2F7;
    padding-top: 30px;
    display: flex; justify-content: space-between; align-items: center; color: #A0AEC0;
}

/* MOBİL İÇİN EKSTRA KONTROL */
@media (max-width: 768px) {
    /* Mobilde footer zaten gizli ama eğer açılırsa düzgün dursun */
    .site-footer {
        margin-top: 0 !important;
    }
    
    /* Mobil Sayfalardaki Alt Boşluğu Kırp */
    .max-w-container, 
    .cat-layout-grid {
        margin-bottom: 20px !important;
    }
}

/* =========================================
   HAKKIMIZDA SAYFASI TASARIMI
   ========================================= */

.about-page-wrapper {
    margin-top: 120px;
    margin-bottom: 80px;
}

/* 1. HERO ALANI */
.about-hero {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px auto;
}
.ah-badge {
    background-color: #FFF5F7; color: #FF3366;
    font-size: 13px; font-weight: 700; padding: 6px 16px;
    border-radius: 50px; display: inline-block; margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}
.ah-title {
    font-size: 48px; font-weight: 800; color: #1a202c;
    line-height: 1.1; margin-bottom: 20px; letter-spacing: -1.5px;
}
.ah-title .highlight {
    color: #FF3366;
    background: linear-gradient(120deg, rgba(255,51,102,0.1) 0%, rgba(255,51,102,0) 100%);
    padding-right: 10px;
}
.ah-desc {
    font-size: 18px; color: #4A5568; line-height: 1.6; max-width: 600px; margin: 0 auto;
}

/* 2. İSTATİSTİK GRID */
.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}
.stat-card {
    background: #fff;
    border: 1px solid #EDF2F7;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    transition: 0.3s;
}
.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border-color: #FF3366;
}
.sc-icon { font-size: 32px; margin-bottom: 10px; }
.sc-num { display: block; font-size: 28px; font-weight: 800; color: #1a202c; margin-bottom: 5px; }
.sc-label { font-size: 14px; color: #718096; font-weight: 600; text-transform: uppercase; }

/* 3. İÇERİK & GÖRSEL (ZIGZAG) */
.about-content-section {
    margin-bottom: 80px;
}
.acs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.acs-text h2 {
    font-size: 32px; font-weight: 800; color: #1a202c; margin-bottom: 20px;
}
.acs-text p {
    font-size: 16px; color: #4A5568; line-height: 1.7; margin-bottom: 20px;
}

/* Soyut Görsel Alanı */
.acs-visual {
    position: relative;
    height: 400px;
    background-color: #F7FAFC;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.abstract-circle {
    position: absolute; border-radius: 50%;
}
.c1 { width: 300px; height: 300px; background: rgba(255,51,102,0.05); top: -50px; right: -50px; }
.c2 { width: 200px; height: 200px; background: rgba(26,32,44,0.05); bottom: -30px; left: -30px; }

.visual-card {
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: absolute;
    z-index: 2;
}
.visual-card:first-child { top: 60px; left: 40px; transform: rotate(-5deg); } /* Hata önleme */
.visual-card.bottom { bottom: 60px; right: 40px; transform: rotate(5deg); }

.vc-icon { font-size: 24px; display: block; margin-bottom: 10px; }
.visual-card h4 { font-size: 16px; font-weight: 800; margin-bottom: 5px; color: #1a202c; }
.visual-card p { font-size: 13px; color: #718096; line-height: 1.4; margin: 0; }

/* 4. DEĞERLER (3'lü GRID) */
.about-values {
    background-color: #fff;
    border: 1px solid #EDF2F7;
    border-radius: 24px;
    padding: 60px;
    margin-bottom: 60px;
}
.av-header { text-align: center; margin-bottom: 50px; }
.av-header h3 { font-size: 30px; font-weight: 800; margin-bottom: 10px; }
.av-header p { color: #718096; font-size: 16px; }

.av-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}
.av-card { text-align: left; }
.av-icon-box {
    width: 60px; height: 60px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
}
.i-blue { background: #EBF8FF; color: #4299E1; }
.i-pink { background: #FFF5F5; color: #FF3366; }
.i-yellow { background: #FFFFF0; color: #D69E2E; }

.av-card h4 { font-size: 18px; font-weight: 800; margin-bottom: 10px; }
.av-card p { font-size: 15px; color: #718096; line-height: 1.6; }

/* 5. ALT CTA */
.about-cta {
    background: #1a202c;
    color: #fff;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
}
.about-cta h3 { font-size: 32px; font-weight: 800; margin-bottom: 15px; color: #fff; }
.about-cta p { font-size: 18px; color: #A0AEC0; margin-bottom: 30px; }
.btn-about-action {
    background: #FF3366; color: #fff !important;
    padding: 16px 32px; border-radius: 12px; font-weight: 700; font-size: 16px;
    display: inline-block; transition: 0.2s;
}
.btn-about-action:hover { transform: translateY(-3px); box-shadow: 0 10px 20px rgba(255, 51, 102, 0.3); }

/* MOBİL UYUMLULUK */
@media (max-width: 900px) {
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .acs-grid { grid-template-columns: 1fr; }
    .av-grid { grid-template-columns: 1fr; gap: 30px; }
    .about-values { padding: 30px; }
}

@media (max-width: 768px) {
    .about-page-wrapper { margin-top: 100px; }
    .ah-title { font-size: 32px; }
    .ah-desc { font-size: 16px; }
    
    .acs-visual { height: 300px; margin-top: 30px; }
    .visual-card { width: 160px; padding: 15px; }
    .visual-card:first-child { top: 40px; left: 20px; }
    .visual-card.bottom { bottom: 40px; right: 20px; }
    
    .about-cta { padding: 40px 20px; }
    .about-cta h3 { font-size: 24px; }
}

/* =========================================
   STANDART SAYFA TASARIMI (PAGE.PHP)
   ========================================= */

/* Dış Kapsayıcı */
.std-page-wrapper {
    margin-top: 120px; /* Header'dan uzaklık */
    margin-bottom: 80px;
    min-height: 50vh; /* İçerik kısaysa footer yukarı kaçmasın */
}

/* 1. Başlık Alanı */
.std-page-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    border-bottom: 1px solid #EDF2F7;
    padding-bottom: 30px;
}

.std-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    letter-spacing: -1px;
    margin-bottom: 10px;
    line-height: 1.2;
}

.std-subtitle {
    font-size: 18px;
    color: #718096;
    line-height: 1.6;
    font-weight: 500;
}

/* 2. İçerik Alanı (Okunabilirlik Odaklı) */
.std-page-content {
    max-width: 800px; /* Çok geniş olmasın, göz yormasın */
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
    color: #4A5568;
}

/* İçerik içindeki elementlerin stili (WordPress editöründen gelenler) */
.std-page-content p {
    margin-bottom: 25px;
}

.std-page-content h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a202c;
    margin-top: 40px;
    margin-bottom: 15px;
}

.std-page-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    margin-top: 30px;
    margin-bottom: 12px;
}

.std-page-content ul, 
.std-page-content ol {
    margin-bottom: 25px;
    padding-left: 20px;
}

.std-page-content li {
    margin-bottom: 10px;
    position: relative;
}

.std-page-content ul li {
    list-style: disc;
}

.std-page-content a {
    color: #FF3366;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-color: rgba(255, 51, 102, 0.3);
}
.std-page-content a:hover {
    color: #E02E5A;
    text-decoration-color: #E02E5A;
}

.std-page-content blockquote {
    border-left: 4px solid #FF3366;
    background: #FFF5F7;
    padding: 20px 25px;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #2D3748;
    margin: 30px 0;
}

.std-page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .std-page-wrapper {
        margin-top: 100px; /* Mobilde header payı */
    }
    .std-title {
        font-size: 32px;
    }
    .std-page-content {
        font-size: 16px;
    }
}

/* =========================================
   TEKİL YAZI (BLOG POST) TASARIMI
   ========================================= */

/* Dış Kapsayıcı */
.single-post-wrapper {
    margin-top: 120px; /* Header payı */
    margin-bottom: 80px;
    max-width: 800px; /* Okuma odaklı daraltılmış genişlik */
}

/* 1. Başlık ve Meta Alanı */
.sp-header {
    text-align: center;
    margin-bottom: 40px;
}

.sp-meta-top {
    font-size: 13px;
    font-weight: 700;
    color: #FF3366; /* Marka rengi */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.sp-dot { color: #CBD5E0; font-size: 10px; }
.sp-date { color: #718096; }

.sp-title {
    font-size: 42px;
    font-weight: 800;
    color: #1a202c;
    line-height: 1.2;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

/* Yazar Alanı */
.sp-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.sp-author-avatar img {
    border-radius: 50%;
    width: 44px; height: 44px;
    object-fit: cover;
    border: 2px solid #F7FAFC;
}
.sp-author-info {
    text-align: left;
    display: flex; flex-direction: column;
}
.author-name {
    font-size: 15px; font-weight: 700; color: #1a202c;
}
.read-time {
    font-size: 12px; color: #A0AEC0; font-weight: 500;
}

/* 2. Öne Çıkan Görsel */
.sp-featured-image {
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.sp-featured-image img {
    width: 100%; height: auto; display: block;
}

/* 3. Yazı İçeriği (Tipografi) */
.sp-content {
    font-size: 18px; /* İdeal okuma boyutu */
    line-height: 1.8;
    color: #4A5568;
}

.sp-content p { margin-bottom: 25px; }

.sp-content h2 {
    font-size: 28px; font-weight: 800; color: #1a202c;
    margin-top: 40px; margin-bottom: 15px;
}
.sp-content h3 {
    font-size: 22px; font-weight: 700; color: #1a202c;
    margin-top: 30px; margin-bottom: 12px;
}

.sp-content a {
    color: #FF3366; font-weight: 600; text-decoration: underline;
    text-decoration-color: rgba(255, 51, 102, 0.3);
    transition: 0.2s;
}
.sp-content a:hover { color: #E02E5A; text-decoration-color: #E02E5A; }

.sp-content blockquote {
    font-size: 20px; font-style: italic; color: #2D3748;
    border-left: 4px solid #FF3366;
    padding-left: 20px; margin: 30px 0;
    line-height: 1.6;
}

.sp-content img {
    max-width: 100%; height: auto; border-radius: 12px;
    margin: 20px 0; box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.sp-content ul, .sp-content ol {
    margin-bottom: 25px; padding-left: 20px;
}
.sp-content li { margin-bottom: 10px; }

/* 4. Alt Kısım (Etiketler) */
.sp-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #EDF2F7;
}
.sp-tags a {
    display: inline-block;
    background: #F7FAFC; color: #718096;
    padding: 6px 14px; border-radius: 50px;
    font-size: 13px; font-weight: 600;
    margin-right: 8px; margin-bottom: 8px;
    text-decoration: none; transition: 0.2s;
}
.sp-tags a:hover {
    background: #FF3366; color: #fff;
}

/* MOBİL UYUMLULUK */
@media (max-width: 768px) {
    .single-post-wrapper {
        margin-top: 100px;
        padding: 0 20px; /* Kenar boşluğu */
    }
    .sp-title { font-size: 30px; }
    .sp-content { font-size: 16px; }
}

/* =========================================
   BLOG SAYFASI TASARIMI (MODERN & CREATIVE)
   ========================================= */

.blog-page-wrapper {
    margin-top: 120px;
    margin-bottom: 80px;
}

/* 1. HERO ALANI */
.blog-hero {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.bh-tag {
    display: inline-block; background: #FFF5F7; color: #FF3366;
    font-size: 12px; font-weight: 700; padding: 6px 14px;
    border-radius: 50px; margin-bottom: 15px; text-transform: uppercase; letter-spacing: 1px;
}
.bh-title {
    font-size: 42px; font-weight: 800; color: #1a202c;
    margin-bottom: 15px; letter-spacing: -1px;
}
.bh-desc {
    font-size: 18px; color: #718096; line-height: 1.6;
}

/* 2. MANŞET KARTI (FEATURED) */
.featured-blog-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr; /* Sol Resim, Sağ Yazı */
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 50px;
    transition: all 0.3s ease;
}
.featured-blog-card:hover {
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
    transform: translateY(-5px); border-color: #FF3366;
}

.fbc-image {
    position: relative; overflow: hidden; height: 100%; min-height: 350px;
}
.fbc-image img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.5s ease;
}
.featured-blog-card:hover .fbc-image img { transform: scale(1.05); }

.fbc-content {
    padding: 50px;
    display: flex; flex-direction: column; justify-content: center;
}
.fbc-meta {
    display: flex; align-items: center; gap: 15px; margin-bottom: 15px;
}
.blog-cat-badge {
    background: #1a202c; color: #fff; font-size: 12px; font-weight: 700;
    padding: 5px 12px; border-radius: 6px;
}
.blog-date { font-size: 13px; color: #A0AEC0; font-weight: 600; }

.fbc-title {
    font-size: 32px; font-weight: 800; line-height: 1.3; margin-bottom: 15px;
}
.fbc-title a { text-decoration: none; color: #1a202c; transition: 0.2s; }
.fbc-title a:hover { color: #FF3366; }

.fbc-excerpt {
    font-size: 16px; color: #4A5568; line-height: 1.7; margin-bottom: 25px;
}
.fbc-read-more {
    font-size: 15px; font-weight: 700; color: #FF3366; text-decoration: none;
}

/* 3. BLOG GRID (3'lü Yapı) */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.blog-card {
    background: #fff; border: 1px solid #E2E8F0;
    border-radius: 16px; overflow: hidden;
    transition: all 0.3s ease; display: flex; flex-direction: column;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05); border-color: #FF3366;
}

.bc-image {
    height: 200px; overflow: hidden; position: relative;
}
.bc-image img {
    width: 100%; height: 100%; object-fit: cover; transition: 0.5s;
}
.blog-card:hover .bc-image img { transform: scale(1.1); }

.bc-content { padding: 25px; flex: 1; display: flex; flex-direction: column; }

.bc-meta {
    font-size: 12px; font-weight: 700; color: #718096;
    margin-bottom: 10px; display: flex; align-items: center; gap: 8px;
}
.blog-cat-text { color: #FF3366; }
.blog-dot { color: #CBD5E0; }

.bc-title {
    font-size: 20px; font-weight: 800; line-height: 1.4; margin-bottom: 10px;
}
.bc-title a { color: #1a202c; text-decoration: none; transition: 0.2s; }
.bc-title a:hover { color: #FF3366; }

.bc-excerpt {
    font-size: 14px; color: #718096; line-height: 1.6; margin: 0;
}

.no-img-placeholder {
    width: 100%; height: 100%; background: #F7FAFC;
    display: flex; align-items: center; justify-content: center;
}
.no-img-placeholder::after {
    content: "Görsel Yok"; color: #CBD5E0; font-weight: 700;
}

/* MOBİL UYUMLULUK */
@media (max-width: 1024px) {
    .featured-blog-card { grid-template-columns: 1fr; }
    .fbc-image { height: 250px; min-height: auto; }
    .fbc-content { padding: 30px; }
    
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .blog-page-wrapper { margin-top: 100px; }
    .bh-title { font-size: 32px; }
    
    /* Mobilde Manşet Kartı */
    .featured-blog-card { margin-bottom: 30px; border-radius: 16px; }
    .fbc-image { height: 200px; }
    .fbc-title { font-size: 24px; }
    
    /* Mobilde Grid */
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* =========================================
   MOBİL DÜZENLEMELER (LOGO HİZALAMA & KATEGORİ IZGARA)
   ========================================= */

@media (max-width: 768px) {

    /* 1. Header Logo ve Başlık Hizalaması */
    /* Header'ın sol boşluğunu artırarak aşağıdaki içerik konteyneri (24px) ile eşitliyoruz */
    .site-header .max-w-container {
        padding-left: 24px !important; 
        padding-right: 24px !important;
    }
    
    /* Başlıktaki ekstra 5px boşluğu kaldırıyoruz ki tam hizada dursun */
    .hero-main-title {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* 2. Popüler Kategoriler (2 Sütunlu Grid) */
    .popular-cats-container {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important; /* 2 Eşit Sütun */
        gap: 10px !important;
        padding: 10px !important; /* İç boşluğu biraz kıstık */
    }

    .cat-card-rect {
        flex: none !important;       /* Flex davranışını iptal et */
        width: 100% !important;      /* Kutuyu doldur */
        min-width: 0 !important;     /* Taşmaları önle */
        margin: 0 !important;        /* Olası marginleri sıfırla */
        text-align: center !important;
    }

    /* Mobilde 7. elemanı gizleme kuralı zaten vardı ama PHP'den 6 yaptık. 
       Yine de güvenlik için CSS ile 6'dan sonrasını gizleyelim */
    .popular-cats-container .cat-card-rect:nth-child(n+7) {
        display: none !important;
    }
}

/* =========================================
   MOBİL HIZLI ETİKETLER (TEK SATIR & KAYDIRMA)
   ========================================= */

@media (max-width: 768px) {

    .quick-tags {
        display: flex !important;
        flex-wrap: nowrap !important;       /* Asla alt satıra geçme (Tek Satır) */
        overflow-x: auto !important;        /* Yatay kaydırmayı aktif et */
        gap: 8px !important;                /* Etiketler arası boşluk */
        padding-bottom: 5px !important;     /* Alt kısımdan hafif boşluk */
        
        /* Kaydırma çubuğunu gizle (Modern Görünüm) */
        scrollbar-width: none;              /* Firefox için */
        -ms-overflow-style: none;           /* IE/Edge için */
        
        /* iOS için akıcı kaydırma hissi */
        -webkit-overflow-scrolling: touch;
    }

    /* Chrome ve Safari için kaydırma çubuğunu gizle */
    .quick-tags::-webkit-scrollbar {
        display: none;
    }

    .tag-pill-pink {
        flex-shrink: 0 !important;          /* Etiketlerin sıkışıp küçülmesini engelle */
        white-space: nowrap !important;     /* İçindeki yazıların kırılmasını engelle */
        margin-bottom: 0 !important;        /* Varsa alt boşluğu sıfırla */
    }

    /* Önceki kuralda 7. elemandan sonrasını gizlemiştik.
       Bunu iptal edip hepsinin görünmesini sağlıyoruz. */
    .quick-tags .tag-pill-pink:nth-child(n+7) {
        display: inline-flex !important;
    }
}

/* --- MOBİL UYUMLU PROFESYONEL FOOTER (SVG DÜZELTMELİ) --- */

/* Masaüstünde gizle */
.mobile-footer {
    display: none;
}

/* Sadece Mobil ve Tablette Göster */
@media (max-width: 768px) {
    
    .desktop-footer, footer.main-footer, #footer { 
        display: none !important; 
    }

    .mobile-footer {
        display: block;
        background-color: #ffffff;
        padding: 10px 20px 35px; /* Üst boşluk: 10px */
        margin-top: -20px; /* Footer yukarı çekildi */
        border-top: 1px solid #f2f4f6; 
        text-align: center;
        font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    .mf-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    /* --- Sosyal Medya Kutuları --- */
    .mf-socials {
        display: flex;
        gap: 15px;
        justify-content: center;
    }

    .mf-socials a {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 12px;
        background-color: #f8f9fa; /* Nötr açık gri zemin */
        text-decoration: none;
        transition: all 0.3s ease;
        border: 1px solid transparent;
        box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    }

    /* İKON AYARLARI (Hem FontAwesome <i> hem de SVG için) */
    .mf-socials a i, 
    .mf-socials a svg {
        font-size: 20px; /* Font ikon boyutu */
        width: 18px;     /* SVG genişliği */
        height: 18px;    /* SVG yüksekliği */
        line-height: 1;
        transition: all 0.3s ease;
    }

    /* --- Marka Renklendirmeleri --- */

    /* X (Twitter) - Siyah */
    .soc-x svg { fill: #000000; } /* SVG için fill kullanılır */
    .soc-x:hover { background-color: #000000; transform: translateY(-3px); }
    .soc-x:hover svg { fill: #ffffff; }

    /* Instagram */
    .soc-insta i { color: #E1306C; }
    .soc-insta:hover { background-color: #E1306C; transform: translateY(-3px); }
    
    /* Telegram */
    .soc-tele i { color: #0088cc; }
    .soc-tele:hover { background-color: #0088cc; transform: translateY(-3px); }

    /* Email */
    .soc-mail i { color: #ff2d55; }
    .soc-mail:hover { background-color: #ff2d55; transform: translateY(-3px); }

    /* Hover olunca diğer ikonları beyaz yap */
    .mf-socials a:hover i {
        color: #ffffff !important;
    }

    /* --- Linkler --- */
    .mf-links {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        font-size: 14px;
        font-weight: 500;
        color: #64748b;
    }

    .mf-links a {
        color: #64748b;
        text-decoration: none;
    }
    
    .mf-links .dot {
        color: #cbd5e1;
        font-weight: bold;
    }

    /* --- Logo ve Copyright --- */
    .mf-copyright {
        margin-top: 0px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .mf-copyright .brand-name {
    display: inline-block;
    font-family: 'Poppins', sans-serif; /* Header ile aynı font */
    font-weight: 500; /* Header kalınlığı (ExtraBold) */
    font-size: 24px; /* Header'dan (26px) biraz küçük, mobila uygun */
    color: #FF3366; /* Header rengi ile birebir aynı */
    margin-bottom: 2px;
    letter-spacing: -1px; /* Harf aralığı header ile aynı */
    line-height: 1.2;
}

    .mf-copyright p {
        font-size: 12px;
        color: #94a3b8;
        margin: 0;
        font-family: sans-serif;
    }
}

@media (max-width: 768px) {
    /* Grup Detay Sayfası - Sidebar/Reklam Alanını Gizle */
    .entity-sidebar {
        display: none !important;
    }
}

@media (max-width: 768px) {

    /* --- MOBİL PUAN KARTI (MODERN DİZAYN) --- */
    
    .review-dashboard-card .rd-left {
        /* Flex yerine Grid kullanarak elemanları istediğimiz gibi dizeriz */
        display: grid !important;
        grid-template-columns: auto 1fr !important; /* Sol: Puan, Sağ: Diğerleri */
        grid-template-rows: auto auto !important;   /* İki satır (Yıldızlar + Yazı) */
        gap: 2px 15px !important; /* Dikey boşluk 2px, Yatay boşluk 15px */
        
        /* Görsel Güzelleştirme */
        background-color: #F7FAFC !important; /* Hafif gri kutu */
        border: 1px solid #EDF2F7 !important;
        border-radius: 12px !important;
        padding: 15px 20px !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        align-items: center !important;
        
        /* Eski çizgileri kaldır */
        border-bottom: 1px solid #EDF2F7 !important; 
    }

    /* 1. BÜYÜK PUAN (SOLDA TEK BLOK) */
    .rd-big-score {
        grid-column: 1 / 2 !important; /* 1. Kolona yerleş */
        grid-row: 1 / 3 !important;    /* İki satırı da kapla (Dikey ortala) */
        
        font-size: 42px !important;    /* İdeal büyüklük */
        font-weight: 800 !important;
        color: #1a202c !important;
        line-height: 1 !important;
        margin: 0 !important;
    }

    /* 2. YILDIZLAR (SAĞ ÜST) */
    .rd-stars-static {
        grid-column: 2 / 3 !important; /* 2. Kolona yerleş */
        grid-row: 1 / 2 !important;    /* 1. Satıra yerleş */
        
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
        margin: 0 !important;
        align-self: end !important;    /* Satırın altına yasla */
    }
    
    .rd-stars-static svg {
        width: 16px !important;
        height: 16px !important;
    }

    /* 3. İNCELEME SAYISI (SAĞ ALT) */
    .rd-total-count {
        grid-column: 2 / 3 !important; /* 2. Kolona yerleş */
        grid-row: 2 / 3 !important;    /* 2. Satıra yerleş */
        
        font-size: 13px !important;
        color: #718096 !important;
        font-weight: 600 !important;
        margin: 0 !important;
        align-self: start !important;  /* Satırın üstüne yasla */
        
        /* "1 inceleme" yazısı yıldızlara yakın dursun */
        margin-top: 2px !important; 
    }
}

/* =========================================
   PROFESYONEL SAYFALAMA (MODERN PAGINATION)
   ========================================= */

.cat-pagination {
    margin-top: 40px !important;
    margin-bottom: 40px !important;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px; /* Kutular arası boşluk */
    flex-wrap: wrap;
    width: 100%;
}

/* Sayı Kutuları ve Oklar */
.cat-pagination .page-numbers {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px; /* Genişlik sabit */
    height: 44px; /* Yükseklik sabit */
    background-color: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px; /* Hafif yuvarlatılmış köşeler */
    color: #4A5568;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* Hover (Üzerine Gelince) */
.cat-pagination a.page-numbers:hover {
    border-color: #FF3366;
    color: #FF3366;
    background-color: #FFF5F7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 51, 102, 0.15);
}

/* Aktif Sayfa */
.cat-pagination .page-numbers.current {
    background: linear-gradient(135deg, #FF3366 0%, #E02E5A 100%);
    border-color: transparent;
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(255, 51, 102, 0.3);
    cursor: default;
    pointer-events: none;
    transform: scale(1.05); /* Aktif olan hafif büyük dursun */
}

/* Üç Nokta (...) */
.cat-pagination .page-numbers.dots {
    border: none;
    background: transparent;
    box-shadow: none;
    color: #A0AEC0;
    width: auto; /* Genişlik serbest */
    min-width: 20px;
    letter-spacing: 2px;
}

/* Ok İkonları */
.cat-pagination .page-numbers svg {
    width: 20px;
    height: 20px;
}

/* --- MOBİL UYUMLULUK --- */
@media (max-width: 768px) {
    .cat-pagination {
        gap: 6px; /* Mobilde boşlukları kıs */
        margin-top: 30px !important;
    }

    .cat-pagination .page-numbers {
        width: 38px;  /* Mobilde daha küçük kutu */
        height: 38px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* Mobilde 'Sonraki' ve 'Önceki' butonlarını biraz daha belirgin yapabiliriz */
    .cat-pagination .next, 
    .cat-pagination .prev {
        background-color: #F7FAFC;
    }
}

.seo-hidden-content {
    /* Bu teknik, metni "ekran okuyucular" (erişilebilirlik) için açık tutar
       ancak normal ziyaretçilerin gözünden gizler.
       Google bunu display:none'a göre daha az riskli bulur. */
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    
    /* Eğer tamamen %100 gizli değil de footerın altında 
       görünmez bir yerde dursun isterseniz bu bloğu silip 
       sadece şunu yazın: visibility: hidden; height: 0; */
}

/* =========================================
   İLETİŞİM SAYFASI TASARIMI
   ========================================= */

.contact-page-wrapper {
    margin-top: 140px; /* Header payı */
    margin-bottom: 80px;
}

/* Başlık Alanı */
.contact-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}
.contact-title {
    font-size: 42px; font-weight: 800; color: #1a202c;
    letter-spacing: -1px; margin-bottom: 15px; line-height: 1.2;
}
.contact-desc {
    font-size: 18px; color: #718096; line-height: 1.6;
}

/* Grid Yapısı */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr; /* Sol dar, sağ geniş */
    gap: 40px;
    align-items: start;
}

/* Sol Kolon (Bilgi Kartı) */
.contact-visual-card {
    background: #1a202c; /* Siyah tema */
    color: #fff;
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}
.cv-icon { font-size: 48px; margin-bottom: 20px; }
.contact-visual-card h3 {
    font-size: 28px; font-weight: 800; margin-bottom: 15px; color: #fff;
}
.contact-visual-card p {
    font-size: 16px; color: #A0AEC0; line-height: 1.7; margin-bottom: 40px;
}

.contact-methods { display: flex; flex-direction: column; gap: 20px; }
.cm-item { display: flex; align-items: center; gap: 15px; }
.cm-icon {
    width: 44px; height: 44px; background: rgba(255,255,255,0.1);
    border-radius: 12px; display: flex; align-items: center; justify-content: center;
    font-size: 20px;
}
.cm-text { display: flex; flex-direction: column; }
.cm-label { font-size: 12px; color: #A0AEC0; font-weight: 600; text-transform: uppercase; }
.cm-link { font-size: 16px; font-weight: 700; color: #fff; text-decoration: none; transition: 0.2s; }
.cm-link:hover { color: #FF3366; }

/* Sağ Kolon (Form Kutusu) */
.gruply-contact-box {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

/* Form Elemanları */
.gruply-form .form-row {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.gruply-form .form-group { margin-bottom: 20px; }

.gruply-form label {
    display: block; font-size: 14px; font-weight: 700; color: #4A5568;
    margin-bottom: 8px;
}
.gruply-form input, 
.gruply-form textarea {
    width: 100%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 15px; font-family: 'Manrope', sans-serif; color: #2D3748;
    transition: all 0.2s; outline: none;
}
.gruply-form input:focus, 
.gruply-form textarea:focus {
    background: #fff; border-color: #FF3366;
    box-shadow: 0 0 0 4px rgba(255, 51, 102, 0.1);
}
.gruply-form textarea { height: 140px; resize: vertical; }

/* Gönder Butonu */
.btn-contact-submit {
    width: 100%;
    background-color: #FF3366;
    color: #fff;
    font-weight: 800; font-size: 16px;
    padding: 18px;
    border: none; border-radius: 12px;
    cursor: pointer; transition: 0.2s;
    display: flex; align-items: center; justify-content: center; gap: 10px;
}
.btn-contact-submit:hover {
    background-color: #E02E5A; transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 51, 102, 0.25);
}

/* Uyarı Mesajları */
.contact-alert {
    padding: 15px; border-radius: 8px; margin-bottom: 25px; font-size: 15px;
}
.contact-alert.success { background: #F0FFF4; color: #276749; border: 1px solid #C6F6D5; }
.contact-alert.error { background: #FFF5F5; color: #C53030; border: 1px solid #FED7D7; }

/* Mobil Uyumluluk */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; gap: 30px; }
    .contact-visual-card { padding: 30px; }
    .gruply-contact-box { padding: 25px; }
}

@media (max-width: 600px) {
    .contact-page-wrapper { margin-top: 100px; }
    .contact-title { font-size: 32px; }
    .gruply-form .form-row { grid-template-columns: 1fr; gap: 0; }
}

