        .position-absolute.top-0.start-100.badge.fs-xs.text-bg-primary.rounded-pill.ms-n3.z-2 {
            width: 20px;
            height: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            line-height: 15px;
            background-color: #24ad49 !important;
        }

        .header-sepet-bolum {
            display: flex;
            flex-direction: row;
            min-width: 175px;
            border-radius: 8px;
            border: solid 1px #0000001f;
            padding: 3px 10px 4px 0px;
            align-items: center;
            justify-content: center;
            gap: 15px;
            text-decoration: none;
        }

        #cart-total {
            font-size: 13px;
        }

        .subtitle-2.text-color-black {
            font-size: 14px;
            margin-bottom: 0;
            font-weight: 600;
            color: #181D25;
        }

        .header-sepet-total {
            line-height: 1.2;
        }

        #cart-total {
            color: #24ad49;
        }

        .ci-percent.text-primary.fs-xl {
            color: #24ad49 !important;
        }

        .account-dropdown {
            position: relative;
            display: inline-block;
        }

        /* 1. İkon ile menü arasındaki şeffaf hover-köprüsü */
        .account-dropdown::after {
            content: "";
            position: absolute;
            top: 100%;
            /* ikonun hemen altından başlıyor */
            left: 0;
            width: 100%;
            height: 0.5rem;
            /* aradaki mesafe kadar */
            /* background: rgba(255,0,0,0.1);  DEBUG için açabilirsiniz */
            pointer-events: auto;
            /* hover’ı korusun */
        }

        .account-dropdown-menu {
            display: none;
            position: absolute;
            top: calc(100% + 0.3rem);
            right: 0;
            min-width: 13rem;
            background-color: #fff;
            color: #333d4c;
            font-size: 0.875rem;
            padding: 0.75rem;
            border: 1px solid #eef1f6;
            border-radius: 0.5rem;
            z-index: 1000;
        }

        .account-dropdown:hover .account-dropdown-menu {
            display: block;
        }

        .account-dropdown-menu a {
            display: flex;
            align-items: center;
            padding: 0.5rem 0.75rem;
            color: #333d4c;
            text-decoration: none;
            transition: color .2s ease-in-out, background-color .2s ease-in-out;
            border-radius: 0.5rem;
        }

        .account-dropdown-menu a:hover {
            background-color: #eef1f6;
            color: #181d25;
            border-radius: 0.5rem;
        }

        .account-dropdown-menu .dropdown-email {
            padding: 0 1rem .75rem 1rem;
            font-weight: 500;
            border-bottom: 1px solid #e1e5ee;
            margin-bottom: 10px;
        }

        .account-dropdown.d-none.d-md-inline-block {
            position: relative;
        }

        [data-bs-theme="dark"] .header-sepet-bolum {
            border: 1px solid #4e5562;
        }

        [data-bs-theme="dark"] .subtitle-2.text-color-black {
            color: #e0e5eb;
        }

        [data-bs-theme="dark"] .account-dropdown-menu {
            background-color: #181d25;
            color: #e0e5eb;
            border: 1px solid #333d4c;
        }

        [data-bs-theme="dark"] .account-dropdown-menu a:hover {
            background-color: #222934;
            color: #fff;
        }

        [data-bs-theme="dark"] .account-dropdown-menu a {
            color: #fff;
        }

        .header-exchange {
            font-size: 12px;
            line-height: 1.2;
            display: flex;
            justify-content: flex-end !important;
            align-items: center !important;
        }

        .navbar-logo-a {
            width: 82%;
        }

        .navbar-logo-a .masaustu-logo-img {
            width: 100%;
            object-fit: cover;
            height: 60px;
        }

        .navbar .container.justify-content-start.py-2.py-lg-3 {
            padding-top: 10px !important;
        }


        .mega-dropdown .mega-menu {
            left: 50% !important;
            transform: translateX(-37%);
            width: calc(71vw - 60px);
            max-width: revert;
            margin-top: 10px;
            box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22);
            background-color: #ffffff;
            border-radius: 8px !important;
        }

        .mega-menu-inner {
            display: flex;
            flex-direction: column;
        }

        .mega-menu-categories {
            width: 100%;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
            gap: 14px;
        }

        .mega-category-item {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 12px;
            border-radius: 8px;
            background: #f8fafc;
            cursor: pointer;
            transition: all 0.18s ease;
            border: 1px solid transparent;
            box-shadow: 1px 0px 14px rgb(148 163 184 / 25%);
        }

        .mega-category-item:hover {
            background: #e5f2e9;
            border-color: #24ad49;
            box-shadow: 0 12px 26px rgba(15, 118, 110, 0.22);
        }

        .mega-category-thumb {
            width: 46px;
            height: 46px;
            border-radius: 12px;
            overflow: hidden;
            background: #e2e8f0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .mega-category-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mega-category-title {
            font-size: 0.95rem;
            font-weight: 600;
            color: #0f172a;
            display: flex;
            flex-direction: column;
            line-height: 1.25;
        }

        .mega-category-count {
            font-size: 0.78rem;
            font-weight: 400;
            color: #64748b;
            margin-top: 2px;
        }

        .mega-subcategory-popover {
            position: absolute;
            left: 0;
            top: 100%;
            width: max-content;
            transform: translateY(10px);
            max-width: 500px;
            padding: 12px 14px;
            border-radius: 8px;
            background: #ffffff;
            box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
            opacity: 0;
            visibility: hidden;
            pointer-events: none;
            transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
            z-index: 5;
        }

        .mega-category-item:hover .mega-subcategory-popover,
        .mega-category-item:focus-within .mega-subcategory-popover {
            opacity: 1;
            visibility: visible;
            pointer-events: auto;
            transform: translateY(4px);
        }

        .mega-subcategory-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
        }

        .mega-subcategory-main-title {
            font-size: 0.95rem;
            font-weight: 700;
            color: #0f172a;
        }

        .mega-subcategory-all-link {
            font-size: 0.85rem;
            color: #24ad49;
            text-decoration: none;
        }

        .mega-subcategory-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }

        .mega-subcategory-item {
            display: inline-flex;
            align-items: center;
            padding: 7px 9px;
            border-radius: 8px;
            background: #f8fafc;
            font-size: 0.83rem;
            font-size: 14px;
            color: #0f172a;
            text-decoration: none;
            box-shadow: -1px 1px 8px rgb(148 163 184 / 28%);
            transition: all 0.16s ease;
            white-space: nowrap;
        }

        .mega-subcategory-item:hover {
            background: #24ad49;
            color: #ffffff;
            transform: translateY(-1px);
            box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
        }

        .mega-menu-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(15, 23, 42, 0.45);
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.2s ease, visibility 0.2s ease;
            z-index: 1039;
        }

        .mega-menu-backdrop.show {
            opacity: 1;
            visibility: visible;
        }

        .mega-dropdown .dropdown-menu.show {
            z-index: 1040;
        }

        .mega-category-item::after {
            content: "";
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            height: 0.5rem;
            pointer-events: auto;
        }

        .btn.btn-lg.btn-secondary.w-100.border-0.rounded-pill {
            border-radius: 8px !important;
        }

        .form-control.form-control-lg.rounded-pill {
            border-radius: 8px !important;
        }


        .mega-subcategory-popover .mega-subcategory-header .mega-subcategory-all-link:hover:after {
            transform: scaleX(1);
            transform-origin: bottom left;
        }

        .mega-subcategory-popover .mega-subcategory-header .mega-subcategory-all-link:after {
            background-color: currentcolor;
            bottom: 0;
            content: "";
            height: var(--cz-underline-thickness);
            left: 0;
            position: absolute;
            transform: scaleX(0);
            transform-origin: bottom right;
            transition: transform .3s ease-out;
            width: 100%;
        }

        .mega-subcategory-popover .mega-subcategory-header .mega-subcategory-all-link {
            position: relative
        }

        .nav-link.align-items-center.animate-underline.gap-2.p-0 .d-flex.align-items-center.justify-content-center.bg-body-tertiary.rounded-circle img {
            width: 30px;
            height: 30px;
            object-fit: cover;
        }

        @media (min-width: 300px) and (max-width: 599px) {
            .position-absolute.top-0.start-100.badge.fs-xs.text-bg-primary.rounded-pill.ms-n3.z-2 {
                width: 20px;
                height: 20px;
                display: flex;
                justify-content: center;
                align-items: center;
                line-height: 15px;
                background-color: #24ad49 !important;
            }

            .header-sepet-bolum {
                display: flex;
                flex-direction: row;
                min-width: 175px;
                border-radius: 8px;
                border: solid 1px #0000001f;
                padding: 3px 10px 4px 0px;
                align-items: center;
                justify-content: center;
                gap: 15px;
                text-decoration: none;
            }

            #cart-total {
                font-size: 13px;
            }

            .subtitle-2.text-color-black {
                font-size: 14px;
                margin-bottom: 0;
                font-weight: 600;
                color: #181D25;
            }

            .header-sepet-total {
                line-height: 1.2;
            }

            #cart-total {
                color: #24ad49;
            }

            .account-dropdown {
                position: relative;
                display: inline-block;
            }

            /* 1. İkon ile menü arasındaki şeffaf hover-köprüsü */
            .account-dropdown::after {
                content: "";
                position: absolute;
                top: 100%;
                /* ikonun hemen altından başlıyor */
                left: 0;
                width: 100%;
                height: 0.5rem;
                /* aradaki mesafe kadar */
                /* background: rgba(255,0,0,0.1);  DEBUG için açabilirsiniz */
                pointer-events: auto;
                /* hover’ı korusun */
            }

            .account-dropdown-menu {
                display: none;
                position: absolute;
                top: calc(100% + 0.3rem);
                right: 0;
                min-width: 13rem;
                background-color: #fff;
                color: #333d4c;
                font-size: 0.875rem;
                padding: 0.75rem;
                border: 1px solid #eef1f6;
                border-radius: 0.5rem;
                z-index: 1000;
            }

            .account-dropdown:hover .account-dropdown-menu {
                display: block;
            }

            .account-dropdown-menu a {
                display: flex;
                align-items: center;
                padding: 0.5rem 0.75rem;
                color: #333d4c;
                text-decoration: none;
                transition: color .2s ease-in-out, background-color .2s ease-in-out;
                border-radius: 0.5rem;
            }

            .account-dropdown-menu a:hover {
                background-color: #eef1f6;
                color: #181d25;
                border-radius: 0.5rem;
            }

            .account-dropdown-menu .dropdown-email {
                padding: 0 1rem .75rem 1rem;
                font-weight: 500;
                border-bottom: 1px solid #e1e5ee;
                margin-bottom: 10px;
            }

            .account-dropdown.d-none.d-md-inline-block {
                position: relative;
            }

            [data-bs-theme="dark"] .header-sepet-bolum {
                border: 1px solid #4e5562;
            }

            [data-bs-theme="dark"] .subtitle-2.text-color-black {
                color: #e0e5eb;
            }

            [data-bs-theme="dark"] .account-dropdown-menu {
                background-color: #181d25;
                color: #e0e5eb;
                border: 1px solid #333d4c;
            }

            [data-bs-theme="dark"] .account-dropdown-menu a:hover {
                background-color: #222934;
                color: #fff;
            }

            [data-bs-theme="dark"] .account-dropdown-menu a {
                color: #fff;
            }

            .header-exchange {
                font-size: 12px;
                line-height: 1.2;
                display: flex;
                justify-content: flex-end !important;
                align-items: center !important;
            }

            .navbar-logo-a {
                width: 60%;
            }

            .navbar-logo-a .masaustu-logo-img {
                width: 85%;
                object-fit: cover;
                height: 47px;
            }

            .navbar-brand .container.justify-content-start.py-2.py-lg-3 {
                padding-top: 10px !important;
            }

            [data-bs-theme="dark"] .mobile-bottom-nav {
                background-color: #181d25 !important;
            }

            [data-bs-theme="dark"] .mobile-bottom-nav .text-dark {
                --cz-text-opacity: 1;
                color: rgb(255 255 255) !important;
            }

            [data-bs-theme="dark"] .mobile-bottom-nav .text-dark {
                --cz-text-opacity: 1;
                color: rgb(255 255 255) !important;
            }

            [data-bs-theme="dark"] .logo-center-wrapper::before,
            .logo-center-wrapper.active a::before {
                box-shadow: 0 -1px 2px rgb(255 255 255 / 40%) !important;
                background: #181d25 !important;
            }

            [data-bs-theme="dark"] .logo-center-wrapper {
                background: #181d25 !important;
                box-shadow: 0 -1px 2px rgb(255 255 255 / 40%) !important;
            }


            [data-bs-theme="light"] .mobile-bottom-nav {
                background-color: rgba(var(--cz-white-rgb), var(--cz-bg-opacity)) !important;
            }
        }