@media (max-width: 479px){
    .header-top .header-left {
        justify-content: space-between;
    }
    .divler{
        display:none !important;
    }
}

@media (min-width: 280px) and (max-width: 650px) {
    .logo-kamera {
        width: 165px !important;
        height: 60px !important;
    }
}

/* Telefonlar için stil */
@media (min-width: 767px) and (max-width: 768px) {
    .logo-kamera {
        width: 165px !important;
        height: 60px !important;
    }
}

/* Tabletler için stil */
@media (min-width: 769px) and (max-width: 1024px) {
    .logo-kamera {
        width: 165px !important;
        height: 60px !important;
    }
}

.logo-kamera {
    width: 225px;
}

/* Header genel stil */
.header {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-top {
    background: #ffffff !important;
    color: white;
}

.header-top a {
    color: black !important;
    transition: all 0.3s ease;
}

.header-top a:hover {
    color: #f1c40f !important;
}

/* Ana menü stilleri */
.main-nav .menu > li > a {
    padding: 15px 20px;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
}

.main-nav .menu > li > a:hover {
    color: #3498db;
}

.main-nav .menu > li > a::after,
.active-underline > li > a::after {
    display: none !important;
}

.menu.active-underline > li > a::after {
    display: none !important;
}

.header-search {
    display: flex;
    align-items: center;
    max-width: 400px;
    width: 100%;
    position: relative;
    margin: 0;
    background: transparent;
    gap: 10px;
}

.header-search .form-control {
    width: 100%;
    height: 48px;
    padding: 0 25px;
    border: 2px solid #eee;
    border-radius: 30px;
    font-size: 15px;
    color: #333;
    transition: all 0.3s ease;
    background: white;
}

.header-search .form-control:hover {
    border-color: #ddd;
}

.header-search .form-control:focus {
    border-color: #3498db;
    outline: none;
    box-shadow: none;
}

.header-search .form-control::placeholder {
    color: #999;
    font-size: 14px;
}

.btn-search {
    position: relative;
    width: 48px;
    height: 48px;
    border: none;
    background: #0b1b3a !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    padding: 0;
    flex-shrink: 0;
    cursor: pointer;
}

.btn-search:hover {
    transform: scale(1.05);
    background: #2E7CF6 !important;
}

.btn-search i {
    color: white !important;
    font-size: 16px;
}

/* Mobil görünüm için ek stiller */
@media (max-width: 768px) {
    .header-search {
        display: none !important;
    }
    
    .btn-search {
        width: 44px;
        height: 44px;
    }
}

/* Logo alanı */
.logo-kamera {
    transition: transform 0.3s ease;
}

.logo-kamera:hover {
/*    transform: scale(1.05);*/
}

/* Yeni modern submenu stilleri */
.submenu {
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    border: none;
    padding: 15px;
    margin-top: 15px;
    background: white;
    min-width: 250px;
    animation: submenuFadeIn 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

@keyframes submenuFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.submenu li {
    margin: 5px 0;
}

.submenu li a {
    padding: 12px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    color: #555;
    font-weight: 500;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.submenu li a img {
    margin-right: 12px;
    transition: all 0.3s ease;
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.submenu li a:hover {
    background: #f8f9fa;
    color: #3498db;
    padding-left: 25px;
}

.submenu li a:hover img {
    transform: scale(1.1) rotate(5deg);
}

/* Hover efekti için ok işareti */
.submenu li a::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s ease;
}

.submenu li a:hover::after {
    opacity: 1;
    right: 15px;
}

/* Has-submenu hover efekti */
.has-submenu:hover .submenu {
    display: block;
}

/* Kullanıcı menüsü stilleri */
.user-menu-wrapper {
    position: relative;
}

.user-menu-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-menu-toggle i {
    font-size: 16px;
}

.user-submenu {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 10px 0;
    margin-top: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.user-menu-wrapper:hover .user-submenu {
    opacity: 1;
    visibility: visible;
}

/* Menü öğelerinin daha kolay seçilebilmesi için ek alan */
.user-submenu::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

.user-submenu li a {
    padding: 10px 20px;
    color: #333 !important;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.user-submenu li a:hover {
    background: #f8f9fa;
    color: #3498db !important;
    padding-left: 25px;
}

.user-submenu li a i {
    width: 20px;
    text-align: center;
}

.user-submenu li a.text-danger:hover {
    color: #dc3545 !important;
} 