:root {
    --primary-color: #fc5021; 
    --primary-color-low: rgba(252, 80, 33, 0.5);
    --primary-color-dark: #d43f0b;

    --secondary-color: #adb5bd; 
    --secondary-color-low: rgba(173, 181, 189, 0.5);
    --secondary-color-dark: #6c757d;

    --tertiary-color: #e9ecef;
    --tertiary-color-low: rgba(233, 236, 239, 0.5);
    --tertiary-color-dark: #ced4da;

    --bg-color: #f2f4f8;
    --bg-color-low: rgba(248, 249, 250, 0.5);
    --bg-color-dark: #e4e7eb;

    --text-dark: #343a40;
    --text-dark-low: #495057b9;
    --text-dark-dark: #212529;

    --text-light: #f8f9fa;
    --text-light-low: rgba(248, 249, 250, 0.7);
    --text-light-dark: #e1e4e6;

    --button-color: #02337c; 
    --button-color-low: rgba(2, 51, 124, 0.5);
    --button-color-dark: #001a4d;

    --card-bg: #ffffff;
    --card-bg-low: #f3f2f2;
    --smoothline-color: var(--bg-color);
}

header {
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    position: relative;
    overflow-x: clip;
}

header .navbar {
    background-color: var(--card-bg);
}

header .navbar .container {
    display: flex;
    padding: 1rem 0;
    gap: 1rem;
}

header .navbar .logo {
    height: 35px;
}

header .navbar .logo img {
    height: 100%;
    max-width: 200px;
    object-fit: contain;
    object-position: bottom;
}

header .navbar .deliverSelector {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

header .navbar .deliverSelector .flag {
    width: 35px;
    height: auto;
    border-radius: 2px;
}

header .navbar .deliverSelector .content {
    font-size: 0.76rem;
    font-weight: 400;
    color: var(--text-dark-low);
}

header .navbar .deliverSelector .content span {
    font-size: 0.8rem;
    line-height: 0.5;
    font-weight: 600;
    color: var(--text-dark);
}

header .navbar .deliverSelector .content i {
    font-size: 0.8rem;
    color: var(--text-dark-low);
}

header .navbar .searchBar {
    width: 50%;
    display: flex;
    align-items: center;
}

header .navbar .searchBar .btn {
    display: none;
}

header .navbar .searchBar input {
    width: 100%;
    padding: 0.8rem 1rem;
    padding-left: 0.7rem;
    border: none;
    border-radius: 5px;
    background-color: var(--primary-color);
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

header .navbar .searchBar input::placeholder {
    color: var(--text-light);
}

header .navbar .userActions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

header .navbar .userActions .action {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    gap: 0.4rem;
}


header .navbar .userActions .action i {
    font-size: 1.1rem;
    color: var(--text-dark);
}

header .navbar .userActions .divider {
    width: 1.2px;
    height: 25px;
    background-color: rgba(0, 0, 0, 0.2);
}

header .navbar .userActions .action.login i {
    font-size: 0.8rem;
    opacity: 0.8;
}


    /* User Profile Styles */
    header .navbar .userActions .userProfile {
        position: relative;
        display: flex;
        align-items: center;
        gap: 0.5rem;
        padding: 0.25rem 0.6rem;
        border: 1px solid #f5f5f5;
        border-radius: 2px;
        background: #fff;
        cursor: pointer;
        transition: all 0.2s ease;
        min-width: 170px;
    }

        header .navbar .userActions .userProfile:hover {
            border-color: #e8e8e8;
            background: #f9f9f9;
        }

        header .navbar .userActions .userProfile .profileImage {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            overflow: hidden;
            flex-shrink: 0;
        }

            header .navbar .userActions .userProfile .profileImage img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        header .navbar .userActions .userProfile .profileInfo {
            display: flex;
            flex-direction: column;
            flex: 1;
            min-width: 0;
        }

            header .navbar .userActions .userProfile .profileInfo .userName {
                font-size: 0.8rem;
                font-weight: 600;
                color: var(--text-dark);
                line-height: 1.2;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            header .navbar .userActions .userProfile .profileInfo .userEmail {
                font-size: 0.7rem;
                color: var(--text-medium);
                line-height: 1.2;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        header .navbar .userActions .userProfile .profileChevron {
            font-size: 0.7rem;
            color: var(--text-medium);
            transition: transform 0.2s ease;
        }


            header .navbar .userActions .userProfile .profileChevron i {
                font-size: 0.8rem;
            }

        header .navbar .userActions .userProfile.active .profileChevron {
            transform: rotate(180deg);
        }

        /* Profile Dropdown */
        header .navbar .userActions .userProfile .profileDropdown {
            position: absolute;
            top: calc(100% + 6px);
            right: 0;
            width: 220px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 2px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-6px);
            transition: all 0.2s ease;
        }

        header .navbar .userActions .userProfile.active .profileDropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        header .navbar .userActions .userProfile .profileDropdown::before {
            content: '';
            position: absolute;
            top: -3px;
            right: 18px;
            width: 6px;
            height: 6px;
            background: #fff;
            border: 1px solid #e8e8e8;
            border-bottom: none;
            border-right: none;
            transform: rotate(45deg);
        }

        /* Dropdown Header */
        header .navbar .userActions .userProfile .dropdownHeader {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.75rem;
        }

            header .navbar .userActions .userProfile .dropdownHeader .headerImage {
                width: 36px;
                height: 36px;
                border-radius: 50%;
                overflow: hidden;
                flex-shrink: 0;
            }

                header .navbar .userActions .userProfile .dropdownHeader .headerImage img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

            header .navbar .userActions .userProfile .dropdownHeader .headerInfo {
                display: flex;
                flex-direction: column;
                flex: 1;
                min-width: 0;
            }

            header .navbar .userActions .userProfile .dropdownHeader .headerName {
                font-size: 0.9rem;
                font-weight: 600;
                color: var(--text-dark);
                line-height: 1.3;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            header .navbar .userActions .userProfile .dropdownHeader .headerEmail {
                font-size: 0.75rem;
                color: var(--text-medium);
                line-height: 1.3;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

        /* Dropdown Divider */
        header .navbar .userActions .userProfile .dropdownDivider {
            height: 1px;
            background: #f0f0f0;
            margin: 0;
        }

        /* Dropdown Items */
        header .navbar .userActions .userProfile .dropdownItems {
            padding: 0.5rem 0;
        }

        header .navbar .userActions .userProfile .dropdownBottom {
            padding: 0.5rem 0;
        }

        header .navbar .userActions .userProfile .dropdownItem {
            display: flex;
            align-items: center;
            gap: 0.6rem;
            padding: 0.5rem 0.75rem;
            color: var(--text-dark);
            text-decoration: none;
            transition: background-color 0.2s ease;
        }

            header .navbar .userActions .userProfile .dropdownItem:hover {
                background: #f8f9fa;
            }

            header .navbar .userActions .userProfile .dropdownItem.logout {
                color: #dc3545;
            }

                header .navbar .userActions .userProfile .dropdownItem.logout:hover {
                    background: #fff5f5;
                }

            header .navbar .userActions .userProfile .dropdownItem i {
                font-size: 0.9rem;
                width: 16px;
                text-align: center;
            }

            header .navbar .userActions .userProfile .dropdownItem span {
                font-size: 0.8rem;
                font-weight: 500;
            }

header .subNavbar {
    background-color: var(--primary-color);
    padding: 0.5rem 0;
}

header .subNavbar .container {
    position: relative;
}

header .subNavbar .categories {
    width: 88%;
    height: 25px;
    position: relative;
}



header .subNavbar .categories .area {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow-x: auto;
    position: relative;
}

header .subNavbar .categories .area::-webkit-scrollbar {
    display: none;
}


header .subNavbar .categories .sliderArea {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    gap: 2.5rem;
    width: max-content;
}

header .subNavbar .categories .sliderArea .category {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.2s ease;
}

header .subNavbar .categories .sliderArea .category:hover {
    color: var(--text-light-dark);
}

header .subNavbar .categories .sliderArea .category.active {
    color: var(--text-light-dark);
    position: relative;
}

header .subNavbar .categories .sliderArea .category.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--text-light);
    border-radius: 1px;
}

header .subNavbar .categories .next-btn,
header .subNavbar .categories .prev-btn {
    position: absolute;
    top: 0;
    left: 0;
    width: 35px;
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 0 5px 5px 0;
    z-index: 100;

    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

header .subNavbar .categories .next-btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 100%);

}

header .subNavbar .categories .prev-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(to left, transparent 0%, var(--primary-color) 100%);
}

header .subNavbar .categories .next-btn.hidden,
header .subNavbar .categories .prev-btn.hidden {
    display: none;
}

header .subNavbar .categories .next-btn i,
header .subNavbar .categories .prev-btn i {
    font-size: 1.1rem;
    color: var(--text-light);
}

header .subNavbar .categories .next-btn {
    position: absolute;
    left: unset;
    right: 0;
    height: 100%;
    background-color: var(--primary-color);
}

header .subNavbar .categoryBadge {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-light);
    border-radius: 5px;
    border: 1px solid var(--text-light);
    padding: 0.2rem 2rem;
}


header .megaMenuContainer {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    background-color: var(--card-bg);
    padding: 2rem 0;
    z-index: 9999;
    display: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

header .megaMenuContainer .sidebar {
    display: none;
}

.megaMenuOverlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
    display: none;
}

body.megamenu-open {
    overflow: hidden;
}

header .megaMenuContainer .container {
    position: relative;
}

header .megaMenu .megaMenuContent {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 1rem;
    width: 100%;
    padding: 0 1rem;
}

header .megaMenu .menuSide {
    grid-column: span 9;
    display: flex;
    flex-direction: column;
}


header .megaMenu .menuSide .menuList {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}

header .megaMenu .menuSide .menuList .menuItem {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

header .megaMenu .menuSide .menuList .menuItem .title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1919;
}

header .megaMenu .menuSide .menuList .menuItem ul {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

header .megaMenu .menuSide .menuList .menuItem ul li {
    font-size: 0.8rem;
    color: var(--text-dark-low);
    opacity: 0.8;
}

header .megaMenu .menuSide .brands {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    margin-top: auto;
}

header .megaMenu .menuSide .brands .title {
    font-size: 0.9rem;
    font-weight: 600;
    color: #1a1919;
}

header .megaMenu .menuSide .brands .brandList {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

header .megaMenu .menuSide .brands .brandList .brandItem {
    display: flex;
    flex-direction: column;
    align-items: center;

    gap: 0.1rem;
}

header .megaMenu .menuSide .brands .brandList .brandItem .logo {
    width: 70px;
    padding: 0.6rem 0.5rem;
    border: 1px solid var(--bg-color-dark);
    border-radius: 5px;
    height: auto;
    border-radius: 2px;
}

header .megaMenu .menuSide .brands .brandList .brandItem .logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

header .megaMenu .menuSide .brands .brandList .brandItem .logo:hover {
    border: 1px solid var(--primary-color);
}

header .megaMenu .menuSide .brands .brandList .brandItem  h4 {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-dark);
}



header .megaMenu .megaMenuImage {
    grid-column: span 3;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    overflow: hidden;
}

header .megaMenu .megaMenuImage img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}

header .megaMenu .megaMenuImage img:hover {
    transform: scale(1.05);
    transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 1500px) {
    header .navbar .container {
        padding: 0.8rem 0;
        gap: 0.8rem;
    }

    header .navbar .logo {
        height: 30px;
    }

    header .navbar .deliverSelector .content {
        font-size: 0.7rem;
    }

    header .navbar .deliverSelector .content span {
        font-size: 0.75rem;
    }

    header .navbar .searchBar {
        width: 45%;
    }

    header .navbar .searchBar input {
        padding: 0.7rem 0.8rem;
        font-size: 0.85rem;
    }

    header .navbar .userActions {
        gap: 1.2rem;
    }

    header .navbar .userActions .action {
        font-size: 0.8rem;
        gap: 0.3rem;
    }

    header .navbar .userActions .action i {
        font-size: 1rem;
    }

    header .subNavbar {
        padding: 0.4rem 2rem;
        box-sizing: border-box!important;
    }

    header .navbar .container {
        padding: 0.6rem 1.5rem;
        gap: 0.5rem;
    }
    
    header .subNavbar .categories .sliderArea {
        gap: 1.5rem;
    }

    header .subNavbar .categories .sliderArea .category {
        font-size: 1rem;
    }

    header .subNavbar .categoryBadge {
        font-size: 0.9rem;
        padding: 0.2rem 1.5rem;
    }

    header .megaMenu .menuSide .menuList .menuItem .title {
        font-size: 0.85rem;
    }

    header .megaMenu .menuSide .menuList .menuItem ul li {
        font-size: 0.75rem;
    }

    header .megaMenu .menuSide .brands .brandList .brandItem .logo {
        width: 60px;
        padding: 0.5rem 0.4rem;
    }

    header .megaMenu .menuSide .brands .brandList .brandItem h4 {
        font-size: 0.7rem;
    }
}

@media screen and (max-width: 1200px) {

    header .navbar .logo {
        height: 25px;
        min-height: 25px;
        max-height: 25px;
    }

    header .navbar .deliverSelector .content {
        font-size: 0.65rem;
    }

    header .navbar .deliverSelector .content span {
        font-size: 0.7rem;
    }

    header .navbar .searchBar {
        width: 40%;
    }

    header .navbar .searchBar input {
        padding: 0.6rem 0.7rem;
        font-size: 0.75rem;
    }

    header .navbar .userActions {
        gap: 0.8rem;
    }

    header .navbar .userActions .action {
        font-size: 0.7rem;
        gap: 0.2rem;
    }

    header .navbar .userActions .action i {
        font-size: 0.9rem;
    }

    header .subNavbar .categories .sliderArea .category {
        font-size: 0.85rem;
    }

    header .subNavbar .categoryBadge {
        font-size: 0.8rem;
        padding: 0.2rem 1.5rem;
    }

    header .megaMenu .menuSide .menuList .menuItem .title {
        font-size: 0.75rem;
    }

    header .megaMenu .menuSide .menuList .menuItem ul li {
        font-size: 0.65rem;
    }

    header .megaMenu .menuSide .brands .title {
        font-size: 0.75rem;
    }

    header .megaMenu .menuSide .brands .brandList .brandItem .logo {
        width: 50px;
        padding: 0.4rem 0.3rem;
    }

    header .megaMenu .menuSide .brands .brandList .brandItem h4 {
        font-size: 0.65rem;
    }
}


@media screen and (max-width: 1099px) {

    header {
        position: sticky;
        top: 0;
        transition: 0;
    }
    
    header .navbar .userActions .act-login,
    header .navbar .userActions .act-shop {
        display: none!important;
    }

    header .navbar .userActions .divider {
        display: none!important;
    }

    header .navbar .userActions .action {
        font-size: 0.75rem;
        font-weight: 700;
        gap: 0.2rem;
    }

    header .navbar .deliverSelector {
        display: none;
    }

    header .subNavbar {
        display: none;
    }

    header .navbar .container {
        justify-content: space-between;
    }

    header .navbar .searchBar {
        width: 80%;
        position: relative;
    }

    header .navbar .searchBar input {
        background: none!important;
        border: 0.1px solid var(--primary-color-low);
        color: var(--text-dark);
    }
    
    header .navbar .searchBar input::placeholder {
        color: var(--text-dark-low);
    }

    header .navbar .searchBar .btn {
        display: flex;
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        
    }

    header .navbar .searchBar .btn i {
        font-size: 1.1rem;
        color: var(--text-dark-low);
    }
}


.mobileMegaMenuContainer {
    display: none;
}

@media screen and (max-width: 1099px) {
    .mobileMegaMenuContainer {
        display: none;
        opacity: 0;
        position: fixed;
        top: 53px;
        left: 0;
        right: 0;
        bottom: 0;
        background-color: var(--bg-color);
        z-index: 9999;
    }

    .mobileMegaMenuContainer .container {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        height: 100%;
    }

    .mobileMegaMenuContainer .sidebar {
        display: flex;
        flex-direction: column;
        background: #f1f1f1;
        width: 28%;
        height: 100%;
        overflow-y: auto;
    }
    
    .mobileMegaMenuContainer .sidebar::-webkit-scrollbar {
        width: 0.2rem;
    }
    
    .mobileMegaMenuContainer .sidebar::-webkit-scrollbar-thumb {
        background: var(--primary-color-low);
        border-radius: 0.1rem;
    }
    
    .mobileMegaMenuContainer .sidebar::-webkit-scrollbar-track {
        background: transparent;
    }

    .mobileMegaMenuContainer .sidebar .sidebarItem {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        padding: 0.7rem 1rem;

    }

    .mobileMegaMenuContainer .sidebar .sidebarItem.active{
        border-left: 3px solid var(--text-dark);
        background-color: var(--card-bg);
    }

    .mobileMegaMenuContainer .sidebar .sidebarItem .category {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-dark);
        text-decoration: none;
    }

    .mobileMegaMenuContainer .megaMenu {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        position: relative;
        overflow-y: auto;
        margin-bottom: 5rem;
    }

    .mobileMegaMenuContainer .megaMenu::-webkit-scrollbar {
        width: 0.2rem;
    }
    
    .mobileMegaMenuContainer .megaMenu::-webkit-scrollbar-thumb {
        background: var(--primary-color-low);
        border-radius: 0.1rem;
    }
    
    .mobileMegaMenuContainer .megaMenu::-webkit-scrollbar-track {
        background: transparent;
    }
    
    .mobileMegaMenuContainer .megaMenu .megaMenuContent {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent.active {
        display: flex;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
        padding: 0.75rem;
        border-radius: 5px;
        text-decoration: none;
        width: 100%;
        min-width: 0;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem .image {
        width: 100%;
        aspect-ratio: 1 / 1;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 5px;
        overflow: hidden;
        background: var(--tertiary-color);
        position: relative;
        min-height: 90px;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        aspect-ratio: 1 / 1;
    }

    /* Font Awesome icon stili */
    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem .image i {
        font-size: 2.5rem;
        color: var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* Kategori placeholder - tema renginde gradient background */
    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem .image .category-placeholder {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-color-dark) 100%);
        border-radius: 5px;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem .image .category-placeholder .category-initials {
        color: white;
        font-size: 0.75rem;
        font-weight: 500;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        letter-spacing: 0.3px;
        text-align: center;
        padding: 4px 8px;
        line-height: 1.3;
        word-wrap: break-word;
        overflow-wrap: break-word;
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 100%;
        box-sizing: border-box;
    }

    .mobileMegaMenuContainer .megaMenu .megaMenuContent .contentGrid .menuCatItem h3 {
        font-size: 0.8rem;
        font-weight: 500;
        color: var(--text-dark);
        text-align: center;
    }
}



.mobileBottom {
    display: none;
}

@media (max-width: 1100px) {
    .mobileBottom {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 60px;
        z-index: 9999;
        background-color: var(--card-bg);
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    }

    .mobileBottom .mobileActions {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
        padding: 0.5rem 0.25rem;
        background-color: var(--card-bg);
        gap: 0.25rem;
    }

    .mobileBottom .mobileActions .actionBtn {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0.2rem;
    }

    .mobileBottom .mobileActions .actionBtn {
        flex: 1;
        min-width: 0;
        max-width: 20%;
    }

    .mobileBottom .mobileActions .actionBtn span {
        font-size: 0.65rem;
        font-weight: 500;
        color: var(--text-dark);
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .mobileBottom .mobileActions .actionBtn i {
        font-size: 1.1rem;
        color: var(--text-dark);
    } 

    .mobileBottom .mobileActions .actionBtn img {
        width: 1.5rem;
        height: 1.5rem;
        object-fit: cover;
        object-position: center;
        pointer-events: none;
    }

    .mobileBottom .mobileActions .actionBtn.primary {
        position: relative;
        top: -10px;
        background: var(--card-bg);
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }

    .mobileBottom .mobileActions .actionBtn.secondary i {
        color: var(--primary-color);
    }

    .mobileBottom .mobileActions .actionBtn.primary i {
        color: #116bb9;
    }
}


@media (max-width: 500px) {
    .mobileBottom .mobileActions .actionBtn span {
        font-size: 0.6rem;
    }
    
    .mobileBottom .mobileActions .actionBtn i {
        font-size: 1rem;
    }

    .mobileBottom .mobileActions .actionBtn img {
        width: 1.2rem;
        height: 1.2rem;
    }
}

/* ====================================
   📱 MOBİL NAVBAR YENİ TASARIM
   ==================================== */

/* Desktop görünümde mobil mağaza butonunu gizle */
@media (min-width: 769px) {
    header .navbar .userActions .act-store-mobile {
        display: none !important;
    }
}

@media (max-width: 768px) {
    /* Navbar genel yapısı - 2 satır */
    header .navbar .container {
        flex-wrap: wrap;
        padding: 0.75rem 1rem;
        gap: 0.75rem;
    }

    /* ÜST SATIR: Logo + User Actions */
    header .navbar .logo {
        order: 1;
        height: 32px;
        flex: 0 0 auto;
    }

    header .navbar .logo img {
        max-width: 140px;
        height: 100%;
    }

    /* Search bar ikinci satıra */
    header .navbar .searchBar {
        order: 3;
        width: 100%;
        flex: 0 0 100%;
        margin: 0;
    }

    /* User actions sağda */
    header .navbar .userActions {
        order: 2;
        flex: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 0.5rem;
        margin-left: auto;
    }

    /* 🚫 Mağaza Başvuru Butonu - MOBİLDE GİZLE */
    header .navbar .store-apply-btn {
        display: none !important;
    }

    /* User actions sadeleştir */
    header .navbar .userActions .divider {
        display: none;
    }

    /* Giriş yap butonu */
    header .navbar .userActions .act-login {
        display: flex;
        align-items: center;
        gap: 0.4rem;
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
        background: var(--primary-color);
        color: white;
        border-radius: 6px;
        text-decoration: none;
        white-space: nowrap;
    }

    header .navbar .userActions .act-login span {
        display: inline;
    }

    header .navbar .userActions .act-login i {
        font-size: 1rem;
    }

    /* Favoriler ikonu */
    header .navbar .userActions .act-favs {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        cursor: pointer;
    }

    header .navbar .userActions .act-favs i {
        font-size: 1.3rem;
        color: var(--text-dark);
    }

    /* Mobil Mağaza Başvur Butonu */
    header .navbar .userActions .act-store-mobile {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0.5rem 0.75rem;
        background: linear-gradient(135deg, rgba(252, 80, 33, 0.95) 0%, rgba(255, 140, 66, 0.95) 100%);
        border-radius: 10px;
        cursor: pointer;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 2px 8px rgba(252, 80, 33, 0.2);
        min-height: 48px;
        max-width: 140px;
    }

    header .navbar .userActions .act-store-mobile:hover {
        background: linear-gradient(135deg, rgba(255, 140, 66, 0.95) 0%, rgba(252, 80, 33, 0.95) 100%);
        box-shadow: 0 4px 12px rgba(252, 80, 33, 0.3);
        transform: translateY(-1px);
    }

    header .navbar .userActions .act-store-mobile .store-mobile-content {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-content i {
        font-size: 1.2rem;
        color: #ffffff;
        flex-shrink: 0;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-text {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.1rem;
        flex: 1;
        min-width: 0;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-title {
        font-size: 0.75rem;
        font-weight: 600;
        color: #ffffff;
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-subtitle {
        font-size: 0.65rem;
        font-weight: 400;
        color: rgba(255, 255, 255, 0.9);
        line-height: 1.2;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: 100%;
    }

    /* Giriş yapmış kullanıcı profili */
    header .navbar .userProfile {
        padding: 0.4rem 0.6rem;
        min-width: auto;
    }

    header .navbar .userProfile .profileImage {
        width: 32px;
        height: 32px;
    }

    header .navbar .userProfile .profileInfo {
        display: none; /* Mobilde sadece foto */
    }

    header .navbar .userProfile .profileChevron {
        display: none;
    }

    /* Search bar tam genişlik */
    header .navbar .searchBar.modern-search {
        width: 100%;
        display: flex !important;
        position: relative;
        z-index: 100; /* ✅ Input en üstte */
    }

    header .navbar .searchBar form {
        width: 100%;
        display: block;
        position: relative;
        z-index: 100;
    }

    header .navbar .searchBar .vitrinon-search-container {
        width: 100%;
        display: block;
        background: white;
        border: 1px solid #e0e0e0;
        position: relative;
        z-index: 100;
    }

    header .navbar .searchBar .vitrinon-search-input {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 100%;
        font-size: 0.9rem !important;
        padding: 0.7rem 1rem !important;
        height: 42px !important;
        background: white !important;
        color: #333 !important;
        border: none;
        border-radius: 8px;
        position: relative;
        z-index: 100; /* ✅ Input dropdown'dan üstte */
    }

    header .navbar .searchBar .vitrinon-search-input::placeholder {
        color: #999 !important;
        opacity: 1 !important;
    }

    /* Dropdown input'un hemen altında açılsın */
    header .navbar .searchBar .vitrinon-search-dropdown {
        position: absolute !important;
        top: calc(100% + 4px) !important; /* Input'un hemen altında */
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 99 !important; /* Input'tan bir altta */
        max-height: 70vh !important;
        overflow-y: auto !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
    }

    /* Overlay input'un altında */
    header .navbar .searchBar .vitrinon-search-overlay {
        z-index: 98 !important; /* Dropdown'dan da altta */
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
    }

    /* Mobilde dropdown açıkken input hala görünsün */
    header .navbar .searchBar.modern-search.open .vitrinon-search-input {
        z-index: 100 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }

    /* Dropdown üst köşeleri düzelt */
    header .navbar .searchBar .vitrinon-search-dropdown {
        border-top-left-radius: 0 !important;
        border-top-right-radius: 0 !important;
        border-bottom-left-radius: 8px !important;
        border-bottom-right-radius: 8px !important;
    }
}

/* Daha küçük mobil ekranlar */
@media (max-width: 480px) {
    header .navbar .container {
        padding: 0.6rem 0.75rem;
        gap: 0.6rem;
    }

    header .navbar .logo {
        height: 28px;
    }

    header .navbar .logo img {
        max-width: 120px;
    }

    header .navbar .userActions .act-login {
        font-size: 0.8rem;
        padding: 0.45rem 0.6rem;
        gap: 0.3rem;
    }

    header .navbar .userActions .act-login span {
        font-size: 0.75rem;
    }

    header .navbar .userActions .act-login i {
        font-size: 0.9rem;
    }

    header .navbar .userActions .act-favs {
        width: 36px;
        height: 36px;
    }

    header .navbar .userActions .act-favs i {
        font-size: 1.2rem;
    }

    /* Mobil Mağaza Başvur Butonu - Küçük Ekranlar */
    header .navbar .userActions .act-store-mobile {
        padding: 0.45rem 0.65rem;
        min-height: 44px;
        max-width: 130px;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-content {
        gap: 0.4rem;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-content i {
        font-size: 1.1rem;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-title {
        font-size: 0.7rem;
    }

    header .navbar .userActions .act-store-mobile .store-mobile-subtitle {
        font-size: 0.6rem;
    }

    header .navbar .searchBar .vitrinon-search-input {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        font-size: 0.85rem !important;
        padding: 0.6rem 0.9rem !important;
        height: 40px !important;
        background: white !important;
        color: #333 !important;
    }

    header .navbar .searchBar .vitrinon-search-input::placeholder {
        color: #999 !important;
        opacity: 1 !important;
    }
}