/* Eker Mobil Menü Widget Stili */

/* Konteyner */
.eker-mobile-menu-container {
    display: block;
    position: relative;
    z-index: 9999;
}

/* Hamburger Buton */
.eker-mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 36px;
    height: 28px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
}

.eker-mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #d1292e;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.eker-mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(13px) rotate(45deg);
}

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

.eker-mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-12px) rotate(-45deg);
}

/* Panel */
.eker-mobile-menu-panel {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    max-width: 90vw;
    background-color: #fff;
    z-index: 10000;
    overflow-y: auto;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
    display: flex;
    flex-direction: column;
}

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

/* Overlay */
.eker-mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9990;
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
}

.eker-mobile-menu-overlay.active {
    visibility: visible;
    opacity: 1;
}

/* Panel Header */
.eker-mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.eker-mobile-menu-logo {
    max-width: 150px;
}

.eker-mobile-menu-logo img {
    max-width: 100%;
    height: auto;
}

.eker-mobile-menu-close {
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    color: #666;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.eker-mobile-menu-close:hover {
    color: #d1292e;
}

/* Arama Formu */
.eker-mobile-search {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.eker-mobile-search form {
    display: flex;
    position: relative;
}

.eker-mobile-search input[type="search"] {
    flex: 1;
    height: 44px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    transition: all 0.3s ease;
    width: 100%;
}

.eker-mobile-search input[type="search"]:focus {
    border-color: #d1292e;
    box-shadow: 0 0 0 2px rgba(209, 41, 46, 0.1);
}

.eker-mobile-search button {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 44px;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.eker-mobile-search button:hover {
    color: #d1292e;
}

/* Navigasyon Menü */
.eker-mobile-nav {
    padding: 10px 0;
    flex: 1;
    border-bottom: 1px solid #eee;
}

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

.eker-mobile-nav-menu li {
    position: relative;
    border-bottom: 1px solid #f5f5f5;
}

.eker-mobile-nav-menu li:last-child {
    border-bottom: none;
}

.eker-mobile-nav-menu li a {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.eker-mobile-nav-menu li a:hover {
    color: #d1292e;
    background-color: #f9f9f9;
}

.eker-mobile-nav-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    display: none;
}

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

.eker-mobile-nav-menu .sub-menu li:last-child {
    border-bottom: none;
}

.eker-mobile-nav-menu .sub-menu li a {
    padding-left: 40px;
    font-size: 14px;
    font-weight: normal;
}

.eker-mobile-nav-menu .menu-item-has-children > a::after {
    content: '\f107';
    font-family: 'FontAwesome';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.3s ease;
}

.eker-mobile-nav-menu .menu-item-has-children.active > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Kayıt Formu */
.eker-mobile-registration {
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.eker-mobile-registration h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.eker-mobile-register-button {
    display: inline-block;
    width: 100%;
    height: 44px;
    line-height: 44px;
    padding: 0 20px;
    background-color: #d1292e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
    text-decoration: none;
}

.eker-mobile-register-button:hover {
    background-color: #b9242a;
    color: #fff;
    text-decoration: none;
}

/* Sosyal Medya */
.eker-mobile-social {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
}

.eker-mobile-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.eker-mobile-social-icon:hover {
    background-color: #d1292e;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(209, 41, 46, 0.2);
}

/* Duyarlı Tasarım */
@media (max-width: 480px) {
    .eker-mobile-menu-panel {
        width: 280px;
    }
    
    .eker-mobile-nav-menu li a {
        padding: 12px 20px;
    }
}

/* Açılış Animasyonu */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.eker-mobile-menu-panel.active .eker-mobile-menu-header,
.eker-mobile-menu-panel.active .eker-mobile-search,
.eker-mobile-menu-panel.active .eker-mobile-nav,
.eker-mobile-menu-panel.active .eker-mobile-registration,
.eker-mobile-menu-panel.active .eker-mobile-social {
    animation: fadeInRight 0.5s ease forwards;
}

.eker-mobile-menu-panel.active .eker-mobile-search {
    animation-delay: 0.1s;
}

.eker-mobile-menu-panel.active .eker-mobile-nav {
    animation-delay: 0.2s;
}

.eker-mobile-menu-panel.active .eker-mobile-registration {
    animation-delay: 0.3s;
}

.eker-mobile-menu-panel.active .eker-mobile-social {
    animation-delay: 0.4s;
} 