

/* HEADER WRAPPER START */
.wrapper {
    background-color: var(--bg-dark); /* CSS variable ile uyumlu */
    color: var(--text-white);
    text-align: center;
    padding: var(--space-sm) 0; /* Boşluk ekle */
    border-top: 1px solid rgba(255,255,255,0.1); /* İnce çizgi */
    font-size: 0.9rem; /* Biraz küçük font */
    padding: 6px 0;
}

.wrapper-container {
    margin: 0 auto;
    padding: 0 var(--space-sm);
}

.wrapper-grid {
    display: grid;
    gap: var(--space-lg);
    text-align: left; /* İçerik sola dayalı */
}

.wrapper-col-left {
    justify-self: left;
    padding-top: 10px;
}

.wrapper-col-center {
    justify-self: center;
    padding-top: 10px;
}

.wrapper-col-right {
     justify-self: right;
    padding-top: 5px;
}

.wrapper-3 .wrapper-grid {
    grid-template-columns: repeat(3, 1fr);
}

.wrap-social {
    right: 0;
}

.wrap-ul {    
    margin: 0;
    padding: 0;
    list-style: none;}

.wrap-li {
    float: left;
}


/* Normal header sayfalarında header-wrapper */
.normal-header-page .header-wrapper {
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
}

/* Transparent header sayfalarında header-wrapper */
.transparent-header-page .header-wrapper {
    background: transparent;
    position: relative;
    z-index: 999;
}

/* Header wrapper içeriği */
.header-wrapper .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}


/* Social Media Icons - Pure CSS */
.social-icons {
    display: flex;
    gap: 8px;
    align-items: center;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--text-white);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: bold;
    position: relative;
}

.wrapper-left-block {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

/* Platform-specific icons with CSS */
.social-icon.facebook::before { content: "f"; }
.social-icon.twitter::before { content: "t"; }
.social-icon.instagram::before { content: "ig"; }
.social-icon.linkedin::before { content: "in"; }
.social-icon.youtube::before { content: "YT"; }

/* Hover Effects */
.social-icon:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.social-icon.facebook:hover { background: #1877F2; }
.social-icon.twitter:hover { background: #1DA1F2; }
.social-icon.instagram:hover { 
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-icon.linkedin:hover { background: #0A66C2; }
.social-icon.youtube:hover { background: #FF0000; }

/* 1024px ↓ - Tablet yatay optimizasyon */
@media screen and (max-width: 1024px) {
    .wrapper {
        padding: var(--space-sm) 0;
    }
    
    /* .wrapper-grid {
        gap: var(--space-md); 
    } */
}

/* 865px ↓ - Tablet dikey optimizasyon */
@media screen and (max-width: 865px) {
    .wrapper-3 .wrapper-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: inherit;
    }

    .wrapper-3 .wrapper-grid > *:nth-child(3) {
    grid-column: 1 / -1;           /* Tüm sütunları kapla */
    justify-self: center;          /* Yatayda ortala */
    text-align: center;            /* İçeriği ortala */
    max-width: 300px;              /* İsteğe bağlı: maksimum genişlik */
    /* margin-top: var(--space-sm);    Üst boşluk */
    }   
    
    .wrapper-col-left,
    .wrapper-col-center,
    .wrapper-col-right {
        justify-self: center;
        text-align: center;
        padding: 0px;
    }

    .wrapper-col-center {justify-self: right;}

    
    .social-icons {
        justify-content: center;
    }
}

/* 768px ↓ - Tablet optimizasyon */
@media screen and (max-width: 768px) {
    .wrapper {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .wrapper-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 10px;
    }
    
    .wrapper-col-left,
    .wrapper-col-center,
    .wrapper-col-right {
        justify-self: center;
    }
    
    .social-icons {
        justify-content: center;
    }

    .header-wrapper .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .normal-header-page .header-wrapper {
        padding: 15px 0;
    }

    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* 720px ↓ - Büyük telefonlar optimizasyon */
@media screen and (max-width: 720px) {
    .wrapper-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: var(--space-sm);
    }
    
    .wrapper {
        padding: 10px 0;
        font-size: 0.85rem;
    }
    
    .social-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
    }
    
    .header-wrapper .container {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* 640px ↓ - Orta seviye telefonlar optimizasyon */
@media screen and (max-width: 640px) {
    .wrapper {
        padding: 8px 0;
        font-size: 0.8rem;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
}

/* 550px ↓ - Küçük telefonlar optimizasyon */
@media screen and (max-width: 550px) {
    .wrapper {
        padding: 6px 0;
    }
    
    .wrap-ul {
        text-align: center;
    }
    
    .wrap-li {
        float: none;
        display: inline-block;
        margin: 0 5px;
    }
}

/* 480px ↓ - Mini telefonlar optimizasyon */
@media screen and (max-width: 480px) {
    .wrapper {
        font-size: 0.75rem;
        padding: 5px 0;
    }
    
    .social-icon {
        width: 26px;
        height: 26px;
        font-size: 11px;
    }
}

/* 430px ↓ - En küçük cihazlar optimizasyon */
@media screen and (max-width: 430px) {
    .wrapper {
        font-size: 0.7rem;
    }
    
    .social-icons {
        gap: 5px;
    }
    
    .social-icon {
        width: 24px;
        height: 24px;
        font-size: 10px;
    }
}
/* HEADER WRAPPER END */

/* HEADER START */
.site-header.normal-header {
background: var(--bg-white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
position: sticky;
top: 0;
z-index: 1000;
}

.site-header.transparent-header {
background: transparent;
position: fixed;
top: <?= $site_config[ "header"][ "wrapper_height"] ?>px;
left: 0;
width: 100%;
z-index: 1000;
transition: all 0.3s ease;
}

.site-header.transparent-header.scrolled {
background: var(--bg-white);
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
top: 0;
}

/* Header şeffaf durumda iken */
.site-header.transparent-header:not(.scrolled) .nav-link {
color: var(--text-white);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.site-header.transparent-header:not(.scrolled) .nav-link:hover {
background: rgba(255, 255, 255, 0.2);
color: var(--text-white);
}

.site-header.transparent-header:not(.scrolled) .nav-item.active .nav-link {
background: var(--accent);
color: var(--text-white);
}

.site-header.transparent-header:not(.scrolled) .contact-info a {
color: var(--text-white);
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.site-header.transparent-header:not(.scrolled) .contact-info a:hover {
color: var(--accent-light);
}

.site-header.transparent-header:not(.scrolled) .mobile-menu-toggle span {
background: var(--text-white);
}

/* Header scrolled durumda (normal mod) */
.site-header.transparent-header.scrolled .nav-link {
color: var(--text-dark);
}

.site-header.transparent-header.scrolled .nav-link:hover {
background: var(--primary);
color: var(--text-white);
}

.site-header.transparent-header.scrolled .nav-item.active .nav-link {
background: var(--accent);
color: var(--text-white);
}

.site-header.transparent-header.scrolled .contact-info a {
color: var(--text-dark);
}

.site-header.transparent-header.scrolled .contact-info a:hover {
color: var(--accent);
}

.site-header.transparent-header.scrolled .mobile-menu-toggle span {
background: var(--text-dark);
}

/* ORTAK HEADER STİLLERİ */
.header-inner {
display: flex;
align-items: center;
justify-content: space-between;
padding: 12px;
min-height: 80px;
}

.header-left {
justify-self: start;
}

.header-center {
justify-self: center;
}

.header-right {
justify-self: end;
}

.logo {
max-height: 70px;
width: auto;
transition: transform 0.3s ease;
}

.logo:hover {
transform: scale(1.05);
}


/* Contact info styling */
.contact-info,
.working-hours {
font-size: 0.95rem;
line-height: 1.4;
text-align: right;
}

.contact-info,
.working-hours a {
text-decoration: none;
transition: color 0.3s ease;
}

/* Normal header için stiller */
.site-header.normal-header .contact-info a {
color: var(--text-dark);
}

.site-header.normal-header .contact-info a:hover {
color: var(--accent);
}



/* === DESKTOP NAVIGATION === */
.main-navigation {
  display: block;
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold-x);
}

.nav-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2px;
}

.nav-link {
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* === NORMAL HEADER (ALT SAYFALAR) === */
.site-header.normal-header .nav-link {
  color: var(--text-dark);
}

.site-header.normal-header .nav-link:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* ✅ Aktif menü sadece kendi linkini boyasın */
.site-header.normal-header .nav-item.active > .nav-link {
  background: var(--accent);
  color: var(--text-white);
}

/* Güvenlik: LI kendisi renk basmasın */
.site-header.normal-header .nav-item.active {
  background: transparent;
}

/* === SUBMENU YAPISI === */
.site-header .submenu {
  background: var(--bg-white);
  box-shadow: 0 8px 24px rgba(0,0,0,.12);
  border-radius: 8px;
  overflow: hidden;
  z-index: 1000;
  margin-top: 2px;
  min-width: 220px;
}

.site-header.transparent-header .submenu {
  background: rgba(255,255,255,0.97);
}

/* Submenu linkleri */
.site-header .submenu .nav-link {
  background: transparent;
  color: var(--text-dark);
  border-radius: 0;
  display: block;
  padding: 10px 16px;
  font-weight: 400;
  transition: all 0.2s ease;
}

/* Submenu hover */
.site-header .submenu .nav-link:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* Submenu içindeki aktif link (örneğin aktif alt sayfa) */
.site-header .submenu .nav-link.active {
  background: var(--accent);
  color: var(--text-white);
}

/* === ICONS === */
.nav-icon {
  font-size: 1.1em;
}

.nav-text {
  white-space: nowrap;
}





/* Mobile Menu Toggle */
.mobile-menu-toggle {
display: none;
flex-direction: column;
cursor: pointer;
padding: 5px;
}

.mobile-menu-toggle span {
width: 25px;
height: 3px;
margin: 3px 0;
transition: 0.3s;
}

/* Normal header için mobile toggle */
.site-header.normal-header .mobile-menu-toggle span {
background: var(--text-dark);
}

/* Mobile Overlay */
.nav-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.5);
z-index: 99;
}




/* ===========================================================
   🎨 DROPDOWN MENU RENK DENGESİ — Transparent vs Normal Header
   =========================================================== */

/* === NORMAL HEADER === */
.site-header.normal-header .nav-item.has-submenu > .submenu {
  background: var(--bg-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.05);
}

.site-header.normal-header .submenu li a {
  color: var(--text-dark);
}

.site-header.normal-header .submenu li a:hover {
  background: var(--primary);
  color: var(--text-white);
}

/* === TRANSPARENT HEADER (Slider Üzerinde) === */
.site-header.transparent-header:not(.scrolled) .nav-item.has-submenu > .submenu {
  background: rgba(44, 62, 80, 0.95); /* koyu cam efekti */
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.site-header.transparent-header:not(.scrolled) .submenu li a {
  color: var(--text-white);
}

.site-header.transparent-header:not(.scrolled) .submenu li a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* === DARK MODE + TRANSPARENT HEADER === */
[data-theme="dark"] .site-header.transparent-header:not(.scrolled) .submenu {
  background: rgba(0, 0, 0, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .site-header.transparent-header:not(.scrolled) .submenu a {
  color: #fff;
}

[data-theme="dark"] .site-header.transparent-header:not(.scrolled) .submenu a:hover {
  background: rgba(255,255,255,0.1);
}




/* === DROPDOWN MENU === */
.nav-item.has-submenu {
  position: relative;
}

.nav-item.has-submenu > .submenu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border-radius: 6px;
  padding: 8px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-item.has-submenu:hover > .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  transition: background 0.2s ease;
}

.submenu li a:hover {
  background: var(--primary);
  color: var(--text-white);
}




/* 1130px ↓ - Tablet yatay optimizasyon */
@media screen and (max-width: 1130px) {
.baslik-lg {
    font-size: var(--font-size-xll);
}
}


/* 1024px ↓ - Tablet yatay optimizasyon */
@media screen and (max-width: 1024px) {
.header-inner {
padding: 12px;
min-height: 70px;
}

.logo {
max-height: 60px;
}

.nav-link {
padding: 8px 16px;
font-size: 0.9rem;
}

.contact-info,
.working-hours {
font-size: 0.9rem;
}
}

/* 865px ↓ - Tablet dikey optimizasyon */
@media screen and (max-width: 865px) {
.header-inner {
flex-wrap: wrap;
gap: 12px;
}

.header-center {
order: 3;
/* width: 100%; */
margin-top: 10px;
}

.nav-menu {
justify-content: center;
flex-wrap: wrap;
}

.nav-link {
padding: 8px 14px;
font-size: 0.9rem;
}
}

/* 820px ↓ - Tablet optimizasyon */
@media screen and (max-width: 820px) {
.nav-text {
font-size: 0.85rem;
color:#ffffff;
}
.baslik-lg {
    font-size: var(--font-size-xl);
}
}

/* 768px ↓ - Tablet optimizasyon */
@media screen and (max-width: 768px) {
.header-inner {
flex-wrap: wrap;
gap: 15px;
}

.mobile-menu-toggle {
display: flex;
}

.main-navigation {
display: none;
width: 100%;
order: 3;
background: var(--bg-white);
border-radius: 10px;
margin-top: 15px;
box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.site-header.transparent-header:not(.scrolled) .main-navigation {
background: rgba(255, 255, 255, 0.95);
}

.nav-menu {
flex-direction: column;
gap: 0;
}

.nav-link {
padding: 15px 20px;
border-bottom: 1px solid #eee;
color: var(--text-dark) !important;
}

.contact-info,
.working-hours {
text-align: left;
font-size: 0.9rem;
margin-top: 7px;
}

.header-right {
margin-left: auto;
}

/* Responsive transparent header */
.site-header.transparent-header {
/*  top: 80px; */
}
}

/* 720px ↓ - Büyük telefonlar optimizasyon */
@media screen and (max-width: 720px) {
.logo {
max-height: 55px;
}

.nav-link {
padding: 12px 18px;
font-size: 0.9rem;
}
}

/* 640px ↓ - Orta seviye telefonlar optimizasyon */
@media screen and (max-width: 640px) {
.header-inner {
/*  padding: 10px 0; */
min-height: 65px;
}

.logo {
max-height: 50px;
}

.nav-link {
padding: 12px 18px;
font-size: 0.9rem;
}
}

/* 550px ↓ - Küçük telefonlar optimizasyon */
@media screen and (max-width: 550px) {
.site-header.transparent-header {
    position: sticky;;
}

.header-inner {
gap: 8px;
}

.logo {
/*  max-height: 45px; */
}

.contact-info,
.working-hours {
font-size: 0.85rem;
}

.site-header.transparent-header {
/*  top: 70px; */
}
}

/* 480px ↓ - Mini telefonlar optimizasyon */
@media screen and (max-width: 480px) {
.header-inner {
/*  padding: 8px 0; */
min-height: 60px;
}

.logo {
/*  max-height: 40px; */
}

.nav-link {
padding: 10px 15px;
font-size: 0.85rem;
}

.site-header.transparent-header {
/*  top: 60px; */
}
}

/* 430px ↓ - En küçük cihazlar optimizasyon */
@media screen and (max-width: 430px) {

.header-inner {
/*  padding: 6px 0; */
min-height: 55px;
}

.logo {
/*  max-height: 35px; */
}

.nav-link {
padding: 8px 12px;
font-size: 0.8rem;
}

.contact-info,
.working-hours {
font-size: 0.8rem;
}
}
/* HEADER END */

/* FOOTER START */
footer {
background: var(--primary);
color: var(--text-white);
padding: var(--space-xl) 0;
margin-top: var(--space-xl);
width: 100%; /* Full screen genişlik */
padding: 30px 10px;
}

/* Footer container - site genişliğinde */
.footer-container {
margin: 0 auto;
padding: 0 var(--space-sm);
}

/* Footer grid stilleri */
.footer-grid {
display: grid;
gap: var(--space-lg);
text-align: left; /* İçerik sola dayalı */
}

/* 3 Column Footer */
.footer-3 .footer-grid {
grid-template-columns: repeat(3, 1fr);
}

/* 4 Column Footer */
.footer-4 .footer-grid {
grid-template-columns: repeat(4, 1fr);
}

/* 5 Column Footer */
.footer-5 .footer-grid {
grid-template-columns: repeat(5, 1fr);
}

/* Footer column stilleri */
.footer-col h4 {
color: var(--text-white);
margin-bottom: var(--space-sm);
font-size: 1.2rem;
position: relative; /* Desktop'ta da gerekli ama content yok */
}

.footer-col a,
.footer-col p {
color: var(--text-white);
text-decoration: none;
display: block;
margin-bottom: var(--space-xs);
opacity: 0.9;
transition: all 0.3s ease;
}

.footer-col a:hover {
opacity: 1;
color: var(--accent);
transform: translateX(5px);
}

.footer-col h4 {
border-bottom: solid 1px;
}

/* 1024px ↓ - Tablet yatay optimizasyon */
@media screen and (max-width: 1024px) {
footer {
padding: var(--space-lg) 0;
padding: 25px 10px;
}

.footer-grid {
gap: var(--space-md);
}

.footer-col h4 {
font-size: 1.15rem;
}
}

/* 865px ↓ - Tablet dikey optimizasyon */
@media screen and (max-width: 865px) {
.footer-3 .footer-grid {
grid-template-columns: repeat(2, 1fr);
}

.footer-4 .footer-grid {
grid-template-columns: repeat(2, 1fr);
}

.footer-5 .footer-grid {
grid-template-columns: repeat(3, 1fr);
}

footer {
padding: 20px 10px;
}

.footer-col h4 {
font-size: 1.1rem;
margin-bottom: var(--space-xs);
}
}

/* 720px ↓ - Büyük telefonlar optimizasyon */
@media screen and (max-width: 720px) {
.footer-grid {
grid-template-columns: 1fr !important;
text-align: left;
gap: 0;
}

footer {
padding: var(--space-lg) 0;
padding: 20px 10px;
}

.footer-col {
margin-bottom: 0;
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
padding: var(--space-sm) 0;
}

.footer-col:last-child {
border-bottom: none;
}

/* Accordion Header - SADECE MOBILE'DE */
.footer-col h4 {
cursor: pointer;
user-select: none;
margin-bottom: 0;
padding-right: 30px;
font-size: 1.1rem;
}

/* +/- işaretleri - SADECE MOBILE'DE */
.footer-col h4::after {
content: "+";
position: absolute;
right: 0;
top: 50%;
transform: translateY(-50%);
font-size: 1.5rem;
font-weight: 300;
transition: transform 0.3s ease;
opacity: 0.7;
}

.footer-col.active h4::after {
content: "−";
transform: translateY(-50%);
}

/* Accordion Content */
.footer-links {
max-height: 0;
overflow: hidden;
transition: max-height 0.3s ease;
}

.footer-col.active .footer-links {
max-height: 500px;
margin-top: var(--space-sm);
}

/* Varsayılan: data-open="true" olanlar açık */
.footer-col[data-open="true"] .footer-links {
max-height: 500px;
margin-top: var(--space-sm);
}

.footer-col[data-open="true"] h4::after {
content: "−";
}

.footer-col a:hover {
transform: translateX(3px);
}

/* Social links in mobile */
.social-links {
display: flex;
gap: var(--space-sm);
flex-wrap: wrap;
}

.social-links a {
display: inline-block;
margin-right: var(--space-sm);
}

.footer-col h4 {
border-bottom: none;
}
}

/* 640px ↓ - Orta seviye telefonlar optimizasyon */
@media screen and (max-width: 640px) {
footer {
padding: 18px 10px;
}

.footer-col {
padding: 12px 0;
}

.footer-col h4 {
font-size: 1.05rem;
padding-right: 25px;
}

.footer-col h4::after {
font-size: 1.4rem;
}
}

/* 550px ↓ - Küçük telefonlar optimizasyon */
@media screen and (max-width: 550px) {
footer {
padding: 15px 10px;
margin-top: var(--space-lg);
}

.footer-col {
padding: 10px 0;
}

.footer-col h4 {
font-size: 1rem;
padding-right: 20px;
}

.footer-col h4::after {
font-size: 1.3rem;
}

.footer-col a,
.footer-col p {
font-size: 0.9rem;
margin-bottom: 6px;
}
}

/* 480px ↓ - Mini telefonlar optimizasyon */
@media screen and (max-width: 480px) {
footer {
padding: 12px 10px;
}

.footer-col {
padding: 8px 0;
}

.footer-col h4 {
font-size: 0.95rem;
padding-right: 18px;
}

.footer-col h4::after {
font-size: 1.2rem;
}

.footer-col a,
.footer-col p {
font-size: 0.85rem;
}

.social-links {
gap: 8px;
}

.social-links a {
margin-right: 8px;
}
}

/* 430px ↓ - En küçük cihazlar optimizasyon */
@media screen and (max-width: 430px) {
footer {
padding: 10px 8px;
}

.footer-container {
padding: 0 8px;
}

.footer-col h4 {
font-size: 0.9rem;
padding-right: 15px;
}

.footer-col h4::after {
font-size: 1.1rem;
}

.footer-col a,
.footer-col p {
font-size: 0.8rem;
}

.social-links {
gap: 6px;
}

.social-links a {
margin-right: 6px;
font-size: 0.8rem;
}
}

/* === DESKTOP STYLES === */
@media (min-width: 721px) {
/* Desktop'ta accordion özelliklerini TAMAMEN KAPAT */
.footer-col h4 {
cursor: default;
padding-right: 0;
}

/* DESKTOP'TA ::after CONTENT'İ TAMAMEN KALDIR */
.footer-col h4::after {
display: none !important;
content: none !important;
}

.footer-links {
max-height: none !important;
display: block !important;
}

/* Desktop'ta border'ları kaldır */
.footer-col {
border-bottom: none !important;
padding: 0 !important;
}
}

.copyright {
background-color: var(--bg-dark); /* CSS variable ile uyumlu */
color: var(--text-white);
text-align: center;
padding: var(--space-sm) 0; /* Boşluk ekle */
border-top: 1px solid rgba(255, 255, 255, 0.1); /* İnce çizgi */
/* font-size: 0.9rem; /* Biraz küçük font */
}

.copyright p {
font-size: var(--font-size-sm);
}

.copyright a {
color: var(--text-white);
text-decoration: none;
transition: color 0.3s ease; /* Hover efekti için */
}

.copyright a:hover {
color: var(--accent); /* Vurgu rengi */
text-decoration: underline; /* İsteğe bağlı */
}

/* Footer Dark Theme */
[data-theme="dark"] .footer-5 {
background: var(--bg-dark);
color: var(--text-dark);
}

[data-theme="dark"] .footer-5 h4 {
color: var(--text-white);
}

[data-theme="dark"] .footer-5 a,
[data-theme="dark"] .footer-5 p {
color: var(--text-light);
}

[data-theme="dark"] .footer-5 a:hover {
color: var(--accent);
}

[data-theme="dark"] .copyright {
background: var(--bg-white);
color: var(--text-dark);
}
/* FOOTER END */

/* ÇEREZ ONAYI START */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 600px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3); /* Daha koyu gölge */
    padding: 25px;
    z-index: 10000;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    border: 2px solid #e2e8f0; /* Daha kalın border */
    display: none;
}

.cookie-banner.active {
    display: block;
    /* animation: slideUp 0.5s ease-out; */
}

.cookie-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.cookie-icon {
    font-size: 24px;
    margin-right: 12px;
}

.cookie-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000; /* Siyah - maksimum kontrast */
    margin: 0;
}

.cookie-description {
    color: #2d3748; /* Çok koyu gri */
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 14px;
    font-weight: 500; /* Daha kalın */
}

.cookie-settings {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 2px solid #e9ecef;
}

.cookie-setting-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.cookie-setting-item:last-child {
    margin-bottom: 0;
}

.setting-info {
    flex: 1;
}

.setting-label {
    font-weight: 700; /* Daha kalın */
    color: #000000; /* Siyah */
    font-size: 14px;
}

.setting-description {
    font-size: 12px;
    color: #4a5568; /* Daha koyu gri */
    margin-top: 4px;
    font-weight: 500;
}

/* Butonlar - TAMAMEN OPACITY KALDIRDIK */
.cookie-buttons {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 700; /* Kalın font */
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    min-height: 44px;
    text-decoration: none;
}

/* TÜM BUTONLARA SOLID BACKGROUND */
.btn-accept-all {
    background: #1a56db; /* Daha koyu mavi */
    color: #ffffff;
    border: 2px solid #1a56db;
}

.btn-accept-all:hover {
    background: #1e429f;
    border-color: #1e429f;
    transform: translateY(-2px);
}

.btn-save {
    background: #2563eb; /* Koyu mavi */
    color: #ffffff;
    border: 2px solid #2563eb;
}

.btn-save:hover {
    background: #1d4ed8;
    border-color: #1d4ed8;
    transform: translateY(-2px);
}

.btn-settings {
    background: #6b7280; /* Gri arkaplan */
    color: #ffffff; /* Beyaz yazı */
    border: 2px solid #6b7280;
    font-weight: 700;
}

.btn-settings:hover {
    background: #4b5563;
    border-color: #4b5563;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-reject {
    background: #dc2626; /* Koyu kırmızı */
    color: #ffffff; /* Beyaz yazı */
    border: 2px solid #dc2626;
    font-weight: 700;
}

.btn-reject:hover {
    background: #b91c1c;
    border-color: #b91c1c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Toggle Switch */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #6b7280; /* Koyu gri kapalı durum */
    transition: .4s;
    border-radius: 24px;
    border: 2px solid #6b7280;
}

.toggle-slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

input:checked + .toggle-slider {
    background-color: #2563eb; /* Koyu müz */
    border-color: #2563eb;
}

input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

/* Animasyon */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        bottom: 10px;
        width: 95%;
        padding: 20px;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-btn {
        width: 100%;
        text-align: center;
    }
}

/* Karanlık mod */
@media (prefers-color-scheme: dark) {
    .cookie-banner {
        background: #1f2937;
        color: #f9fafb;
        border-color: #374151;
    }

    .cookie-title {
        color: #f9fafb;
    }

    .cookie-description {
        color: #e5e7eb;
    }

    .cookie-settings {
        background: #374151;
        border-color: #4b5563;
    }

    .setting-label {
        color: #f9fafb;
    }

    .setting-description {
        color: #d1d5db;
    }

    .btn-settings {
        background: #6b7280;
        color: #ffffff;
        border-color: #6b7280;
    }

    .btn-settings:hover {
        background: #4b5563;
        border-color: #4b5563;
        color: #ffffff;
    }
}

/* Focus stilleri */
.cookie-btn:focus,
.toggle-switch input:focus + .toggle-slider {
    outline: 3px solid #3b82f6;
    outline-offset: 2px;
}
/* ÇEREZ ONAYI END */