/* ==========================================================================
   1. DEĞİŞKENLER VE SIFIRLAMA (VARIABLES & RESETS)
   ========================================================================== */
:root {
    --primary: #d92323;
    --primary-hover: #b91c1c;
    --dark: #0f172a;
    --nav-bg: #020617;
    --light: #f8fafc;
    --border: #e2e8f0;
    --gray: #64748b;
}

* { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif; 
}

body { 
    background: var(--light); 
    color: var(--dark); 
    display: flex; 
    flex-direction: column; 
    min-height: 100vh; 
}

/* WordPress Admin Bar Gizleme */
#wpadminbar { display: none !important; }
.alignleft { float: left; margin: 0 15px 15px 0; }
.alignright { float: right; margin: 0 0 15px 15px; }
.aligncenter { display: block; margin: 15px auto; }

/* ==========================================================================
   2. HEADER & TOP BAR
   ========================================================================== */
header { 
    background: #fff; 
    position: sticky; 
    top: 0; 
    z-index: 100; 
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.top-bar { 
    padding: 12px 5%; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    max-width: 1300px; 
    margin: 0 auto; 
}

.logo { 
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none; 
    line-height: 1.1;
}

.logo-img {
    max-height: 60px;
    width: auto;     
    object-fit: contain;
    display: block;
}

.logo small {
    display: block; 
    font-size: 0.65rem; 
    font-weight: 500; 
    color: var(--gray); 
    letter-spacing: 0.5px;
    margin-top: 3px;
}

/* ==========================================================================
   3. BUTON STİLLERİ
   ========================================================================== */
.nav-btns { 
    display: flex; 
    gap: 12px; 
}

.btn { 
    padding: 9px 18px; 
    border-radius: 6px; 
    text-decoration: none; 
    font-size: 0.875rem; 
    font-weight: 600; 
    border: none; 
    cursor: pointer; 
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-outline { 
    border: 1px solid var(--border); 
    color: var(--dark); 
    background: transparent; 
}

.btn-outline:hover {
    background: var(--light);
    border-color: #cbd5e1;
}

.btn-primary { 
    background: var(--primary); 
    color: #fff; 
}

.btn-primary:hover {
    background: var(--primary-hover);
}

/* ==========================================================================
   4. ANA NAVİGASYON & DROPDOWN MENÜ
   ========================================================================== */
nav.main-nav { 
    background: var(--nav-bg); 
    padding: 0 5%; 
}

.nav-list { 
    display: flex; 
    justify-content: center; 
    align-items: center;
    list-style: none; 
    max-width: 1300px; 
    margin: 0 auto; 
    padding: 0;
}

.nav-list li.dropdown,
.nav-list li.menu-item-has-children {
    position: relative;
}

.nav-list li a,
.nav-list li.dropdown > a,
.nav-list li.menu-item-has-children > a,
nav.main-nav a { 
    display: block; 
    padding: 16px 22px; 
    color: #94a3b8 !important; 
    text-decoration: none !important; 
    font-size: 0.875rem; 
    font-weight: 600; 
    white-space: nowrap; 
    border-bottom: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav-list li.dropdown:hover > a,
.nav-list li.menu-item-has-children:hover > a,
.nav-list li a:hover { 
    color: #ffffff !important; 
    background: rgba(255, 255, 255, 0.04);
    border-bottom-color: var(--primary);
}

.dropdown-menu,
.nav-list ul.sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #090d16;
    border: 1px solid #1e293b;
    border-top: 2px solid var(--primary);
    border-radius: 0 0 6px 6px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
    list-style: none;
    padding: 8px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.2s ease;
    z-index: 1000;
}

.nav-list li.dropdown:hover .dropdown-menu,
.nav-list li.menu-item-has-children:hover ul.sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a,
.nav-list ul.sub-menu li a {
    display: block;
    padding: 10px 20px;
    color: #cbd5e1 !important;
    text-align: left;
    text-decoration: none !important;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.15s ease;
}

.dropdown-menu li a:hover,
.nav-list ul.sub-menu li a:hover {
    color: #ffffff !important;
    background: rgba(217, 35, 35, 0.15);
    padding-left: 24px;
}

/* ==========================================================================
   5. HERO & ARAMA MOTORU
   ========================================================================== */
.hero { 
    background: var(--dark); 
    color: #fff; 
    padding: 55px 20px 65px; 
    text-align: center; 
}

.hero h1 { 
    font-size: 2.1rem; 
    font-weight: 700;
    margin-bottom: 10px; 
    letter-spacing: -0.5px;
}

.hero p { 
    color: #94a3b8; 
    font-size: 1rem; 
}

/* ==========================================================================
   6. SPONSOR LOGO BANDI
   ========================================================================== */
.sponsor-slider {
    width: 100%;
    background: #ffffff;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    margin-bottom: 30px;
    display: block !important;
}

.sponsor-track {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.sponsor-item {
    width: 120px !important;
    height: 120px !important;
    flex-shrink: 0;
    display: block !important;
}

.sponsor-link {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 120px !important;
    height: 120px !important;
    text-decoration: none;
    padding: 8px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-sizing: border-box;
    transition: all 0.2s ease;
}

.sponsor-link img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    display: block !important;
}

.sponsor-link:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(217, 35, 35, 0.12);
}

/* ==========================================================================
   7. ANA İÇERİK KONTENYONU (MAIN CONTAINER)
   ========================================================================== */
main.container { 
    flex: 1; 
    max-width: 1300px; 
    width: 100%; 
    margin: 0 auto; 
    padding: 40px 20px; 
}

/* ==========================================================================
   8. KATEGORİ GRID VE KARTLARI
   ========================================================================== */
.categories-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 20px; 
    margin-bottom: 50px; 
}

.cat-card { 
    background: #fff; 
    padding: 26px 20px; 
    border-radius: 8px; 
    border: 1px solid var(--border); 
    text-decoration: none; 
    color: inherit; 
    transition: all 0.25s ease; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.cat-card:hover { 
    transform: translateY(-4px); 
    border-color: var(--primary);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: background 0.2s ease;
}

.cat-card:hover .icon-wrapper {
    background: #fef2f2;
}

.icon-wrapper svg {
    width: 24px;
    height: 24px;
    stroke: var(--dark);
    stroke-width: 1.8;
    fill: none;
    transition: stroke 0.2s ease;
}

.cat-card:hover .icon-wrapper svg {
    stroke: var(--primary);
}

.cat-title { 
    font-weight: 700; 
    font-size: 1.05rem; 
    color: var(--dark);
    margin-bottom: 6px; 
}

.cat-desc { 
    font-size: 0.85rem; 
    color: var(--gray); 
    line-height: 1.45; 
}

/* ==========================================================================
   9. VİTRİN VE İLAN KARTLARI
   ========================================================================== */
.vitrin-section { 
    margin-top: 10px; 
}

.section-title { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 20px; 
}

.section-title h2 { 
    font-size: 1.25rem; 
    font-weight: 700;
}

.link-more { 
    font-size: 0.875rem; 
    color: var(--primary); 
    text-decoration: none; 
    font-weight: 600; 
}

.link-more:hover {
    text-decoration: underline;
}

.grid-list { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr)); 
    gap: 22px; 
}

.card { 
    background: #ffffff; 
    border: 1px solid var(--border); 
    border-radius: 10px; 
    padding: 18px; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between; 
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border-color: #cbd5e1;
}

.card-header { 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
    margin-bottom: 14px; 
}

.badge { 
    padding: 4px 8px; 
    border-radius: 4px; 
    font-size: 0.75rem; 
    font-weight: 700; 
}

.badge-blue { 
    background: #e0f2fe; 
    color: #0369a1; 
}

.badge-amber { 
    background: #fef3c7; 
    color: #92400e; 
}

.status-text { 
    font-size: 0.8rem; 
    color: var(--gray); 
}

.status-dot { 
    height: 8px; 
    width: 8px; 
    border-radius: 50%; 
    display: inline-block; 
    margin-right: 6px; 
}

.status-dot.green { 
    background-color: #22c55e; 
}

.card-logo-area {
    width: 100%;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 10px;
}

.card-logo-area img {
    max-height: 240px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

.card-body h3 { 
    font-size: 1.05rem; 
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px; 
    text-align: center;
    line-height: 1.35;
}

.card-body .location { 
    font-size: 0.825rem; 
    color: var(--gray); 
    text-align: center;
    margin-bottom: 12px;
}

.card-body .parkur { 
    font-size: 0.825rem; 
    color: #334155; 
    border-top: 1px dashed var(--border);
    padding-top: 10px;
    line-height: 1.45;
}

.card-footer { 
    border-top: 1px solid var(--border); 
    padding-top: 12px; 
    margin-top: 14px; 
    display: flex; 
    justify-content: space-between; 
    align-items: center; 
}

/* ==========================================================================
   10. SEKTÖREL HABERLER & BLOG MODÜLÜ
   ========================================================================== */
.news-section {
    margin-top: 50px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.news-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-decoration: none;
    color: inherit;
    transition: all 0.25s ease;
}

.news-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 10px;
}

.news-tag {
    background: #f1f5f9;
    color: var(--dark);
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 600;
}

.news-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-excerpt {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 15px;
}

.news-read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
}

/* ==========================================================================
   11. FOOTER & SOSYAL MEDYA
   ========================================================================== */
footer { 
    background: var(--dark); 
    color: #94a3b8; 
    padding: 40px 20px 20px; 
    margin-top: auto; 
}

.footer-inner { 
    max-width: 1300px; 
    margin: 0 auto; 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); 
    gap: 30px; 
    padding-bottom: 30px; 
    border-bottom: 1px solid #1e293b; 
}

.footer-col h4 { 
    color: #fff; 
    margin-bottom: 15px; 
    font-size: 0.95rem;
}

.footer-col ul { 
    list-style: none; 
    font-size: 0.85rem; 
    line-height: 2; 
}

.footer-col ul a { 
    color: inherit; 
    text-decoration: none; 
    transition: color 0.2s ease;
}

.footer-col ul a:hover {
    color: #fff;
}

.footer-bottom { 
    max-width: 1300px; 
    margin: 20px auto 0; 
    text-align: center; 
    font-size: 0.8rem; 
}

/* ==========================================================================
   12. MOBİL RESPONSİVE KURALLAR
   ========================================================================== */
@media (max-width: 768px) {
    .logo-img {
        max-height: 32px;
    }
    .top-bar {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
        text-align: center;
    }
    .nav-btns {
        justify-content: center;
    }
    .search-box {
        flex-direction: column;
    }
    .search-box select {
        border-left: none;
        border-top: 1px solid var(--border);
        padding: 10px 0;
    }
    .search-box button {
        padding: 12px;
    }
    .nav-list {
        justify-content: flex-start;
        overflow-x: auto;
    }
    .dropdown-menu,
    .nav-list ul.sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: transparent;
        border: none;
        padding-left: 15px;
        display: none;
    }
    .nav-list li.dropdown:hover .dropdown-menu,
    .nav-list li.menu-item-has-children:hover ul.sub-menu {
        display: block;
    }
}

/* ==========================================================================
   FOOTER SOSYAL MEDYA İKONLARI DÜZELTMESİ
   ========================================================================== */
.footer-socials {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-top: 15px !important;
    flex-wrap: wrap !important;
}

.social-icon {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    min-height: 36px !important;
    border-radius: 6px !important;
    background: #1e293b !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    flex-shrink: 0 !important;
    transition: all 0.2s ease !important;
}

.social-icon svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    min-height: 18px !important;
    stroke: #94a3b8 !important;
    stroke-width: 2 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
    fill: none !important;
    display: block !important;
}

.social-icon:hover {
    background: var(--primary) !important;
}

.social-icon:hover svg {
    stroke: #ffffff !important;
}

/* ==========================================================================
   FİRMA DETAY SAYFASI ÖZEL STİLLERİ
   ========================================================================== */
.firma-detay-container {
    padding-top: 40px;
    padding-bottom: 50px;
}

.breadcrumb {
    font-size: 0.85rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: var(--gray);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.firma-profil-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 30px;
    align-items: start;
}

.main-column {
    min-width: 0;
}

.profil-header-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    display: flex;
    gap: 25px;
    align-items: flex-start;
    margin-bottom: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.profil-logo-box {
    width: 110px;
    height: 110px;
    min-width: 110px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    overflow: hidden;
}

.profil-logo-box img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.logo-placeholder-text {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
}

.profil-header-info {
    flex: 1;
    min-width: 0;
}

.badge-status-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.firma-baslik {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 6px;
}

.firma-alt-bilgi {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Sekme (Tab) Yapısı */
.tab-wrapper {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.tab-nav {
    display: flex;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    overflow-x: auto;
}

.tab-btn {
    background: transparent;
    border: none;
    padding: 15px 22px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--gray);
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
}

.tab-btn:hover {
    color: var(--dark);
}

.tab-btn.active {
    color: var(--primary);
    background: #ffffff;
    border-bottom-color: var(--primary);
}

.tab-content {
    display: none;
    padding: 30px;
}

.tab-content.active {
    display: block;
}

.section-subheading {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.tab-description {
    font-size: 0.95rem;
    color: #334155;
    line-height: 1.7;
    margin-bottom: 20px;
}

.sertifika-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px dashed var(--border);
}

.info-label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 4px;
}

.info-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
}

.info-value-primary {
    color: var(--primary);
}

/* Sağ Sidebar Kolonu */
.sidebar-column {
    min-width: 0;
}

.sidebar-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
    position: sticky;
    top: 90px;
}

.sidebar-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--dark);
    border-bottom: 2px solid var(--primary);
    padding-bottom: 8px;
    margin-bottom: 18px;
}

.contact-item {
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 1px dashed var(--border);
}

.contact-label {
    display: block;
    font-size: 0.75rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.contact-value, .contact-phone, .contact-link, .contact-web {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark);
    text-decoration: none;
}

.contact-phone:hover, .contact-link:hover, .contact-web:hover {
    color: var(--primary);
}

.contact-address-box {
    margin-top: 14px;
}

.contact-address-text {
    font-size: 0.9rem;
    color: #334155;
    line-height: 1.5;
    margin-top: 3px;
}

/* Mobil Responsive */
@media (max-width: 992px) {
    .firma-profil-grid {
        grid-template-columns: 1fr;
    }
    .profil-header-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .badge-status-row {
        justify-content: center;
    }
    .sidebar-card {
        position: static;
        margin-top: 25px;
    }
}

/* ==========================================================================
   FİRMA LOGO BOYUTLANDIRMASI (200px x 200px)
   ========================================================================== */

/* 1. Liste Kartlarındaki Logo Alanı */
.card-logo-area {
    width: 100%;
    height: 200px !important;
    max-height: 200px !important;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 14px;
    padding: 10px;
    box-sizing: border-box;
}

.card-logo-area img {
    max-height: 180px !important;
    max-width: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    display: block;
}

/* 2. Firma Detay Sayfası Profil Logo Kutusu */
.profil-logo-box {
    width: 200px !important;
    height: 200px !important;
    min-width: 200px !important;
    min-height: 200px !important;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    overflow: hidden;
    box-sizing: border-box;
}

.profil-logo-box img {
    max-width: 100% !important;
    max-height: 100% !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}
/* ==========================================================================
   HERO ARAMA KUTUSU (SEARCH BOX) DÜZENLEMESİ
   ========================================================================== */

.hero-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 20px;
}

/* Ana Arama Formu Konteynerı */
.search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    margin-top: 30px;
    gap: 10px;
    box-sizing: border-box;
    width: 100%;
}

/* Arama Metin Girdi Alanı (Input) */
.search-box input[type="text"] {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 0.95rem;
    color: #0f172a;
    background: transparent;
    min-width: 0; /* İçeriğin taşmasını engeller */
}

.search-box input[type="text"]::placeholder {
    color: #94a3b8;
}

/* Şehir Filtreleme Seçim Kutusu (Select) */
.search-box select {
    border: 1px solid #e2e8f0 !important;
    background: #f8fafc !important;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 0.9rem;
    color: #334155;
    outline: none;
    cursor: pointer;
    height: 46px;
    flex-shrink: 0;
}

.search-box select:focus {
    border-color: var(--primary);
}

/* Gönder / Filtrele Butonu */
.search-box button {
    background-color: var(--primary);
    color: #ffffff;
    border: none;
    border-radius: 6px;
    padding: 0 24px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    height: 46px;
    transition: background-color 0.2s ease;
    flex-shrink: 0;
    white-space: nowrap;
}

.search-box button:hover {
    opacity: 0.9;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 768px) {
    .search-box {
        flex-direction: column;
        background: transparent;
        box-shadow: none;
        padding: 0;
        gap: 12px;
    }

    .search-box input[type="text"],
    .search-box select,
    .search-box button {
        width: 100%;
        height: 48px;
        border-radius: 8px;
    }

    .search-box input[type="text"] {
        background: #ffffff;
        border: 1px solid #e2e8f0;
        padding: 0 16px;
    }
}