﻿:root {
    /* Renk Paleti */
    --color-primary-black: #000000; /* Ana siyah rengi */
    --color-primary-white: #FFFFFF; /* Ana beyaz rengi */
    --color-primary: #FFCE13; /* Ana marka rengi (Sarı) */
    --color-primary-dark: #e0a800; /* Ana rengin koyu tonu (hover) */
    --color-dark: #212121; /* Koyu arka planlar ve metinler */
    --color-light: #ffffff; /* Açık arka planlar (yüzeyler) */
    --color-background: #F8F7F5; /* Genel sayfa arka planı */
    --color-background-layout: #F8F7F5; /* Genel sayfa arka planı */
    --color-background-red: #D1512D; /* Genel sayfa arka planı */
    --color-background-red-second: #FF232C; /* Genel sayfa arka planı */
    --color-background-grey: #F2F2F2; /* Genel sayfa arka planı */
    --color-background-grey-second: #F2F2F2; /* Siparişlerim ürün arka planı */
    --color-text-primary: #333333; /* Ana metin rengi */
    --color-text-secondary: #6c757d; /* İkincil, gri metin rengi */
    --color-text-grey: #6C6C6C; /* İkincil, gri metin rengi */
    --color-text-title: #101828; /* İkincil, gri metin rengi */
    --color-border: #dddddd; /* Kenarlık rengi */
    --color-border-light: #eeeeee; /* Daha açık kenarlık rengi */
    --color-border-modal: #E4E7EC; /* Daha açık kenarlık rengi */
    --color-border-card: #E3E3E3; /* Daha açık kenarlık rengi */
    --color-accent-danger: red; /* Vurgu rengi (indirim vb.) */
    --color-a-hover: #f1f1f1; /* Vurgu rengi (indirim vb.) */
    --color-green: #3BAA07; /* Yeşil rengi*/
    /* Font ve Tipografi */
    --font-family-primary: 'Plus Jakarta Sans', sans-serif;
    --font-family-secondary: 'Inter', sans-serif;
    --font-size-xxs: 9px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-h1: 24px;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    /* Boşluklar (Spacing) */
    --spacing-xs: 8px;
    --spacing-sm: 10px;
    --spacing-md: 15px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    /* Boşluklar (Spacing) */
    --spacing-rem-xxs: 1rem;
    --spacing-rem-xs: 1.5rem;
    --spacing-rem-sm: 2rem;
    --spacing-rem-md: 3rem;
    --spacing-rem-lg: 4rem;
    --spacing-rem-xl: 5rem;
    /* Kenarlık Yarıçapı (Border Radius) */
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    /* Gölgeler (Box Shadow) */
    --box-shadow-sm: 0 2px 5px rgba(0, 0, 0, 0.1);
    --box-shadow-md: 0px 8px 16px rgba(0, 0, 0, 0.2);
    /* Geçişler (Transitions) */
    --transition-fast: 0.3s ease;
    --sidebar-bg-color: #ffffff;
    --sidebar-collapsed-width: 90.4px;
    --sidebar-expanded-width: 260px;
    --sidebar-icon-color: #6c757d;
    --sidebar-text-color: #343a40;
    --sidebar-active-bg: #FFCE13; /* Sarı renk */
    --sidebar-active-icon-color: #000000;
    --sidebar-separator-color: #e9ecef;
    --sidebar-transition-speed: 0.3s;
}

* {
    box-sizing: border-box;
}

body {
    background: var(--color-background-layout) !important;
}

.notyf {
    align-items: center !important;
}

.render-body {
    padding: 0 var(--spacing-rem-xs);
    width: calc(100% - var(--sidebar-collapsed-width, 80px));
    margin-bottom: var(--spacing-rem-md);
}

.container {
    max-width: 1544px;
    margin: auto;
}

.container-fluid {
    max-width: 1540px;
    margin: auto !important;
}

.headerWrapper {
    display: flex;
    padding: 1rem 5rem;
    justify-content: center;
    align-items: center;
    margin-left: var(--sidebar-collapsed-width, 80px);
    transition: margin-left var(--sidebar-transition-speed, 0.3s) ease-in-out;
    width: calc(100% - var(--sidebar-collapsed-width, 80px));
}

.search-container {
    flex: 1;
    margin: 0 5rem;
    position: relative;
}

.searchFieldInput {
    width: 100%;
    border: 1px solid var(--color-border);
    border-radius: var(--border-radius-md);
    font-size: var(--font-size-sm);
    display: flex;
    align-items: center;
    background-color: var(--color-primary-white);
}

a#globalSearchButton {
    margin: 0 var(--spacing-lg);
}

input#globalSearchInput {
    border: none !important;
    padding: 0 !important;
    padding-right: var(--spacing-lg) !important;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
}

.headerRightSection {
    display: flex;
    align-items: center;
    gap: 16px;
}

.iconBox {
    background: var(--color-light);
    border: 1px solid var(--color-border-light);
    border-radius: var(--border-radius-md);
    padding: var(--spacing-xs);
    cursor: pointer;
    position: relative;
    display: inline-block;
}

.cart-count-badge {
    position: absolute;
    top: 3px;
    right: 3px;
    background-color: var(--color-background-red);
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xxs);
    font-weight: bold;
    line-height: 1;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-wrapper {
    position: relative;
    display: inline-block;
}

.login-sec {
    gap: 10px;
}

.login-text {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-sm);
}

.menu-button {
    color: var(--color-text-primary);
    cursor: pointer;
    border: none;
    background: transparent;
    border-radius: var(--border-radius-sm);
    column-gap: var(--spacing-md);
    display: flex;
    align-items: center;
}

    .menu-button .username {
        font-family: var(--font-family-primary);
    }

.user-dropdown {
    display: none;
    position: absolute !important;
    top: 100%;
    right: 0;
    background-color: transparent;
    width: 230px;
    max-width: 230px;
    box-shadow: none;
    z-index: 1040;
    border-radius: var(--border-radius-sm);
    border: none;
    padding-top: var(--spacing-sm);
}

    .user-dropdown ul {
        background: var(--color-light);
        box-shadow: var(--box-shadow-md);
        border: 1px solid #f3f3f3;
        padding: var(--spacing-md);
        list-style-type: none;
    }

        .user-dropdown ul li {
            padding: 0;
            display: flex;
            overflow: hidden;
        }

    .user-dropdown a {
        font-size: var(--font-size-sm);
        font-family: var(--font-family-secondary);
        font-weight: var(--font-weight-medium);
        display: block;
        padding: var(--spacing-sm) var(--spacing-md);
        text-decoration: none;
        color: var(--color-text-primary);
        width: 100%;
    }

    .user-dropdown p {
        font-size: var(--font-size-sm);
        font-family: var(--font-family-secondary);
        font-weight: var(--font-weight-medium);
        display: block;
        padding: var(--spacing-xxs) var(--spacing-md);
        text-decoration: none;
        color: var(--color-text-primary);
        width: 100%;
        margin-bottom: var(--spacing-xs);
    }

.list-header:hover {
    background-color: unset !important;
}

.list-header {
    flex-direction: column;
}

.user-dropdown-user-email {
    font-size: var(--font-size-xs) !important;
    font-family: var(--font-family-secondary) !important;
    font-weight: var(--font-weight-regular) !important;
}

.dropdown-wrapper:hover .dropdown {
    display: block;
}

.sayfa-banner {
    background-image: url(/img/Img.png);
    width: 100%;
    border-radius: var(--border-radius-lg);
    height: 232px;
    margin-top: var(--spacing-lg);
}

.banner-yazi {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: var(--spacing-xl);
    row-gap: var(--spacing-lg);
}

    .banner-yazi h1 {
        color: var(--color-primary);
        font-size: var(--font-size-h1);
    }

    .banner-yazi p {
        color: var(--color-text-light);
        font-size: var(--font-size-xs);
    }

.products {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 19px;
    overflow-x: auto;
    padding: 25px 0;
}

.card {
    border: 0.83px solid var(--color-border);
    text-align: center;
    min-width: 180px;
    background: var(--color-light);
    border-radius: 6.61px;
}

    .card:hover {
        transition: var(--transition-fast);
        border: 1.5px solid var(--color-primary);
    }

    .card .title {
        font-size: 13px;
        font-weight: 600;
        color: var(--color-text-primary);
        margin-bottom: var(--spacing-xs);
        text-align: left;
    }

    .card .old-price {
        text-decoration: line-through;
        color: var(--color-text-secondary);
        font-size: 13px;
    }

    .card .discount {
        color: var(--color-primary);
        font-weight: var(--font-weight-bold);
        font-size: 13px;
    }

    .card .new-price {
        font-size: var(--font-size-lg);
        font-weight: var(--font-weight-bold);
        color: var(--color-dark);
        margin-bottom: 12px;
    }

.card-button {
    background-color: var(--color-background);
    width: 45px;
    padding: 0;
    border: 0.83px solid #E9E9E9;
    border-radius: var(--border-radius-md);
}

    .card-button:hover {
        background-color: var(--color-primary);
    }

        .card-button:hover svg path {
            fill: var(--color-primary);
            stroke: var(--color-light);
        }

            .card-button:hover svg path:last-child {
                stroke: var(--color-primary);
            }

        .card-button:hover svg circle {
            fill: var(--color-light);
            stroke: var(--color-primary);
        }

.card img {
    width: 100%;
    height: auto;
    background: var(--color-background);
    padding: 0;
    border: 1px solid transparent;
    border-radius: 6px;
    content-visibility: unset;
}

.bolum-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 35px;
}

.kart-kapsayici {
    display: flex;
    align-items: center;
    width: 100%;
    height: 183px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--box-shadow-sm);
    background-color: var(--color-light);
    margin-top: 35px;
    margin-bottom: 50px;
}

.kart-gorsel {
    width: 60%;
    height: 100%;
    object-fit: cover;
}

.kart-yazi {
    width: 195px;
    height: 190px;
    background-color: var(--color-dark);
    color: var(--color-text-light);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--spacing-sm);
}

    .kart-yazi h5 {
        color: var(--color-primary);
    }

.autokey-mobile-header {
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) var(--spacing-md);
    background-color: var(--color-light);
    border-bottom: 1px solid var(--color-border);
}

.autokey-hamburger {
    background: none;
    border: none;
    cursor: pointer;
}

    .autokey-hamburger svg {
        stroke: var(--color-text-primary);
    }

.autokey-icons {
    display: flex;
    gap: 16px;
    position: relative;
}

.autokey-side-menu {
    display: block;
    position: fixed;
    top: 0;
    left: -250px;
    width: 220px;
    height: 100%;
    background-color: var(--color-light);
    box-shadow: 2px 0 5px rgba(0, 0, 0, 0.2);
    padding: 60px var(--spacing-lg);
    transition: left var(--transition-fast);
    z-index: 20;
}

    .autokey-side-menu ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .autokey-side-menu ul li {
            margin-bottom: var(--spacing-lg);
        }

            .autokey-side-menu ul li a {
                text-decoration: none;
                color: var(--color-text-primary);
                font-size: var(--font-size-base);
            }

    .autokey-side-menu.active {
        left: 0;
    }

.autokey-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 15;
}

    .autokey-overlay.active {
        display: block;
    }

.page {
    width: calc(100% - 90px);
    margin-left: auto;
    background-color: var(--color-background);
}

.web-panel-home-page.active {
    background-color: var(--color-primary);
}

    .web-panel-home-page.active svg path {
        fill: var(--color-light);
    }


.clean-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    background-color: var(--sidebar-bg-color);
    width: var(--sidebar-collapsed-width);
    display: flex;
    flex-direction: column;
    border-right: 1px solid var(--sidebar-separator-color);
    overflow: hidden;
    z-index: 1039;
}

    .clean-sidebar.is-expanded {
        width: var(--sidebar-expanded-width);
    }

/* Header */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    min-height: 100px;
}

.sidebar-logo {
    display: block; /* Genişleyince görünecek */
    max-width: 120px;
    opacity: 1;
}

.clean-sidebar.is-expanded .sidebar-logo {
    display: none;
    opacity: 0;
    transition: opacity var(--sidebar-transition-speed);
}

.sidebar-control {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--sidebar-icon-color);
    transition: opacity 0.2s ease-in-out, visibility 0.2s ease-in-out;
}
/* Kapatma butonu (X) sadece menü açıkken görünür */
#sidebarCloseBtn {
    opacity: 0;
    visibility: hidden;
    position: absolute;
    transition: unset !important;
}

#sidebarOpenBtn {
    opacity: 1;
    visibility: visible;
}

.clean-sidebar.is-expanded #sidebarCloseBtn {
    opacity: 1;
    visibility: visible;
    position: static;
}

.clean-sidebar.is-expanded #sidebarOpenBtn {
    opacity: 0;
    visibility: hidden;
}

/* Menü Listesi */
.sidebar-menu {
    list-style: none;
    padding: 0 1rem;
    flex-grow: 1;
}

    .sidebar-menu a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--sidebar-text-color);
        padding: 0.8rem;
        border-radius: 8px;
        margin-bottom: 0.5rem;
        white-space: nowrap;
        max-width: 57.6px;
    }

        .sidebar-menu a:hover {
            background-color: #f8f9fa;
        }

        .sidebar-menu a.active {
            background-color: var(--sidebar-active-bg);
            color: var(--sidebar-active-icon-color);
        }

            .sidebar-menu a.active .icon-wrapper svg {
                stroke: var(--sidebar-active-icon-color);
            }

.clean-sidebar.is-expanded .sidebar-menu a {
    max-width: 100%;
}

.icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

    .icon-wrapper svg {
        width: 22px;
        height: 22px;
        stroke: var(--sidebar-icon-color);
        transition: stroke var(--sidebar-transition-speed);
    }

.nav-text {
    margin-left: 1.2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--sidebar-transition-speed) ease, visibility var(--sidebar-transition-speed) ease;
    white-space: nowrap;
}

.clean-sidebar.is-expanded .nav-text {
    opacity: 1;
    visibility: visible;
    transition-delay: 0.15s;
}

.separator {
    height: 1px;
    background-color: var(--sidebar-separator-color);
    margin: 1rem 0;
    width: 100%;
}
/* Footer */
.sidebar-footer {
    list-style: none;
    padding: 0 1rem;
    margin: 1rem 0;
    flex-grow: 1;
}

    .sidebar-footer a {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--sidebar-text-color);
        padding: 0.8rem;
        border-radius: 8px;
        white-space: nowrap;
    }

        .sidebar-footer a:hover {
            background-color: #f8f9fa;
        }

        .sidebar-footer a.active {
            background-color: var(--sidebar-active-bg);
            color: var(--sidebar-active-icon-color);
        }

.clean-sidebar.is-expanded .sidebar-header {
    justify-content: flex-end;
}

#globalSearchResults {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: white;
    border: 1px solid #E9EAEB;
    border-top: none;
    border-radius: 0 0 6px 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1038;
    display: none;
    max-height: 400px;
    overflow-y: auto;
}

    #globalSearchResults a.list-group-item {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: #333;
        border: none;
        border-radius: 0;
        padding: 12px 15px;
    }

        #globalSearchResults a.list-group-item:hover {
            background-color: #f8f9fa;
        }

        #globalSearchResults a.list-group-item:last-child {
            border-bottom-left-radius: 6px;
            border-bottom-right-radius: 6px;
        }

    #globalSearchResults img {
        width: 40px;
        height: 40px;
        object-fit: cover;
        margin-right: 15px;
        border-radius: 4px;
        flex-shrink: 0;
    }

    #globalSearchResults .product-name {
        font-weight: 500;
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

.no-results {
    padding: 15px;
    text-align: center;
    color: #6c757d;
    font-size: 0.9rem;
}

.error-message {
    padding: 15px;
    text-align: center;
    color: #dc3545;
    font-size: 0.9rem;
}

footer {
    background-color: #FFFFFF;
    padding-top: 39px;
    padding-bottom: 25px;
    width: 100%;
    margin-left: var(--sidebar-collapsed-width, 80px);
    transition: margin-left var(--sidebar-transition-speed, 0.3s) ease-in-out;
    width: calc(100% - var(--sidebar-collapsed-width, 80px));
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-main {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    font-family: var(--font-family-secondary);
}

    .footer-column:nth-child(1) {
        gap: 16px;
    }

    .footer-column:nth-child(2) {
        gap: 16px;
    }

    .footer-column:nth-child(3) {
        gap: 16px;
    }

    .footer-column:nth-child(4) {
        gap: 16px;
    }

    .footer-column:nth-child(5) {
        gap: 32px;
        width: 299px;
    }

    .footer-column h3 {
        font-weight: 600;
        font-size: var(--font-size-sm);
        line-height: 20px;
        color: var(--color-primary-black);
        margin: 0 0 0 0;
        width: auto;
        min-height: 20px;
    }

    .footer-column ul {
        list-style: none;
        padding: 0;
        margin: 0;
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

        .footer-column ul.social-links {
            gap: 24px;
            flex-direction: row;
        }

        .footer-column ul.contact-info {
            gap: 24px;
        }

        .footer-column ul li {
            display: flex;
            align-items: center;
            gap: 12px;
            font-weight: 400;
            font-size: var(--font-size-sm);
            line-height: 18px;
            color: var(--color-dark);
        }

    .footer-column a {
        font-weight: 400;
        font-size: var(--font-size-sm);
        line-height: 18px;
        color: var(--color-dark);
        text-decoration: none;
        transition: color 0.2s ease;
        display: flex;
        align-items: center;
        gap: 12px;
    }

        .footer-column a:hover {
            color: var(--color-primary-dark);
        }

.contact-info li {
    flex-direction: column;
    align-items: start !important;
    font-weight: 500 !important;
}

.footer-company-slogan {
    max-width: 200px;
    color: var(--color-dark)
}

.footer-logo {
    width: 200px;
}

.contact-description {
    font-weight: 400;
    font-size: 15px;
    line-height: 137.75%;
    color: #74848F;
    margin: 0;
    width: 299px;
    height: auto;
    min-height: 63px;
}

.icon {
    display: inline-block;
    width: 24px;
    height: 24px;
    background-color: #FCBC00;
    border: 1.5px solid #FCBC00;
    color: #232323;
    font-size: 10px;
    text-align: center;
    line-height: 21px;
    flex-shrink: 0;
    border-radius: 3px;
}

.social-links .icon {
    width: 20px;
    height: 20px;
    line-height: 17px;
}

.tiktok-icon {
    width: 21px;
    height: 21px;
    padding: 2.33px 3.11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-divider {
    border: none;
    height: 1px;
    background-color: rgb(0 4 8 / 34%);
    margin: 0;
    width: 100%;
}

.footer-bottom {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    padding-top: 0;
    min-height: 19px;
}

.footer-copyright {
    display: flex;
    font-family: var(--font-family-secondary);
    flex-direction: row;
    align-items: center;
    gap: 4px;
    font-weight: var(--font-weight-regular);
    font-size: var(--font-size-sm);
    line-height: 19px;
    color: var(--color-dark);
}

.copyright-symbol {
    display: inline-block;
}

.footer-payment {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.mobile-dropdown-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1037;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

    .mobile-dropdown-overlay.is-visible {
        opacity: 1;
        visibility: visible;
    }

.autokey-icon-btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
}

@media (min-width: 769px) {
    .autokey-mobile-header,
    .autokey-side-menu,
    .autokey-overlay {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .render-body, .page {
        padding: 75px 0 !important;
        width: auto !important;
    }

    .headerWrapper {
        display: none;
    }

    .autokey-mobile-header {
        display: flex;
    }

    .page {
        width: 100% !important;
    }

    .bolum-wrapper {
        grid-template-columns: repeat(1, 1fr);
    }

    footer {
        margin-left: unset;
        transition: unset;
        width: unset;
    }

    .footer-main {
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: nowrap;
    }

    .footer-bottom {
        justify-content: center;
    }

    .autokey-hamburger img {
        max-width: 30px;
    }

    .autokey-hamburger {
        width: 64px;
    }

    .autokey-mobile-header img.headerLogo {
        max-width: 130px;
    }
}

@media (max-width: 991px) {
    .render-body {
        width: 100% !important;
    }

    #sidebarOpenBtn {
        display: none;
    }

    .clean-sidebar {
        width: 280px;
        transform: translateX(-100%);
    }

        .clean-sidebar.is-expanded {
            transform: translateX(0);
        }

    .headerWrapper {
        margin-left: unset !important;
        width: 100% !important;
    }

    footer {
        width: 100% !important;
        margin-left: unset !important;
    }

    #autokeyOverlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }

    body.sidebar-is-expanded #autokeyOverlay {
        opacity: 1;
        visibility: visible;
    }

    .sidebar-header {
        padding: var(--spacing-sm) var(--spacing-md);
        max-height: 75px !important;
        min-height: 75px !important;
    }

    #sidebarCloseBtn img {
        height: 15px;
    }

    .sidebar-control {
        padding: 0;
    }

    .clean-sidebar.is-expanded .sidebar-menu {
        margin: 0;
    }

    .autokey-mobile-header {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1038;
        background-color: #ffffff;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        height: 75px;
        align-items: center;
    }



    .dropdown.user-dropdown-mobil {
        display: block;
        position: absolute;
        z-index: 1038;
        top: 100%;
        right: 0;
        width: 230px;
        max-width: 230px;
        height: 100vh;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        background: #ffffff;
    }

        .dropdown.user-dropdown-mobil hr {
            margin: var(--spacing-xs) !important;
        }


        .dropdown.user-dropdown-mobil ul {
            padding-left: 0 !important;
        }

        .dropdown.user-dropdown-mobil li {
            padding: var(--spacing-md) var(--spacing-md);
        }

        .dropdown.user-dropdown-mobil .list-item {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .dropdown.user-dropdown-mobil .list-header p {
            margin: var(--spacing-xs) !important;
        }

        .dropdown.user-dropdown-mobil.is-visible {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
}


@media (min-width: 992px) {
    .autokey-mobile-header {
        display: none !important;
    }

    .clean-sidebar {
        width: var(--sidebar-collapsed-width);
        transform: translateX(0);
    }

        .clean-sidebar.is-expanded {
            width: var(--sidebar-expanded-width);
        }

    .render-body {
        margin-left: var(--sidebar-collapsed-width);
        width: calc(100% - var(--sidebar-collapsed-width));
        min-height: calc(100vh - 594.5px);
    }

    body.sidebar-is-expanded .render-body {
        margin-left: var(--sidebar-expanded-width);
        width: calc(100% - var(--sidebar-expanded-width));
    }
}

.alert {
    text-align: center;
}

.cookie-popup {
    position: fixed;
    bottom: 30px;
    right: 38px;
    width: 400px;
    background: linear-gradient(233.72deg, #f1b328 14.74%, #fed700 100%);
    padding: 20px 32px;
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    z-index: 1001;
    transform: translate(0, 40px);
    visibility: hidden;
    opacity: 0;
    transition: .4s;
}

    .cookie-popup.show {
        transform: translate(0, 0);
        opacity: 1;
        visibility: visible;
        transition: .4s;
    }

.cookie-popup-header {
    display: flex;
    align-items: center;
    column-gap: 12px;
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
    text-align: left;
    color: #000000;
}

.cookie-popup-content {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    line-height: 22px;
    text-align: left;
    color: #2d2b23;
    row-gap: 4px;
}

    .cookie-popup-content a {
        font-size: 14px;
        font-weight: 600;
        line-height: 22px;
        text-align: left;
        text-decoration: underline;
        color: #000000;
        text-underline-offset: 3px;
    }

.cookie-popup-footer {
    display: flex;
    align-items: center;
    column-gap: 1rem;
}

    .cookie-popup-footer .cookie-reject-button {
        width: 100%;
        font-size: 13px;
        font-weight: 500;
        line-height: 23.89px;
        text-align: center;
        background: transparent;
        color: #fff;
        border: 1px solid #fff;
        padding: 12px 8px;
        border-radius: 50px;
        box-shadow: none;
        outline: none;
    }

    .cookie-popup-footer .cookie-accept-button {
        font-size: 13px;
        font-weight: 500;
        line-height: 23.89px;
        text-align: center;
        color: #343434;
        background: #fff;
        border: 1px solid #fff;
        width: 100%;
        border-radius: 50px;
        padding: 12px 8px;
        box-shadow: none;
        outline: none;
    }

.profile-initials-circle-header {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #FFCE13;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.profile-info-header {
    margin-left: 15px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
    justify-content: center;
}

.profile-name-header {
    color: var(--color-text-title);
    font-weight: var(--font-weight-semibold);
    font-size: 1rem;
}