/* HederPlus - Top Bar */
.hederplus-topbar {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1000;
    padding: 8px 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.hederplus-topbar-track {
    display: flex;
    width: max-content;
    animation: hederplus-marquee var(--topbar-speed, 30s) linear infinite;
    white-space: nowrap;
}

.hederplus-topbar-content {
    padding: 0 50px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.02em;
    flex-shrink: 0;
}

@keyframes hederplus-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hederplus-topbar:hover .hederplus-topbar-track {
    animation-play-state: paused;
}

@media (prefers-reduced-motion: reduce) {
    .hederplus-topbar-track {
        animation: none;
        justify-content: center;
    }
}

/* Sosyal Medya Ikonlari */
.header-social {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.header-social {
    grid-column: 4;
    justify-self: end;
}

.header-eklentisi.has-social .header-eklentisi-container {
    grid-template-columns: 1fr auto 1fr auto;
}

.header-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--social-color, #333);
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
    line-height: 1;
}

.header-social a:hover {
    color: var(--social-hover, #0073aa);
    transform: scale(1.15);
}

.header-social a svg {
    display: block;
}

/* Sticky state social icons */
.header-eklentisi.sticky .header-social a {
    color: var(--social-color, #333);
}

.header-eklentisi.sticky .header-social a:hover {
    color: var(--social-hover, #0073aa);
}

/* HederPlus - Profesyonel Foundation */
.header-eklentisi {
    background-color: var(--header-bg, #ffffff);
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    z-index: 999;
    width: 100%;
    box-shadow: var(--header-shadow, 0 2px 4px rgba(0,0,0,0.08));
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.header-eklentisi.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1001;
    box-shadow: var(--sticky-header-shadow, none);
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
    background-color: var(--sticky-header-bg, var(--header-bg, #ffffff)) !important;
}

/* Sticky state color changes */
.header-eklentisi.sticky .header-menu a {
    color: var(--sticky-menu-text-color, var(--menu-text-color, #333)) !important;
}

.header-eklentisi.sticky .header-menu a:hover {
    color: var(--menu-hover-text-color, #0073aa) !important;
}

.header-eklentisi.sticky .header-button a {
    background-color: var(--sticky-button-color, var(--button-color, #0073aa)) !important;
    border-color: var(--sticky-button-color, var(--button-color, #0073aa)) !important;
    color: var(--sticky-button-text-color, #ffffff) !important;
}

.header-eklentisi.sticky .header-button a:hover {
    background-color: white !important;
    color: var(--sticky-button-color, var(--button-color, #0073aa)) !important;
    border-color: var(--sticky-button-color, var(--button-color, #0073aa)) !important;
}

.header-eklentisi.sticky .mobile-toggle span,
.header-eklentisi.sticky .desktop-hamburger-toggle span {
    background-color: var(--sticky-hamburger-color, var(--hamburger-color, #333)) !important;
}

/* Smooth sticky transition */
.header-eklentisi.sticky-transition {
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Header container - Profesyonel eşit spacing */
.header-eklentisi-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: var(--header-height, 80px);
    position: relative;
    min-height: var(--header-height, 80px);
    gap: 40px;
}

/* Logo Stilleri - Profesyonel positioning */
.header-logo {
    display: flex;
    align-items: center;
    z-index: 1001;
    flex-shrink: 0;
}

.header-logo img {
    max-height: calc(var(--header-height, 80px) - 20px);
    width: auto;
    max-width: var(--logo-size, 150px);
    height: auto;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Desktop logo sizing priority */
@media (min-width: 769px) {
    .header-logo img {
        max-width: var(--logo-size, 150px) !important;
        max-height: calc(var(--header-height, 80px) - 20px) !important;
    }
}

.header-logo img:hover {
    transform: scale(1.02);
}

.header-logo.position-left {
    grid-column: 1;
    justify-self: start;
}

.header-logo.position-center {
    grid-column: 2;
    justify-self: center;
}

.header-logo.position-right {
    grid-column: 3;
    justify-self: end;
}

/* Menü Stilleri - Grid positioning */
.header-menu {
    display: flex;
    align-items: center;
    gap: 35px;
}

.header-menu.position-left {
    grid-column: 1;
    justify-self: start;
}

.header-menu.position-center {
    grid-column: 2;
    justify-self: center;
}

.header-menu.position-right {
    grid-column: 3;
    justify-self: end;
}

.header-menu ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 35px;
}

.header-menu li {
    position: relative;
}

/* Profesyonel menü linkleri */
.header-menu a {
    color: var(--menu-text-color, #333);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    font-size: 16px;
    letter-spacing: 0.01em;
}

.header-menu a:hover {
    color: var(--menu-hover-text-color, #0073aa);
}

.header-menu a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--menu-hover-color, #0073aa);
    transition: width 0.3s ease;
}

.header-menu a:hover::after {
    width: 100%;
}

/* Dropdown menü */
.header-menu ul ul {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    border-radius: 4px;
    padding: 10px 0;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.header-menu li:hover ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.header-menu ul ul a {
    padding: 10px 20px;
    display: block;
    color: #333;
}

.header-menu ul ul a:hover {
    background-color: #f8f9fa;
    color: #0073aa;
}

/* Buton Stilleri - Grid positioning */
.header-button {
    display: flex;
    align-items: center;
}

.header-button.position-left {
    grid-column: 1;
    justify-self: start;
}

.header-button.position-center {
    grid-column: 2;
    justify-self: center;
}

.header-button.position-right {
    grid-column: 3;
    justify-self: end;
}

/* Standart buton stilleri */
.header-button a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-color, #0073aa);
    color: var(--button-text-color, #ffffff);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--button-color, #0073aa);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-button a:hover {
    background-color: white !important;
    color: var(--button-color, #0073aa) !important;
    border: 2px solid var(--button-color, #0073aa);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Mobile Hamburger */
/* Mobile Hamburger - Profesyonel */
.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 6px;
    z-index: 1002;
    background-color: var(--hamburger-bg-color, transparent);
    border-radius: 6px;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.mobile-toggle:hover {
    background-color: rgba(0,0,0,0.05);
    transform: scale(1.05);
}

.mobile-toggle span {
    width: 22px;
    height: 3px;
    background-color: var(--hamburger-color, #333);
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--dropdown-bg-color, #ffffff);
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1002;
    padding: 0 20px 20px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

/* Mobile Menu Header */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 10px;
    flex-shrink: 0;
    position: sticky;
    top: 0;
    background-color: inherit;
    z-index: 1;
}

.mobile-menu-logo {
    flex: 1;
    min-width: 0;
}

.mobile-menu-logo a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.mobile-menu-logo img {
    max-width: var(--mobile-logo-size, 120px);
    max-height: 50px;
    width: auto;
    height: auto;
}

.mobile-menu-logo .mobile-menu-site-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--menu-text-color, #333);
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mobile-menu-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--menu-text-color, #333);
    border-radius: 8px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    flex-shrink: 0;
    margin-left: 12px;
    -webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover {
    background-color: rgba(0,0,0,0.06);
    transform: scale(1.05);
}

.mobile-menu-close:active {
    transform: scale(0.95);
}

.mobile-menu-close:focus-visible {
    outline: 2px solid var(--button-color, #0073aa);
    outline-offset: 2px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu li {
    border-bottom: 1px solid #eee;
}

.mobile-menu a {
    display: block;
    padding: 15px 0;
    color: var(--menu-text-color, #333);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.mobile-menu a:hover {
    color: #0073aa;
}

.mobile-menu .mobile-button {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #eee;
}

/* Mobil buton - Standart buton stilleri */
.mobile-menu .mobile-button a {
    display: block;
    text-align: center;
    padding: 15px 25px;
    background-color: var(--button-color, #0073aa);
    color: var(--button-text-color, #ffffff);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    border: 2px solid var(--button-color, #0073aa);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.mobile-menu .mobile-button a:hover {
    background-color: white !important;
    color: var(--button-color, #0073aa) !important;
    border: 2px solid var(--button-color, #0073aa);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Overlay - Sadece sayfa içeriğini etkiler */
.mobile-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}



/* Responsive Design */
/* Responsive optimizasyonları */
@media (max-width: 1200px) {
    .header-eklentisi-container {
        max-width: 100%;
        padding: 0 30px;
        gap: 30px;
    }
    
    .header-menu {
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .header-eklentisi-container {
        display: flex;
        justify-content: space-between;
        padding: 0 20px;
        gap: 15px;
    }
    
    .header-menu,
    .header-button,
    .header-social {
        display: none !important;
    }
    
    .desktop-hamburger-toggle {
        display: none !important;
    }
    
    .mobile-toggle {
        display: flex;
        order: 3;
        margin-left: auto;
    }
    
    .header-logo {
        flex: 1;
        order: 1;
    }
    
    .header-logo img {
        max-width: var(--mobile-logo-size, 120px) !important;
        min-width: 60px !important;
        height: auto !important;
        width: auto !important;
        max-height: none !important;
    }
    
    .header-logo.position-center {
        text-align: center;
    }
    
    .header-logo.position-right {
        text-align: right;
    }

    .hederplus-topbar-content {
        font-size: 12px;
        padding: 0 30px;
    }
}



@media (max-width: 480px) {
    .header-eklentisi-container {
        padding: 0 10px;
    }
    
    .mobile-menu {
        width: 280px;
        padding: 0 20px 20px;
    }
    
    .header-logo img {
        max-width: min(var(--logo-size, 150px), 120px);
        max-height: calc(var(--header-height, 80px) - 30px);
    }
}

/* Profesyonel animasyonlar */
.fade-in {
    animation: fadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-in-right {
    animation: slideInRight 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeIn {
    from { 
        opacity: 0;
        transform: translateY(10px);
    }
    to { 
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from { 
        opacity: 0;
        transform: translateX(30px);
    }
    to { 
        opacity: 1;
        transform: translateX(0);
    }
}

/* Micro-interactions */
.header-menu a,
.header-button a,
.mobile-toggle,
.desktop-hamburger-toggle {
    -webkit-tap-highlight-color: transparent;
}

/* Focus states - only visible on keyboard navigation */
.header-menu a:focus,
.header-button a:focus,
.mobile-toggle:focus,
.desktop-hamburger-toggle:focus {
    outline: none;
}

.header-menu a:focus-visible,
.header-button a:focus-visible,
.mobile-toggle:focus-visible,
.desktop-hamburger-toggle:focus-visible {
    outline: 2px solid var(--button-color, #0073aa);
    outline-offset: 2px;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Desktop Hamburger Menu - Profesyonel */
.desktop-hamburger-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 32px;
    height: 32px;
    padding: 4px;
    gap: 4px;
    z-index: 1002;
    background-color: var(--hamburger-bg-color, transparent);
    border-radius: 6px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-hamburger-toggle:hover {
    background-color: rgba(0,0,0,0.05);
    transform: scale(1.05);
}

.desktop-hamburger-toggle span {
    width: 22px;
    height: 3px;
    background-color: var(--hamburger-color, #333);
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.desktop-hamburger-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.desktop-hamburger-toggle.active span:nth-child(2) {
    opacity: 0;
}

.desktop-hamburger-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Desktop hamburger konumları - Grid positioning */
.desktop-hamburger-toggle.position-left {
    grid-column: 1;
    justify-self: start;
}

.desktop-hamburger-toggle.position-center {
    grid-column: 2;
    justify-self: center;
}

.desktop-hamburger-toggle.position-right {
    grid-column: 3;
    justify-self: end;
}

/* Desktop Dropdown Menu - Base */
.desktop-dropdown-menu {
    position: absolute;
    background-color: var(--dropdown-bg-color, #ffffff);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    z-index: 999;
    opacity: 0;
    transition: all 0.3s ease;
    display: none !important;
}

/* Desktop elements sadece büyük ekranlarda göster */
@media (min-width: 769px) {
    .header-eklentisi.desktop-hamburger-enabled .desktop-hamburger-toggle {
        display: flex !important;
    }
    
    .header-eklentisi.desktop-hamburger-enabled .header-menu,
    .header-eklentisi.desktop-hamburger-enabled .header-button {
        display: none !important;
    }

    .header-eklentisi.desktop-hamburger-enabled.has-social .header-eklentisi-container {
        grid-template-columns: 1fr auto auto;
    }
    
    .desktop-dropdown-menu {
        display: block !important;
    }
}

/* Mobilde desktop hamburger'ı kesinlikle gizle */
@media (max-width: 768px) {
    .desktop-hamburger-toggle {
        display: none !important;
    }
    
    .desktop-dropdown-menu,
    .desktop-sidebar-overlay {
        display: none !important;
    }
}

/* Dropdown Style - Yukarıdan aşağı açılır */
.desktop-dropdown-menu.style-dropdown {
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateY(-10px);
    border-top: 1px solid #e0e0e0;
}

.desktop-dropdown-menu.style-dropdown.active {
    max-height: 500px;
    opacity: 1;
    transform: translateY(0);
}

/* Sidebar Style - Sağdan sola açılır */
.desktop-dropdown-menu.style-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100vh;
    border-top: none;
    border-left: 1px solid #e0e0e0;
    padding-top: var(--header-height, 80px);
    transform: translateX(0);
}

.desktop-dropdown-menu.style-sidebar.active {
    right: 0;
    opacity: 1;
    transform: translateX(0);
}

/* Dropdown content ayarları */

.desktop-dropdown-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Dropdown stil için özel content */
.desktop-dropdown-menu.style-dropdown .desktop-dropdown-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: flex-start;
}

.desktop-dropdown-menu.style-dropdown .dropdown-menu-items {
    grid-column: 1;
}

.desktop-dropdown-menu.style-dropdown .dropdown-button {
    grid-column: 2;
    margin-top: 0;
    padding-top: 0;
    border-top: none;
    align-self: center;
}

/* Sidebar stil için özel content */
.desktop-dropdown-menu.style-sidebar .desktop-dropdown-content {
    height: 100%;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Sidebar overlay */
.desktop-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none !important;
}

.desktop-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar overlay sadece büyük ekranlarda göster */
@media (min-width: 769px) {
    .desktop-sidebar-overlay {
        display: block !important;
    }
}

/* Desktop dropdown buton - Standart buton stilleri */
.desktop-dropdown-menu .dropdown-button a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-color, #0073aa);
    color: var(--button-text-color, #ffffff) !important;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 2px solid var(--button-color, #0073aa);
    transition: all 0.3s ease;
    min-height: auto;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.desktop-dropdown-menu .dropdown-button a:hover {
    background-color: white !important;
    color: var(--button-color, #0073aa) !important;
    border: 2px solid var(--button-color, #0073aa);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .desktop-dropdown-menu.style-dropdown .desktop-dropdown-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .desktop-dropdown-menu.style-dropdown .dropdown-button {
        grid-column: 1;
    }
    
    .desktop-dropdown-menu.style-dropdown ul {
        grid-template-columns: 1fr;
    }
    
    .desktop-dropdown-menu.style-sidebar {
        width: 280px;
        right: -280px;
    }
}

.desktop-dropdown-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 15px;
}

/* Dropdown stil - Alt alta menü */
.desktop-dropdown-menu.style-dropdown ul {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* Sidebar stil - Alt alta menü */
.desktop-dropdown-menu.style-sidebar ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.desktop-dropdown-menu a {
    color: var(--menu-text-color, #333);
    text-decoration: none;
    font-weight: 500;
    display: block;
    transition: all 0.3s ease;
    font-size: 16px;
}

/* Dropdown stil linkler - Sadeleştirilmiş */
.desktop-dropdown-menu.style-dropdown a {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    text-align: left;
    background: transparent;
    display: block;
    transition: all 0.3s ease;
}

.desktop-dropdown-menu.style-dropdown a:hover {
    background: #f8f9fa;
    color: var(--menu-hover-text-color, #0073aa);
    padding-left: 25px;
}

/* Sidebar stil linkler */
.desktop-dropdown-menu.style-sidebar a {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.desktop-dropdown-menu.style-sidebar a:hover {
    color: var(--menu-hover-text-color, #0073aa);
    padding-left: 10px;
}



.desktop-dropdown-menu .dropdown-button {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid #f0f0f0;
}

.desktop-dropdown-menu .dropdown-button a {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--button-color, #0073aa);
    color: white;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    border-bottom: none;
    transition: opacity 0.3s ease;
}

.desktop-dropdown-menu .dropdown-button a:hover {
    opacity: 0.8;
    color: white;
}

/* Desktop hamburger ayarları yukarıda media query'de tanımlandı */

/* Logo hizalama düzeltmeleri */
@media (min-width: 769px) {
    .header-logo img {
        vertical-align: middle;
    }
    
    .header-logo.position-center {
        /* Büyük logo için daha fazla yer bırak */
        max-width: calc(100% - 200px);
    }
    
    .header-logo.position-center img {
        max-width: 100%;
        height: auto;
    }
} 