/* Mobile Header Styles */
.kingster-mobile-header-wrap {
    display: none;
}

.kingster-mobile-header {
    background-color: #f8f8f8;
    padding: 10px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.kingster-mobile-header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 15px;
}

.kingster-logo img {
    height: 40px;
    width: auto;
}

.kingster-mobile-menu-right {
    display: flex;
    align-items: center;
}

.kingster-mm-menu-button {
    display: block;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

.kingster-mm-menu-button span,
.kingster-mm-menu-button span:before,
.kingster-mm-menu-button span:after {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #333;
    position: absolute;
    transition: all 0.3s;
}

.kingster-mm-menu-button span {
    top: 50%;
    transform: translateY(-50%);
}

.kingster-mm-menu-button span:before {
    content: '';
    top: -8px;
}

.kingster-mm-menu-button span:after {
    content: '';
    top: 8px;
}

.kingster-mm-menu-wrap {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: white;
    transition: right 0.3s ease;
    z-index: 1001;
    box-shadow: -2px 0 5px rgba(0,0,0,0.1);
}

.kingster-mm-menu-wrap.active {
    right: 0;
}

.m-menu {
    list-style: none;
    padding: 60px 0 0 0;
    margin: 0;
}

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

.m-menu a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s;
}

.m-menu a:hover {
    background-color: #f5f5f5;
}

/* Top Bar Styles */
.kingster-top-bar {
    background-color: #9D2235;
    color: white;
    text-align: right;
    padding: 5px 0;
}

.language-toggle {
    background-color: transparent;
    border: none;
    color: inherit;
    font-size: 14px;
    cursor: pointer;
    padding: 5px 10px;
    margin-right: 20px;
}

.language-toggle:hover {
    opacity: 0.8;
}

/* Header Styles */
.kingster-header-wrap {
    background-color: #f8f8f8;
    padding: 10px 0;
    position: relative;
}

.kingster-header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.kingster-header-container-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.kingster-logo img {
    height: 60px;
    width: auto;
}

.kingster-navigation {
    text-align: right;
}

.baslik h4 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
}

.sf-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

.sf-menu li {
    position: relative;
}

.sf-menu a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s;
}

.sf-menu a:hover,
.sf-menu .current-menu-item a {
    color: #9D2235;
}

/* Responsive */
@media (max-width: 768px) {
    .kingster-mobile-header-wrap {
        display: block;
    }
    
    .kingster-header-wrap {
        display: none;
    }
    
    .kingster-top-bar {
        display: none;
    }
    
    body {
        padding-top: 60px;
    }
}

@media (min-width: 769px) {
    .kingster-mobile-header-wrap {
        display: none;
    }
}