/* assets/css/style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS değişkenleri dynamic-theme.css'ten gelir — header.php'de dynamic-theme.css, style.css'ten önce yüklenmeli */

/* KÜRESEL KURAL: Tüm Yapıda Gölgeler Tamamen Devre Dışı */
*, *::before, *::after {
    box-shadow: none !important;
}

body {
    font-family: 'Inter', sans-serif !important;
    overflow-x: hidden;
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
body > section,
body > .container,
body > main {
    flex: 1;
}

.pt-5 {
    padding-top: 1rem !important;
}

/* Sitenin En Üstündeki Gradient Çizgi */
.top-gradient-line {
    height: 3px;
    width: 100%;
    background: linear-gradient(90deg, var(--brand-color) 0%, #ffb700 100%);
    position: relative;
    z-index: 1040;
}

/* KÜRESEL RADİUS KURALI: 5px */
.card, .dropdown-menu, .btn, .form-control, .input-group-text, 
.badge, .extension-box, .product-card, .mega-menu-icon,
.bg-light, .cart-btn, .cart-badge, img, [class*="rounded-"],
.feature-card::before, .premium-social-btn, .footer-brand-divider,
.testimonial-grid-card, .tgc-avatar {
    border-radius: 5px !important;
}
.offcanvas-lg { border-radius: 0 !important; }

/* Renk Sınıfları */
.text-brand { color: var(--brand-color) !important; }
.bg-brand { background-color: var(--brand-color) !important; }

.hover-brand { transition: color 0.2s ease; }
.hover-brand:hover { color: var(--brand-color) !important; }

.btn-brand { 
    background-color: var(--brand-color); 
    color: white; 
    border: none; 
    transition: background-color 0.3s; 
}
.btn-brand:hover {
    background-color: var(--brand-hover, #e67600);
    color: white;
}

/* Premium İçi Boş (Outline) Butonlar - MİNİMAL */
.btn-outline-brand {
    color: var(--brand-color);
    background-color: transparent;
    border: 1px solid var(--brand-color);
    transition: all 0.3s ease;
}
.btn-outline-brand:hover {
    background-color: var(--brand-color) !important;
    color: #ffffff !important;
    border-color: var(--brand-color) !important;
}
.btn-outline-light {
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    transition: all 0.3s ease;
}
.btn-outline-light:hover {
    background-color: #ffffff;
    color: #0a1128 !important;
    border-color: #ffffff;
}

/* ==========================================================================
   GLOBAL BUTON TIKLAMA (ACTIVE/FOCUS) BEYAZLAŞMA SORUNU KESİN ÇÖZÜMÜ
   ========================================================================== */
.btn-brand:focus, .btn-brand:active, .btn-brand:active:focus,
.btn-outline-brand:focus, .btn-outline-brand:active, .btn-outline-brand:active:focus,
.btn-showcase-buy:focus, .btn-showcase-buy:active, .btn-showcase-buy:active:focus {
    background-color: var(--brand-color) !important;
    color: #ffffff !important;
    border-color: var(--brand-color) !important;
    outline: none !important;
    box-shadow: none !important;
}

/* Modern Hamburger Butonu */
.custom-toggler {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    padding: 4px;
    cursor: pointer;
    border-radius: 8px;
    transition: background 0.2s ease;
}
.custom-toggler:hover,
.custom-toggler:focus {
    background: rgba(0, 0, 0, 0.06);
    outline: none;
}
.custom-toggler span {
    display: block;
    height: 2px;
    border-radius: 99px;
    background-color: #1a202c;
    transition: width 0.25s ease, opacity 0.2s ease, transform 0.2s ease;
}
/* 1. çizgi — tam genişlik */
.custom-toggler span:nth-child(1) { width: 20px; }
/* 2. çizgi — orta, brand rengi */
.custom-toggler span:nth-child(2) { width: 14px; background-color: var(--brand-color); }
/* 3. çizgi — tam genişlik */
.custom-toggler span:nth-child(3) { width: 20px; }
/* 4. çizgi — gizle (HTML 4 span içeriyor, 4.'yü gösterme) */
.custom-toggler span:nth-child(4) { display: none; }
/* Hover: kısa çizgi tam genişliğe uzasın */
.custom-toggler:hover span:nth-child(2) { width: 20px; }

/* NAVBAR TASARIMI */
.navbar {
    height: 70px;
    position: sticky;
    top: 0;
    z-index: 1030;
    background-color: #ffffff !important;
    border-bottom: 1px solid #e2e8f0;
    padding: 0 !important; 
}
.navbar > .container { 
    position: relative; 
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.navbar-brand {
    display: flex;
    align-items: center;
    height: 100%;
}
.navbar-brand img { 
    max-height: 40px !important; 
    width: auto;
    object-fit: contain; 
}

@media (min-width: 992px) {
    .navbar-nav { height: 100%; }
    .navbar-nav .nav-item { height: 100%; display: flex; align-items: center; }
    
    .navbar-nav .nav-link {
        font-size: 14px;
        font-weight: 500;
        color: #4a5568 !important;
        height: 70px; 
        display: flex;
        align-items: center;
        gap: 6px; 
        padding: 0 0.75rem !important;
        transition: color 0.2s ease;
    }
    .navbar-nav .nav-link:hover { color: var(--brand-color) !important; }
    .navbar-nav .nav-link i { font-size: 14px; opacity: 0.6; display: flex; align-items: center; line-height: 1; }

    .action-divider {
        border-left: 1px solid #e2e8f0;
        padding-left: 1rem;
        margin-left: 1rem;
        height: 32px;
    }

    .navbar .dropdown:hover .dropdown-menu { display: block; }
    .navbar .position-static .dropdown-menu {
        position: absolute !important; 
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 70px !important; 
        margin-top: 10px !important; 
        border: 1px solid #e2e8f0;
        border-top: none;
        padding: 2rem !important; 
        background: #ffffff;
        border-radius: 0 0 5px 5px !important;
    }
    .navbar .position-static .dropdown-menu::before {
        content: '' !important; position: absolute !important; top: -15px !important; left: 0 !important; right: 0 !important; height: 15px !important; background: transparent !important; display: block !important;
    }
}

@media (max-width: 991.98px) {
    .offcanvas-lg { background-color: #ffffff; width: 100% !important; max-width: 100% !important; }
    .mobile-offcanvas-header { padding: 1.2rem 1.5rem !important; }
    .offcanvas-body { padding: 0 !important; }
    .navbar-nav { align-items: stretch !important; width: 100%; padding-top: 1rem; margin: 0 !important; }
    .navbar-nav .nav-item { width: 100%; }
    .navbar-nav .nav-link {
        font-size: 15px;
        font-weight: 500;
        color: #2d3748 !important;
        padding: 1.2rem 1.5rem !important; 
        border-bottom: 1px solid #f1f5f9;
        display: flex;
        align-items: center;
        justify-content: flex-start !important; 
        width: 100%;
        gap: 15px;
    }
    .navbar-nav .nav-link i:first-child { font-size: 1.2rem; color: var(--brand-color); width: 24px; text-align: center; }
    .navbar-nav .nav-link .bi-chevron-down { margin-left: auto !important; font-size: 12px; color: #a0aec0; }
    
    .navbar .dropdown-menu {
        border: none;
        background-color: #f8f9fa;
        padding: 1rem 1.5rem;
        margin-top: 0;
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }
    .navbar .border-start { border-left: none !important; }
    .navbar .px-4, .navbar .ps-4, .navbar .pe-3 { padding-left: 0 !important; padding-right: 0 !important; }

    .action-divider {
        margin-top: auto; 
        padding: 1.5rem;
        border-top: 1px solid #e2e8f0;
        width: 100%;
        display: flex;
        justify-content: center;
        gap: 1rem;
        background-color: #fafbfc;
    }
    .action-divider .btn-brand { flex-grow: 1; justify-content: center; }
}

/* Mega Menü */
.mega-menu-title { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: #a0aec0; font-weight: 700; margin-bottom: 1rem; }
.mega-menu-item { display: flex; align-items: flex-start; padding: 10px 12px; margin-bottom: 4px; border-radius: 5px; transition: all 0.2s ease; text-decoration: none; }
.mega-menu-item:hover { background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.05); }
.mega-menu-item:hover .mega-title { color: var(--brand-color) !important; }
.mega-menu-item:hover .mega-icon-arrow { transform: translateX(4px); opacity: 0.8 !important; }
.mega-menu-icon { width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.08); color: var(--brand-color); font-size: 16px; margin-right: 14px; flex-shrink: 0; }

.featured-theme-card { transition: all 0.2s ease; background-color: #f8f9fa; }
.featured-theme-card:hover { border-color: var(--brand-color) !important; background-color: #ffffff; }
.featured-theme-card:hover .mega-title { color: var(--brand-color) !important; }

.script-card { transition: all 0.3s ease; }
.script-card:hover { border-color: var(--brand-color) !important; transform: translateY(-3px); }
.script-card:hover .mega-title { color: var(--brand-color) !important; }

.cart-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background-color: #ffffff; color: #2d3748; text-decoration: none; position: relative; transition: 0.2s; border: 1px solid #edf2f7; }
.cart-btn:hover { background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.09); color: var(--brand-color); }
.cart-badge { position: absolute; top: -5px; right: -5px; background-color: var(--brand-color); color: white; font-size: 10px; font-weight: 600; width: 18px; height: 18px; display: flex; align-items: center; justify-content: center; border: 2px solid #ffffff; }

/* --- HERO BÖLÜMÜ --- */
.hero-section { background: repeating-linear-gradient(-45deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.07) 1px, transparent 1px, transparent 20px), linear-gradient(135deg, var(--dark-bg) 0%, #162a5c 50%, #0a192f 100%); color: white; padding: 40px 0 80px 0; position: relative; overflow: hidden; }
@media (min-width: 992px) { .hero-section { padding: 60px 0 100px 0; } }

/* --- ARAMA KARTI --- */
.search-wrapper { margin-top: -30px; position: relative; z-index: 10; }
@media (min-width: 768px) { .search-wrapper { margin-top: -45px; } }
.search-card { background: white; padding: 20px; border: 1px solid #e2e8f0; }
@media (min-width: 768px) { .search-card { padding: 24px; } }
.search-card .custom-search-group { display: flex; align-items: center; border: 1px solid #e2e8f0; background-color: #ffffff; padding: 6px 8px; transition: border-color 0.3s ease; }
.search-card .custom-search-group:focus-within { border-color: var(--brand-color); }
.search-card .custom-search-group i.search-icon { color: #a0aec0; font-size: 1.1rem; }
.search-card .custom-search-group input { border: none; background: transparent; outline: none; height: 42px; font-size: 15px; width: 100%; }
.search-card .custom-search-group input::placeholder { color: #a0aec0; }
@media (max-width: 575.98px) {
    .search-card .custom-search-group { flex-direction: column; gap: 10px; background: transparent; border: none; padding: 0; }
    .search-card .custom-search-group .form-control { border: 1px solid #e2e8f0 !important; background: #ffffff; height: 46px; padding: 0 15px !important; }
    .search-card .custom-search-group button { width: 100%; height: 46px !important; }
    .search-card .custom-search-group i.search-icon { display: none; }
}
.extension-box { border: 1px solid #edf2f7; padding: 6px 14px; font-size: 0.8rem; display: inline-flex; align-items: center; background-color: #f8f9fa; color: #2d3748; cursor: pointer; transition: all 0.2s ease; }
.extension-box:hover { border-color: var(--brand-color); background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.05); color: var(--brand-color) !important; }

/* --- VİTRİN KARTLARI --- */
.product-card { border: 1px solid #e2e8f0; transition: border-color 0.3s ease; background: white; display: flex; flex-direction: column; overflow: hidden; }
.product-card:hover { border-color: var(--brand-color); }
.product-img-top { background-color: #f8f9fa; position: relative; border-bottom: 1px solid #e2e8f0; height: 200px; border-radius: 0 !important; overflow: hidden; }
.product-img-top img { width: 100%; height: 100%; object-fit: cover; object-position: top; border-radius: 0 !important; transition: transform 0.5s ease; }
.product-card:hover .product-img-top img { transform: scale(1.05); }

/* --- AVANTAJLAR (Neden Biz) --- */
.why-us-section { position: relative; background: #ffffff; border-bottom: 1px solid #e2e8f0; }
.feature-card { position: relative; overflow: hidden; background: #ffffff; border: 1px solid #e2e8f0 !important; transition: all 0.3s ease; z-index: 1; border-radius: 5px; }
.feature-watermark { position: absolute; bottom: -15px; right: -5px; font-size: 80px; font-weight: 800; color: rgba(0, 0, 0, 0.025); line-height: 1; z-index: -1; font-family: 'Arial Black', sans-serif; }
.feature-accent-line { width: 2px; height: 16px; background-color: var(--brand-color); margin-right: 12px; opacity: 0; transition: all 0.3s ease; display: inline-block; }
.feature-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.035); transform: scaleX(0); transform-origin: top left; transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1); z-index: -1; }
.feature-card:hover { border-color: var(--brand-color) !important; }
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover .feature-accent-line { opacity: 1; }
.feature-card:hover .feature-icon-wrapper { background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.12) !important; }

/* --- MÜŞTERİ YORUMLARI KARTLARI --- */
.testimonials-section {
    background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.04);
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}
.testimonial-grid-card {
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 24px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}
.testimonial-grid-card:hover { border-color: var(--brand-color); }
.tgc-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
.tgc-quote-icon { color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.15); font-size: 2rem; line-height: 1; }
.tgc-stars { color: #fbbf24; font-size: 13px; display: flex; gap: 2px; }
.tgc-text { color: #4a5568; font-size: 13.5px; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }
.tgc-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid #f1f5f9; padding-top: 16px; }
.tgc-avatar { width: 40px; height: 40px; background-color: #f1f5f9; color: var(--brand-color); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; }
.tgc-info { display: flex; flex-direction: column; }
.tgc-name { font-size: 14px; font-weight: 700; color: #1e293b; margin-bottom: 1px; }
.tgc-title { font-size: 12px; color: #94a3b8; }

/* --- TEKNOLOJİ MARQUEE ŞERİDİ --- */
.tech-marquee-wrapper { overflow: hidden; white-space: nowrap; padding: 2.5rem 0; background-color: #ffffff; border-bottom: 1px solid #e2e8f0; position: relative; }
.tech-marquee-wrapper::before, .tech-marquee-wrapper::after { content: ''; position: absolute; top: 0; width: 150px; height: 100%; z-index: 2; }
.tech-marquee-wrapper::before { left: 0; background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); }
.tech-marquee-wrapper::after { right: 0; background: linear-gradient(to left, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%); }
.tech-marquee-track { display: inline-flex; gap: 4rem; animation: marquee-scroll 25s linear infinite; }
.tech-marquee-track:hover { animation-play-state: paused; }
.tech-item { display: flex; align-items: center; gap: 0.75rem; font-size: 1.25rem; font-weight: 700; color: #a0aec0; opacity: 0.6; filter: grayscale(100%); transition: all 0.3s ease; cursor: default; }
.tech-item i { font-size: 1.75rem; }
.tech-item:hover { opacity: 1; filter: grayscale(0%); color: var(--brand-color); }
@keyframes marquee-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- SAF BEYAZ CTA BANDI (Alt Turuncu Jilet Çizgi Footer'a Taşındı) --- */
.cta-section { 
    background: #ffffff !important;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0; /* Yumuşak bir bitiş yapıldı */
    position: relative; 
    overflow: hidden; 
    padding: 3rem 0; 
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.05) 0%, transparent 60%);
    z-index: 1;
}
.cta-content-wrapper { position: relative; z-index: 2; }

/* Beyaz zeminde net okuma kuralları */
.cta-section h2.text-white { color: #0a1128 !important; }
.cta-section p { color: #64748b !important; }

/* Beyaz temaya uygun outline butonu (Ekibimizi Tanıyın) */
.cta-section .btn-outline-light {
    border-color: #e2e8f0 !important;
    color: #1e293b !important;
    background-color: transparent !important;
}
.cta-section .btn-outline-light:hover {
    background-color: #1e293b !important;
    color: #ffffff !important;
    border-color: #1e293b !important;
}

/* --- GECE MAVİSİ SİTE FOOTER MİMARİSİ --- */
.site-footer {
    background: linear-gradient(135deg, var(--dark-bg, #0a1128) 0%, var(--dark-bg-deep, #050814) 100%) !important;
    width: 100%;
    margin-top: auto;
    border-top: 4px solid var(--brand-color) !important;
    padding: 4rem 0 0 0;
    font-family: 'Inter', sans-serif;
}

/* Sol Sütun ve Sağ Menüleri Ayıran Dikey Kurumsal Çizgi */
@media (min-width: 992px) {
    .footer-brand-col {
        position: relative;
        padding-right: 3rem;
    }
    .footer-brand-col::after {
        content: '';
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        width: 1px;
        background: linear-gradient(to bottom, var(--brand-color) 0%, var(--brand-color) 6px, rgba(255,255,255,0.08) 6px, rgba(255,255,255,0.08) 100%);
    }
}

/* Yatay Ayraç (%35 Turuncu, %65 Gece Mavisi Şerit) */
.footer-brand-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(to right, var(--brand-color) 0%, var(--brand-color) 35%, rgba(255,255,255,0.08) 35%, rgba(255,255,255,0.08) 100%);
    margin: 1.5rem 0;
}

/* ==========================================================================
   FOOTER — DESKTOP IZGARA DÜZENİ (>=992px)
   ========================================================================== */
@media (min-width: 992px) {
    .footer-main-row {
        display: flex;
        align-items: flex-start;
        gap: 3rem;
    }
    .footer-brand-col {
        flex: 0 0 280px;
        max-width: 280px;
    }
    .footer-menus-grid {
        flex: 1 1 auto;
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem 2rem;
    }
}
.footer-logo {
    max-width: 180px;
    height: auto;
    display: block;
}
.footer-brand-desc {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.65;
    max-width: 340px;
}
.footer-empty {
    color: #8a99ad;
    font-size: 14px;
    padding: 2rem 0;
}

/* Menü Başlıkları ve İkon Yapısı (Ultra Okunaklı Beyaz) */
.footer-column-title {
    color: #ffffff !important; 
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px; 
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 8px; 
}
.footer-column-title i {
    font-size: 16px; 
    font-weight: normal;
    color: var(--brand-color);
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-menu-list li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 1rem;
}
.footer-menu-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px; 
    width: 5px;
    height: 5px;
    background-color: var(--brand-color);
    border-radius: 50%;
}
.footer-menu-list a {
    color: #cbd5e1 !important; /* Kristal beyaz/gri okunaklı metin */
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.2s ease;
}
.footer-menu-list a:hover {
    color: var(--brand-color) !important;
    transform: translateX(3px); 
}

/* Kare Çerçeveli Sosyal Medya İkon Butonları (Dark) */
.premium-social-btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08); 
    color: #cbd5e1;
    font-size: 16px;
    transition: all 0.3s ease;
    text-decoration: none;
}
.premium-social-btn:hover {
    background-color: var(--brand-color);
    color: #ffffff;
    border-color: var(--brand-color);
}

/* Bağımsız Soft Arka Planlı Alt Bar (Copyright) */
.footer-bottom-bar {
    background-color: #03050d !important; /* Degradeden çok hafif daha koyu, en dip renk */
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0;
    margin-top: 4rem;
    font-size: 13px;
    color: #8a99ad !important;
}
@media (max-width: 991.98px) {
    .footer-bottom-bar {
        margin-top: 2.5rem;
    }
}
.footer-bottom-bar a {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}
.footer-bottom-bar a:hover {
    color: var(--brand-color);
}

/* ==========================================================================
   ÇEREZ BİLDİRİMİ (COOKIE CONSENT) - SOL ALT VE BUTON DÜZELTMESİ
   ========================================================================== */
.cookie-consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 340px;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 5px;
    padding: 24px;
    z-index: 9999;
    transform: translateY(150%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none; 
}

.cookie-consent-banner.show {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.cookie-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: hsla(var(--brand-h), var(--brand-s), var(--brand-l), 0.1);
    color: var(--brand-color);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

/* Kabul Et Butonu Focus/Hover Beyazlama Düzeltmesi */
#acceptCookieBtn {
    background-color: var(--brand-color) !important;
    color: #ffffff !important;
    border-color: var(--brand-color) !important;
    transition: all 0.3s ease;
    outline: none !important;
}

#acceptCookieBtn:hover,
#acceptCookieBtn:focus,
#acceptCookieBtn:active {
    background-color: var(--brand-hover, #e67600) !important;
    color: #ffffff !important;
    border-color: var(--brand-hover, #e67600) !important;
    box-shadow: none !important;
}

@media (max-width: 575.98px) {
    .cookie-consent-banner {
        bottom: 20px;
        left: 20px;
        right: 20px;
        width: auto;
    }
}

/* ==========================================================================
   FOOTER MOBIL RESPONSIVE
   ========================================================================== */

/* Tablet: lg ve altı (<=991px) */
@media (max-width: 991.98px) {
    .footer-main-row {
        flex-direction: column;
        gap: 2.5rem;
    }
    .footer-brand-col {
        flex: none;
        max-width: 100%;
        width: 100%;
        padding-right: 0 !important;
        order: 2;
    }
    .footer-brand-col::after {
        display: none;
    }
    .footer-brand-desc {
        max-width: 100%;
    }
    .footer-logo {
        max-width: 160px;
    }
    .footer-menus-grid {
        order: 1;
        width: 100%;
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem 1.5rem;
    }
}

/* Mobil: sm ve altı (<=575px) */
@media (max-width: 575.98px) {
    .site-footer {
        padding-top: 3rem;
    }
    .footer-main-row {
        display: flex !important;
        flex-direction: column !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }
    .footer-menus-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 2rem 1.5rem !important;
        width: 100% !important;
        order: 1 !important;
        padding: 0 0 2.5rem 0 !important;
    }
    .footer-col {
        min-width: 0;
    }
    .footer-column-title {
        font-size: 12px;
        margin-bottom: 1rem;
    }
    .footer-menu-list li {
        margin-bottom: 0.75rem;
    }
    .footer-menu-list a {
        font-size: 13px;
    }
    .footer-brand-col {
        order: 2 !important;
        width: 100% !important;
        max-width: 100% !important;
        flex: none !important;
        padding-right: 0 !important;
        text-align: center;
        padding: 1.5rem 0 0 0 !important;
        border-top: 1px solid rgba(255,255,255,0.08);
    }
    .footer-brand-col .d-flex {
        justify-content: center;
    }
    .footer-logo {
        margin: 0 auto 1.25rem;
    }
    .footer-brand-desc {
        font-size: 13px;
        text-align: center;
    }
    .footer-bottom-bar {
        padding: 1.25rem 0;
    }
}