:root {
    --topbar-display: flex;
    --primary-color-rgb: 0, 123, 255; /* primary color in RGB format */
    --primary-color-light: rgba(var(--primary-color-rgb), 0.15);
}

/* Top Bar Styles */
.hesap-sat-topbar {
    background-color: var(--primary-color);
    color: #ffffff;
    padding: 10px 48px 10px 24px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}


@media (max-width: 767px) {
    body {
        padding-bottom: 0px !important;
    }
}

/* Top bar gizleme */
.topbar-hidden .hesap-sat-topbar {
    display: none !important;
}

.hesap-sat-topbar.hidden {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.hesap-sat-topbar-content {
    max-width: 1200px;
    margin: 0 auto;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.hesap-sat-topbar-content a {
    color: #ffffff;
    text-decoration: underline;
    transition: opacity 0.2s ease;
}

.hesap-sat-topbar-content a:hover {
    opacity: 0.9;
}

.hesap-sat-topbar-close {
    background: none;
    border: none;
    padding: 8px;
    width: 32px;
    height: 32px;
    color: #ffffff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    transition: all 0.2s ease;
    border-radius: 50%;
}

.hesap-sat-topbar-close:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hesap-sat-topbar-close svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    stroke-width: 2.5;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hesap-sat-topbar {
        padding: 8px 40px 8px 16px;
        font-size: 13px;
    }
    
    .hesap-sat-topbar-close {
        width: 28px;
        height: 28px;
        padding: 6px;
    }
    
    .hesap-sat-topbar-close svg {
        width: 12px;
        height: 12px;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hesap-sat-topbar {
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    padding:0px !important;
    z-index: 900 !important; /* Header için orta seviye z-index */
}

/* Sticky header için */
.site-header.sticky {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    animation: slideDown 0.3s ease-out !important;
    z-index: 900 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

@media (max-width: 991px) {
    .site-header {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }
}

.header-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

/* Site Branding */
.site-branding {
    display: flex !important;
    align-items: center !important;
}

.custom-logo-link {
    display: block !important;
    max-width: 200px !important;
}

.custom-logo {
    width: 100% !important;
    height: auto !important;
    max-height: 50px !important;
    display: block !important;
}

@media (max-width: 991px) {
    .custom-logo {
        padding-top: 5px !important;
    }
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none !important; /* Masaüstünde gizli */
}

.menu-toggle-icon,
.menu-toggle-icon::before,
.menu-toggle-icon::after {
    display: block;
    width: 24px;
    height: 2px;
    background: #333;
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle-icon {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle-icon::before {
    content: '';
    top: -8px;
}

.menu-toggle-icon::after {
    content: '';
    bottom: -8px;
}

/* Main Navigation */
.main-navigation {
    flex: 1;
    background: none !important;
    padding: 0 !important;
}

.nav-menu {
    display: flex !important;
    flex-direction: row !important; /* Masaüstünde yatay menü */
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
}

.nav-menu > li {
    position: relative !important;
    margin: 0 0px !important;
}

.nav-menu > li > a {
    color: #333;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    position: relative;
    transition: color 0.2s ease;
    border-right: 1px solid #f0f1f9;
}

/* Hover Line */
.nav-menu > li > a::before {
    content: '';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--primary-color);
    transition: transform 0.3s ease;
}

.nav-menu > li > a:hover::before {
    transform: translateX(-50%) scaleX(1);
}

/* Dropdown Arrow */
.nav-menu > li.menu-item-has-children > a::after {
    content: '\f107' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    margin-left: 5px !important;
    float: right !important;
    background-image: none !important;
    width: auto !important;
    height: auto !important;
    opacity: 1 !important;
    position: absolute !important;
    right: 10px !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    transition: transform 0.3s ease !important;
}

.nav-menu > li.menu-item-has-children.active > a::after {
    content: '\f106' !important;
    transform: translateY(-50%) rotate(0deg) !important;
}

/* Submenu */
.nav-menu > li > .sub-menu {
    position: static !important;
    min-width: 100% !important;
    background: #f9f9f9 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: none !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    max-height: 0 !important;
    transition: max-height 0.3s ease-out !important;
}

.nav-menu > li:hover > .sub-menu {
    display: none !important;
}

.nav-menu > li.active > .sub-menu {
    display: block !important;
    max-height: 1000px !important;
    transition: max-height 0.5s ease-in !important;
}

.nav-menu > li > .sub-menu > li {
    position: relative;
}

.nav-menu > li > .sub-menu > li > a {
    display: block;
    padding: 10px 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s;
    white-space: nowrap;
    position: relative;
}

.nav-menu > li > .sub-menu > li > a::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--primary-color);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: -1;
    border-radius: 4px;
}

.nav-menu > li > .sub-menu > li > a:hover::before {
    opacity: 0.15;
}

/* Active States */
.nav-menu > li.current-menu-item > a,
.nav-menu > li > .sub-menu > li.current-menu-item > a {
    color: var(--primary-color);
}

.nav-menu > li:hover > a {
    color: var(--primary-color);
}

/* Hover Bridge - Prevents dropdown from closing when moving mouse */
.nav-menu > li::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: -20px;
    width: calc(100% + 40px);
    height: 10px;
    background: transparent;
    opacity: 0;
}

.nav-menu > li:hover::after {
    opacity: 1;
}

/* Header Actions */
.header-actions {
    display: flex !important;
    align-items: center !important;
}

.notification-cart-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    margin-right: 16px !important;
}

.header-notification {
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.header-notification::after {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 12px !important;
    background-color: var(--primary-color) !important;
    opacity: 0.15 !important;
    z-index: 1 !important;
}

.header-notification .icon {
    position: relative !important;
    z-index: 2 !important;
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.header-notification::before {
    content: '' !important;
    position: absolute !important;
    inset: 0 !important;
    border-radius: 12px !important;
    background-color: var(--primary-color) !important;
    opacity: 0.15 !important;
    animation: notification-pulse 2s infinite !important;
    z-index: 0 !important;
}

.woocommerce-notices-wrapper {
    display: none;
}

@keyframes notification-pulse {
    0% {
        transform: scale(1);
        opacity: 0.15;
    }
    50% {
        transform: scale(1.35);
        opacity: 0.1;
    }
    100% {
        transform: scale(1);
        opacity: 0.15;
    }
}

.header-cart {
    position: relative !important;
    width: 42px !important;
    height: 42px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
    background-color: var(--primary-color) !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

.header-cart .icon {
    position: relative !important;
    z-index: 2 !important;
    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.header-cart .icon svg {
    width: 20px !important;
    height: 20px !important;
    stroke-width: 2 !important;
}

.notification-count,
.cart-count {
    position: absolute !important;
    top: -3px !important;
    right: -3px !important;
    background: #fff !important;
    color: var(--primary-color) !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    min-width: 12px !important;
    height: 12px !important;
    border-radius: 6px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 3px !important;
    z-index: 3 !important;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1) !important;
}

.desktop-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
}

.header-account {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.header-account:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
    color: #fff;
}

.header-account .icon {
    position: relative;
    display: flex;
}

.header-account .icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 2;
}

.header-cart .text {
    display: none;
}

.header-account .text {
    font-size: 14px;
}

/* Cart and Favorites Dropdowns */
.header-cart-dropdown,
.header-favorites-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 320px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 16px;
    margin-top: 10px;
    display: none;
    z-index: 1000;
}

.header-cart-dropdown.active,
.header-favorites-dropdown.active {
    display: block;
}

.dropdown-header {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    padding-bottom: 12px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dropdown-header h4 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.dropdown-items {
    max-height: 320px;
    overflow-y: auto;
}

/* Dropdown Items */
.dropdown-item {
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    transition: background-color 0.2s ease !important;
}

/* Dropdown item içindeki tüm elemanlar için pointer-events'i kaldır */
.dropdown-item > * {
    pointer-events: none !important;
}

/* Sadece silme butonu için pointer-events'i etkinleştir */
.cart-item-remove {
    position: absolute !important;
    right: 0 !important;
    top: 0 !important;
    bottom: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    z-index: 999999 !important;
    pointer-events: auto !important;
}

.dropdown-item-remove {
    width: 30px !important;
    height: 30px !important;
    background: #ff4444 !important;
    color: #fff !important;
    cursor: pointer !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    z-index: 9999999 !important;
    position: relative !important;
    border: none !important;
    padding: 0 !important;
    pointer-events: auto !important;
}

.dropdown-item-remove:hover {
    background: #ff2222 !important;
    color: #fff !important;
    text-decoration: none !important;
}

.dropdown-item-remove i {
    font-size: 14px !important;
    pointer-events: none !important;
}

.dropdown-item.removing {
    opacity: 0.5 !important;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.dropdown-item-image {
    width: 70px !important;
    height: 70px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #f8f9fa !important;
}

.dropdown-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.dropdown-item-title {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    color: #333 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.item-quantity {
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 400 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
}

.dropdown-tax {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
    color: #666 !important;
    padding: 4px 0 !important;
}

.dropdown-total {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding-top: 8px !important;
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
}

/* Remove individual tax info from items */
.tax-info {
    display: none !important;
}

.dropdown-actions {
    display: flex !important;
    gap: 8px !important;
}

.dropdown-button {
    flex: 1 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
}

.dropdown-button.primary {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.dropdown-button.primary:hover {
    background: var(--primary-color-dark) !important;
    transform: translateY(-1px) !important;
}

.dropdown-button.secondary {
    background: #f8f9fa !important;
    color: #333 !important;
}

.dropdown-button.secondary:hover {
    background: #e9ecef !important;
    transform: translateY(-1px) !important;
}

/* Mobile Styles */
@media (max-width: 991px) {
    .desktop-actions {
        display: none !important;
    }

    .notification-cart-wrapper {
        margin-right: 0 !important;
    }

    .header-cart {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important; /* Mobilde görünür */
        align-items: center !important;
        justify-content: center !important;
        width: 40px !important;
        height: 40px !important;
        position: relative !important;
        z-index: 10000 !important;
        border-radius: 8px !important;
        background: var(--primary-color) !important;
        color: #fff !important;
        cursor: pointer !important;
    }

    .menu-toggle:hover {
        background: var(--primary-color-dark) !important;
    }

    .menu-toggle svg {
        width: 24px !important;
        height: 24px !important;
        stroke: #fff !important;
    }

    .main-navigation {
        position: fixed !important;
        top: 0 !important;
        left: -100% !important;
        width: 80% !important;
        max-width: 300px !important;
        height: 100vh !important;
        background: #fff !important;
        padding: 0 !important;
        transition: all 0.3s ease !important;
        z-index: 100000 !important; /* En yüksek z-index - her şeyden yüksek */
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.1) !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
        display: flex !important;
        flex-direction: column !important;
        flex: none !important;
    }

    .main-navigation.active {
        left: 0 !important;
    }

    /* Mobil Menü Başlık Kısmı */
    .mobile-menu-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 15px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        background-color: #fff !important;
        position: sticky !important;
        top: 0 !important;
        z-index: 10 !important;
        flex-shrink: 0 !important;
    }

    /* Mobil Logo Stilleri - Sadece mobil görünümde */
    .mobile-only-site-branding {
        display: flex !important;
        align-items: center !important;
        max-width: 70% !important;
        overflow: hidden !important;
    }

    .mobile-only-logo-link {
        display: block !important;
        max-width: 150px !important;
    }

    .mobile-only-logo {
        width: 140px !important;
        height: auto !important;
        max-height: 36px !important;
        display: block !important;
        object-fit: contain !important;
    }

    .mobile-only-site-title {
        font-size: 18px !important;
        font-weight: 600 !important;
        color: var(--primary-color) !important;
        text-decoration: none !important;
    }

    /* Menü kapatma butonu - Mobil görünümde aktif */
    .menu-close-btn {
        position: relative !important;
        min-width: 36px !important;
        width: 36px !important;
        height: 36px !important;
        background: var(--primary-color) !important;
        color: #fff !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
        z-index: 10 !important;
        border: none !important;
        padding: 0 !important;
        font-size: 16px !important;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.3s ease !important;
        flex-shrink: 0 !important;
    }

    .menu-close-btn:hover {
        background: var(--primary-color-dark) !important;
        transform: scale(1.05) !important;
    }

    .menu-close-btn i {
        font-size: 18px !important;
    }

    /* Menü açıkken toggle bar'ı gizle */
    body.menu-open .menu-toggle {
        opacity: 0 !important;
        visibility: hidden !important;
        pointer-events: none !important;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: column !important; /* Mobilde dikey menü */
        padding: 0 !important;
        margin: 0 !important;
        list-style: none !important;
        width: 100% !important;
        overflow-y: auto !important;
    }

    .nav-menu > li {
        position: relative !important;
        margin: 0 !important;
        border-bottom: 1px solid #f0f0f0 !important;
        width: 100% !important;
        flex-shrink: 0 !important;
    }

    .nav-menu > li > a {
        color: #333 !important;
        text-decoration: none !important;
        font-size: 15px !important;
        font-weight: 500 !important;
        padding: 12px 20px !important;
        display: block !important;
        position: relative !important;
        transition: color 0.2s ease !important;
        border-right: none !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .nav-menu > li > a::before {
        display: none !important;
    }

    .nav-menu > li.menu-item-has-children > a::after {
        content: '\f107' !important;
        font-family: 'Font Awesome 6 Free' !important;
        font-weight: 900 !important;
        margin-left: 5px !important;
        float: right !important;
        background-image: none !important;
        width: auto !important;
        height: auto !important;
        opacity: 1 !important;
        position: absolute !important;
        right: 20px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        transition: transform 0.3s ease !important;
    }

    .nav-menu > li.menu-item-has-children.active > a::after {
        content: '\f106' !important;
        transform: translateY(-50%) rotate(0deg) !important;
    }

    .nav-menu > li > .sub-menu {
        position: static !important;
        min-width: 100% !important;
        background: #f9f9f9 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        display: none !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        overflow: hidden !important;
        max-height: 0 !important;
        transition: max-height 0.3s ease-out !important;
    }

    .nav-menu > li:hover > .sub-menu {
        display: none !important;
    }

    .nav-menu > li.active > .sub-menu {
        display: block !important;
        max-height: 1000px !important;
        transition: max-height 0.5s ease-in !important;
    }

    .nav-menu > li > .sub-menu > li {
        width: 100% !important;
    }

    .nav-menu > li > .sub-menu > li > a {
        padding: 10px 20px 10px 40px !important;
        font-size: 14px !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
        text-align: left !important;
    }

    .nav-menu > li > .sub-menu > li:last-child > a {
        border-bottom: none !important;
    }

    .nav-menu > li::after {
        display: none !important;
    }

    /* Overlay */
    .menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        z-index: 9000 !important; /* Düşük z-index - navigation'dan düşük */
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 0.3s ease, visibility 0.3s ease !important;
        backdrop-filter: blur(2px) !important;
        pointer-events: none !important; /* Başlangıçta tıklanamaz */
    }

    .menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important; /* Aktif olduğunda tıklanabilir */
    }

    body.menu-open {
        overflow: hidden !important;
    }
}

/* Masaüstünde mobil logoyu gizle */
@media (min-width: 992px) {
    .mobile-menu-header,
    .mobile-only-site-branding,
    .mobile-only-logo-link,
    .mobile-only-logo,
    .mobile-only-site-title,
    .mobile-menu-footer,
    .menu-toggle,
    .menu-overlay {
        display: none !important; /* Masaüstünde tüm mobil elemanlar gizli */
    }
    
    /* Masaüstünde dropdown hover ile açılsın */
    .nav-menu > li > .sub-menu {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        min-width: 220px !important;
        background: #fff !important;
        border-radius: 8px !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(10px) !important;
        transition: all 0.3s ease !important;
        display: block !important;
        padding: 8px 0 !important;
        margin-top: 0 !important;
        z-index: 1000 !important;
        max-height: none !important;
        overflow: visible !important;
        list-style: none !important;
    }
    
    .nav-menu > li:hover > .sub-menu {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    .nav-menu > li > .sub-menu > li {
        list-style: none !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .nav-menu > li > .sub-menu > li > a {
        padding: 10px 20px !important;
        display: block !important;
        color: #333 !important;
        font-size: 14px !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
        border-bottom: none !important;
    }
    
    .nav-menu > li > .sub-menu > li > a:hover {
        background-color: rgba(0, 123, 255, 0.1) !important;
        color: var(--primary-color) !important;
    }
    
    .nav-menu > li.menu-item-has-children > a::after {
        right: 5px !important;
    }
}

/* Account Modal Styles */
.hesap-sat-account-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9500 !important; /* Overlay ile navigation arasında */
}

.hesap-sat-account-modal.active {
    display: block;
}

.account-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.account-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.account-modal-header {
    padding: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.account-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
}

.account-modal-close {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #666;
}

.account-modal-body {
    padding: 20px;
}

.account-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.account-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    font-weight: 500;
}

.account-tab.active {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.account-form {
    display: none;
}

.account-form.active {
    display: block;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
}

.account-submit-btn {
    width: 100%;
    padding: 12px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.account-submit-btn:hover {
    background: var(--primary-color-dark);
}

@media (max-width: 480px) {
    .account-modal-content {
        width: calc(100% - 40px);
        margin: 0 20px;
    }
}

/* Reset button styles */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: none;
    color: inherit;
}

/* Menü kapatma butonu - Varsayılan olarak gizli */
.menu-close-btn {
    display: none; /* Varsayılan olarak gizli */
}

/* Accessibility */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    word-wrap: normal !important;
}

/* Cart Dropdown */
.header-cart-dropdown {
    position: absolute !important;
    top: calc(100% + 10px) !important;
    right: -20px !important;
    width: 380px !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    padding: 16px !important;
    display: none !important;
    z-index: 950 !important; /* Header'dan biraz daha yüksek */
}

.dropdown-items {
    max-height: 320px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    margin: 0 -16px !important;
    padding: 0 16px !important;
}

/* Dropdown Items */
.dropdown-item {
    transition: background-color 0.2s ease !important;
    padding: 12px 16px !important;
    margin: 0 -16px !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    position: relative !important;
    background: #fff !important;
}

.dropdown-item:not(:last-child) {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dropdown-item:hover {
    background-color: rgba(0, 0, 0, 0.02) !important;
}

.dropdown-item-image {
    width: 70px !important;
    height: 70px !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #f8f9fa !important;
}

.dropdown-item-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.dropdown-item-content {
    flex: 1 !important;
    min-width: 0 !important;
    padding-right: 40px !important;
    pointer-events: none !important;
}

.dropdown-item-title {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    color: #333 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

.item-quantity {
    font-size: 12px !important;
    color: #666 !important;
    font-weight: 400 !important;
    background: rgba(0, 0, 0, 0.05) !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 20px !important;
}

.dropdown-footer {
    margin-top: 16px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.dropdown-tax {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 8px !important;
    font-size: 13px !important;
    color: #666 !important;
    padding: 4px 0 !important;
}

.dropdown-total {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin-bottom: 12px !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding-top: 8px !important;
    border-top: 1px dashed rgba(0, 0, 0, 0.1) !important;
    color: var(--primary-color) !important;
}

.dropdown-actions {
    display: flex !important;
    gap: 8px !important;
}

.dropdown-button {
    flex: 1 !important;
    padding: 12px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    text-align: center !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    font-size: 14px !important;
}

.dropdown-button.primary {
    background: var(--primary-color) !important;
    color: #fff !important;
}

.dropdown-button.primary:hover {
    background: var(--primary-color-dark) !important;
    transform: translateY(-1px) !important;
}

.dropdown-button.secondary {
    background: #f8f9fa !important;
    color: #333 !important;
}

.dropdown-button.secondary:hover {
    background: #e9ecef !important;
    transform: translateY(-1px) !important;
}

/* Desktop Hover */
@media (min-width: 992px) {
    .header-cart {
        position: relative !important;
    }

    .header-cart:hover {
        background-color: var(--primary-color-dark) !important;
    }

    /* Hover Bridge */
    .header-cart::after {
        content: '' !important;
        position: absolute !important;
        bottom: -10px !important;
        left: -20px !important;
        width: calc(100% + 40px) !important;
        height: 20px !important;
        background: transparent !important;
    }

    .header-cart-dropdown::before {
        content: '' !important;
        position: absolute !important;
        top: -20px !important;
        left: 0 !important;
        width: 100% !important;
        height: 20px !important;
        background: transparent !important;
    }

    .header-cart:hover .header-cart-dropdown,
    .header-cart-dropdown:hover {
        display: block !important;
    }

    .nav-menu > li.menu-item-has-children > a::after {
        right: 5px !important;
    }
}

.dropdown-item-price {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 10px !important;
    border-radius: 6px !important;
    margin-top: 4px !important;
    opacity: 0.9 !important;
}

.price-icon {
    color: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
}

.price-icon i {
    font-size: 14px !important;
}

.price-wrapper {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
    flex: 1 !important;
    justify-content: flex-start !important;
}

.regular-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    text-align: left !important;
}

.sale-price + .regular-price {
    font-size: 13px !important;
    font-weight: 400 !important;
    color: #999 !important;
    text-decoration: line-through !important;
    order: 2 !important;
    margin-left: 4px !important;
}

.sale-price {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: var(--primary-color) !important;
    order: 1 !important;
    text-align: left !important;
}

.discount-badge {
    display: flex !important;
    align-items: center !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    padding: 2px 6px !important;
    border-radius: 4px !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    margin-left: auto !important;
    order: 3 !important;
}

.tax-info {
    font-size: 12px !important;
    color: #666 !important;
    margin-top: 4px !important;
    padding-left: 10px !important;
    text-align: left !important;
}

.dropdown-item-content {
    flex: 1 !important;
    min-width: 0 !important;
    text-align: left !important;
}

.dropdown-item-title {
    font-size: 14px !important;
    font-weight: 500 !important;
    margin-bottom: 4px !important;
    color: #333 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    text-align: left !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
}

/* Notifications Modal Styles */
.hesap-sat-notifications-modal {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: 9500 !important; /* Overlay ile navigation arasında */
    display: none !important;
    background: transparent !important;
    pointer-events: none !important;
}

.hesap-sat-notifications-modal.active {
    display: block !important;
    pointer-events: auto !important;
}

.notifications-modal-content {
    position: absolute !important;
    top: calc(var(--header-height, 80px) + 10px) !important;
    right: 20px !important;
    width: 380px !important;
    background: #fff !important;
    border-radius: 8px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    pointer-events: auto !important;
}

.notifications-modal-overlay {
    display: none !important;
}

.notifications-modal-header {
    padding: 16px !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

.notifications-modal-header h3 {
    margin: 0 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.notifications-modal-body {
    max-height: calc(90vh - var(--header-height, 80px) - 100px) !important;
    overflow-y: auto !important;
    padding: 16px !important;
}

.notifications-list {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

.notification-item {
    display: flex !important;
    gap: 16px !important;
    padding: 16px !important;
    border-radius: 8px !important;
    background: #fff !important;
    transition: all 0.2s ease !important;
    border: 1px solid #eee !important;
    text-decoration: none !important;
    cursor: pointer !important;
}

.notification-item:hover {
    background-color: #f8f9fa !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05) !important;
}

.notification-icon {
    width: 48px !important;
    height: 48px !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    background: var(--primary-color) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.notification-icon svg {
    width: 24px !important;
    height: 24px !important;
    color: #fff !important;
    stroke: #fff !important;
}

.notification-content {
    flex: 1 !important;
    min-width: 0 !important;
    z-index: 888 !important;
}

.notification-content h4 {
    margin: 0 0 1px 0 !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.notification-content p {
    margin: 0 !important;
    font-size: 13px !important;
    color: #666 !important;
    line-height: 1.4 !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    box-orient: vertical !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.no-notifications {
    text-align: center !important;
    padding: 40px 20px !important;
    color: #666 !important;
}

.no-notifications p {
    margin: 0 !important;
    font-size: 15px !important;
}

@media (max-width: 991px) {
    .notifications-modal-content {
        width: calc(100% - 40px) !important;
        right: 20px !important;
        left: 20px !important;
    }
}

@media (max-width: 480px) {
    .notifications-modal-content {
        right: 10px !important;
        left: 10px !important;
        width: auto !important;
    }

    .notification-item {
        padding: 12px !important;
    }

    .notification-icon {
        width: 40px !important;
        height: 40px !important;
    }

    .notification-icon svg {
        width: 20px !important;
        height: 20px !important;
    }
}

.notifications-modal-close {
    background: none !important;
    border: none !important;
    padding: 8px !important;
    cursor: pointer !important;
    color: #666 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    transition: all 0.2s ease !important;
}

.notifications-modal-close:hover {
    background: rgba(0, 0, 0, 0.05) !important;
    color: #333 !important;
}

.notifications-modal-close svg {
    width: 20px !important;
    height: 20px !important;
}

/* Top Bar */
.site-topbar {
    position: relative;
    height: 40px;
    z-index: 900 !important; /* Header ile aynı seviyede */
}

.site-topbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    opacity: 0.1;
    pointer-events: none;
}

.topbar-wrapper {
    display: flex;
    align-items: center;
    gap: 24px;
    height: 40px;
    font-size: 13px;
}

/* Social Icons */
.topbar-social {
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.topbar-social i {
    font-size: 12px;
}

/* Contact Info */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.contact-item i {
    color: var(--primary-color);
    font-size: 12px;
}

.contact-item a,
.contact-item span {
    color: var(--primary-color);
    text-decoration: none !important;
    font-size: 13px;
    transition: opacity 0.2s ease;
}

.contact-item a:hover {
    opacity: 0.8;
    color: var(--primary-color);
}

/* Topbar Menu */
.topbar-menu {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
    margin-left: auto;
    margin-right: 16px;
}

.topbar-menu li {
    margin: 0;
    padding: 0;
}

.topbar-menu li a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.2s ease;
}

.topbar-menu li a:hover {
    opacity: 0.8;
    color: var(--primary-color);
}

/* Order Track Button */
.order-track-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-color);
    border: none;
    padding: 6px 12px;
    border-radius: 6px;
    color: #fff !important;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 13px;
    height: 28px;
}

.order-track-btn:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
    color: #fff !important;
}

.order-track-btn i {
    font-size: 12px;
}

/* Order Track Modal */
.hesap-sat-order-track-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9500 !important; /* Overlay ile navigation arasında */
    display: none;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.hesap-sat-order-track-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.order-track-modal-content {
    background: #fff;
    border-radius: 12px;
    width: 100%;
    max-width: 400px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    transition: transform 0.3s ease;
    position: relative;
}

.order-track-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.order-track-modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.order-track-modal-close {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: #666;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin: -8px;
}

.order-track-modal-close:hover {
    background: rgba(0, 0, 0, 0.05);
    color: #333;
}

.order-track-modal-body {
    padding: 24px;
}

.order-track-form {
    position: relative;
}

.order-track-input {
    width: 100%;
    padding: 14px 120px 14px 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.2s ease;
    background: #f8f9fa;
    height: 52px;
}

.order-track-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
}

.order-track-input::placeholder {
    color: #999;
}

.order-track-submit {
    position: absolute;
    right: 6px;
    top: 6px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.order-track-submit:hover {
    background: var(--primary-color-dark);
    transform: translateY(-1px);
}

@media (max-width: 480px) {
    .order-track-modal-content {
        margin: 0 20px;
    }
    
    .order-track-modal-header {
        padding: 16px 20px;
    }
    
    .order-track-modal-body {
        padding: 20px;
    }
    
    .order-track-input {
        padding: 12px 100px 12px 12px;
        font-size: 14px;
        height: 48px;
    }
    
    .order-track-submit {
        padding: 8px 16px;
        font-size: 13px;
        height: 36px;
    }
}

/* Responsive */
@media (max-width: 991px) {
    .site-topbar {
        display: none;
    }
}

/* Order Track Button Container */
.topbar-order-track {
    margin-left: 0;
}

/* When there's no menu, apply margin-left: auto to the button container */
.topbar-wrapper:not(:has(.topbar-menu)) .topbar-order-track {
    margin-left: auto;
}

/* Order Track Submit Button */
.order-track-submit {
    color: #fff !important;
}

.order-track-submit:hover {
    color: #fff !important;
}

/* Başarı Mesajı Stili */
.hesap-sat-success-message {
    position: fixed !important;
    top: 20px !important;
    right: 20px !important;
    background: #4CAF50 !important;
    color: #fff !important;
    padding: 12px 20px !important;
    border-radius: 4px !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    z-index: 9000 !important; /* Overlay'den düşük ama çoğu elemandan yüksek */
    font-size: 14px !important;
    font-weight: 500 !important;
    transform: translateX(120%) !important;
    transition: transform 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.hesap-sat-success-message::before {
    content: '\f00c' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    font-size: 16px !important;
}

.hesap-sat-success-message.active {
    transform: translateX(0) !important;
}

@media (max-width: 768px) {
    .hesap-sat-success-message {
        top: auto !important;
        bottom: 20px !important;
        left: 20px !important;
        right: 20px !important;
        transform: translateY(120%) !important;
    }
    
    .hesap-sat-success-message.active {
        transform: translateY(0) !important;
    }

    .hesap-sat-mobile-bottom-bar {
        z-index: 800 !important; /* En düşük seviye */
    }

    .cookie-notice {
        z-index: 850 !important; /* Bottom bar'dan biraz daha yüksek */
    }

    .hesap-sat-whatsapp-widget.bottom-right {
        z-index: 870 !important; /* Cookie notice'dan biraz daha yüksek */
    }
}

/* Mobil Menü Alt Kısmı - Giriş Yap Butonu */
.mobile-menu-footer {
    padding: 20px !important;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    flex-shrink: 0 !important;
}

/* Mobil Menü İletişim Bilgileri */
.mobile-menu-contact {
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-bottom: 15px !important;
}

.mobile-contact-item {
    display: flex !important;
    align-items: center !important;
    padding: 12px 15px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    gap: 12px !important;
}

.mobile-phone {
    background-color: rgba(46, 204, 113, 0.1) !important;
    color: #2ecc71 !important;
}

.mobile-email {
    background-color: rgba(52, 152, 219, 0.1) !important;
    color: #3498db !important;
}

.mobile-contact-item .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    font-size: 16px !important;
}

.mobile-phone .icon {
    background-color: #2ecc71 !important;
    color: #fff !important;
}

.mobile-email .icon {
    background-color: #3498db !important;
    color: #fff !important;
}

.mobile-contact-item .text {
    font-size: 14px !important;
    font-weight: 500 !important;
}

.mobile-account-btn {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    width: 100% !important;
    padding: 12px !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.mobile-account-btn:hover {
    background: var(--primary-color-dark) !important;
    transform: translateY(-1px) !important;
}

.mobile-account-btn .icon {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.mobile-account-btn .text {
    font-size: 15px !important;
}

/* Sadece mobil görünümde hesap modalını ortala */
@media (max-width: 767px) {
    .account-modal-content {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        width: calc(100% - 40px) !important;
        max-width: 400px !important;
        max-height: 90vh !important;
        overflow-y: auto !important;
        z-index: 10001 !important;
    }
}

/* Footer Top Styles */
.footer-top {
    background: #171723;
    padding: 20px 0;
    position: relative;
}

.footer-top-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
}

/* İletişim ve Sosyal Medya Wrapper */
.footer-contact-social-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

/* Ayırıcı Çizgi Container */
.footer-divider-container {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    height: 1px;
    overflow: hidden;
}

/* Ayırıcı Çizgi */
.footer-divider {
    width: 100%;
    height: 1px;
    background: transparent;
    border: none;
    margin: 0;
    padding: 0;
}


.site-footer {
    padding: 0px !important
}

/* Footer Content Styles - Logo ve Widget Alanı */
.footer-content {
    background: #1e1e2d;
    padding: 40px 0;
}

.footer-content-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
}

/* Logo ve Açıklama Stili */
.footer-logo-description {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    flex-shrink: 0;
}

.footer-logo {
    max-width: 200px;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
}

.footer-description {
    color: rgb(255, 255, 255);
    font-size: 14px;
    line-height: 1.5;
}

/* Widget Alanları */
.footer-widgets-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    flex-grow: 1;
    justify-content: flex-end;
}

.footer-widget-area {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
}

.footer-widget-area h2,
.footer-widget-area h3,
.footer-widget-area h4 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-widget-area ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-area ul li {
    margin-bottom: 10px;
}

.footer-widget-area ul li a {
    color: rgb(255, 255, 255);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-widget-area ul li a:hover {
    color: #ffffffd4;
}

/* Site Info Styles */
.site-info {
    background: #171723;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.7);
    width: 100%;
    overflow-x: hidden; /* Yatay taşmayı engelle */
}

.site-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap; /* Sarma özelliğini engelleyerek aynı hizada kalmasını sağlıyoruz */
    box-sizing: border-box; /* Padding'in genişliğe eklenmesini engelle */
}

/* Footer Menu - Sol Taraf */
.footer-menu {
    flex: 1;
    min-width: 200px;
    max-width: 40%; /* Genişliği diğer elemanlarla dengeli olacak şekilde ayarlandı */
    text-align: left; /* Sol tarafa hizalama */
    margin:0px !important;
}

.footer-nav-menu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    flex-wrap: nowrap !important;
    margin: 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.footer-nav-menu li {
    display: inline-block !important;
    padding: 0 !important;
    /* float kaldırıldı */
}

.footer-nav-menu li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
    display: block !important;
    white-space: nowrap !important;
    padding: 5px 8px !important; /* Padding artırıldı */
}

.footer-nav-menu li a:hover {
    color: #fff;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .site-info-container {
        flex-direction: column;
        text-align: center;
        width: 100%;
        padding: 0 15px;
        box-sizing: border-box;
    }
    
    .footer-menu,
    .copyright,
    .payment-methods {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
        margin-bottom: 10px;
        padding: 0;
        box-sizing: border-box;
    }
    
    .footer-nav-menu {
        flex-direction: row; /* Yatay menü mobilde de korunuyor */
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
        flex-wrap: wrap; /* Mobilde sarma özelliği açık */
    }
    
    .payment-methods {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .site-info {
        padding: 15px 0;
        overflow-x: hidden;
    }
    
    .site-info-container {
        padding: 0 10px;
    }
    
    .footer-nav-menu {
        gap: 5px;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0 !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .footer-nav-menu li {
        margin: 0 5px;
        padding: 3px 0 !important;
    }
    
    .footer-nav-menu li a {
        font-size: 13px;
        padding: 3px 5px !important; /* Padding azaltıldı */
    }
    
    .copyright {
        font-size: 13px;
        margin: 10px 0;
        width: 100%;
    }
    
    .payment-methods {
        margin-top: 10px;
        width: 100%;
    }
    
    /* Footer içindeki tüm içeriğin genişliğini kontrol et */
    .footer-top, 
    .footer-content,
    .footer-contact-social-wrapper {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .footer-contact-info {
        display: flex !important;
        flex-direction: row !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        margin-bottom: 20px !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 5px !important;
    }
}

/* Ödeme Yöntemleri - Sağ Taraf */
.payment-methods {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    min-width: 200px;
    max-width: 40%; /* Genişliği diğer elemanlarla dengeli olacak şekilde ayarlandı */
    text-align: right; /* Sağ tarafa hizalama */
}

.payment-methods-img {
    max-height: 30px;
    width: auto;
}

/* İletişim Bilgileri Stili */
.footer-contact-section {
    flex: 1;
}

.footer-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-contact-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #fff;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: #e91e63;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 24px;
}

.contact-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-label {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-text {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

/* Sosyal Medya Stili */
.footer-social-section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
}

.footer-social-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: #e91e63;
    color: #fff;
    transform: translateY(-3px);
}

.footer-social-icon i {
    font-size: 24px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .footer-content-wrapper {
        flex-direction: column;
    }
    
    .footer-logo-description {
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .footer-widgets-wrapper {
        justify-content: space-between;
        width: 100%;
    }
    
    
    .footer-social-section {
        align-items: center;
        width: 100%;
    }
    
    .footer-social {
        justify-content: center; /* Sosyal ikonları ortala */
    }
    
    .footer-social-title {
        text-align: center;
        width: 100%;
    }
}

@media screen and (max-width: 768px) {
    .footer-contact-info {
        display: flex !important;
        flex-direction: row !important; /* Yan yana hizalama */
        justify-content: center !important;
        flex-wrap: nowrap !important; /* Sarma özelliğini engelleyerek yan yana kalmasını sağlıyoruz */
        margin-bottom: 20px !important;
        width: 100% !important;
    }
    
    .footer-contact-item {
        display: inline-block !important;
        width: auto !important; /* Genişliği içeriğe göre ayarla */
        margin: 0 !important;
        float: none !important;
        max-width: 48% !important; /* İki öğe yan yana sığacak kadar genişlik */
    }
    
    .footer-contact-item a {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
    }
    
    .contact-icon {
        width: 40px !important;
        height: 40px !important;
        min-width: 40px !important; /* Küçülmemesi için minimum genişlik */
    }
    
    .contact-icon i {
        font-size: 18px !important;
    }
    
    .contact-content {
        min-width: 0 !important; /* İçeriğin taşmasını engelleme */
    }
    
    .contact-text {
        font-size: 13px !important;
        white-space: nowrap !important; /* Metin alt satıra geçmemesi için */
    }
    
    .contact-label {
        font-size: 12px !important;
    }
    
    /* Diğer mobil stiller */
    .footer-widgets-wrapper {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-widget-area {
        max-width: 100%;
        width: 100%;
        text-align: center;
    }
    
    .footer-social {
        display: flex;
        gap: 15px;
        justify-content: center; /* Sosyal ikonları ortala */
    }
}


.footer-social-title {
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 10px;
}

/* Copyright - Orta Kısım */
.copyright {
    flex: 1;
    text-align: center;
    font-size: 14px;
    min-width: 20%;
}

@media (max-width: 768px) {
    .site-info {
        padding-bottom: 40px !important;
    }
}

/* Footer Button Styles */
.footer-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.footer-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background: #1c1c2d;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.footer-button i {
    font-size: 16px;
}

.footer-button:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

@media screen and (max-width: 768px) {
    .footer-buttons {
        flex-direction: row;
        width: 100%;
        margin-top: 15px;
    }
    
    .footer-button {
        padding: 8px 15px;
        font-size: 13px;
    }
    
    .footer-button i {
        font-size: 14px;
    }
}