                 
.top-header-marquee {
    background: #1a1a1a;
    color: #fff;
    height: 44px;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
    z-index: 100;
}

.marquee-content {
    display: flex;
    flex-shrink: 0;
    animation: marquee 100s linear infinite;
    align-items: center;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    font-size: 0.88rem;
    font-weight: 500;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.marquee-item i,
.marquee-item img {
    width: 18px;
    height: 18px;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #c4b5fd;
    flex-shrink: 0;
}

.marquee-item img {
    object-fit: contain;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

                 
.main-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid #eee;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo img {
    height: 48px !important;
    width: auto !important;
    object-fit: contain;
}

.header-search {
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    z-index: 2;
}

.search-form {
    display: flex;
    align-items: center;
    width: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #f8f9fa;
    border-radius: 20px;
    position: absolute;
    right: 0;
    padding: 0;
}

.header-search.active .search-form {
    width: 300px;
    padding: 5px 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-search.active .search-toggle {
    display: none;
}

.search-form input {
    border: none;
    background: none;
    padding: 5px 10px;
    width: 100%;
    outline: none;
    font-size: 0.9rem;
}

.search-submit {
    background: none;
    border: none;
    color: var(--primary-color);
    cursor: pointer;
}

                                                                                                                                          

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-btn {
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header-btn:hover {
    opacity: 0.9;
    color: #fff;
}

.header-icon {
    font-size: 24px;
    color: #333;
    text-decoration: none;
    cursor: pointer;
}

                  
.sidebar-overlay {
    position: fixed;
    top: 0;
    right: 0;
    width: 320px;
    height: 100vh;
    background: #fff;
    z-index: 2050;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    overflow-y: auto;
}

.sidebar-overlay.active {
    transform: translateX(0);
}

.sidebar-close {
    position: absolute;
    top: 30px;
    right: 30px;
    font-size: 30px;
    cursor: pointer;
}

.sidebar-menu {
    list-style: none;
    padding: 0;
}

.sidebar-menu li {
    margin-bottom: 25px;
}

.sidebar-menu a {
    font-size: 32px;
    font-weight: 700;
    color: #000;
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-menu a:hover {
    color: #7b42f6;
}

@media (max-width: 991px) {
    .header-btn {
        display: none !important;
    }

    .header-container {
        padding: 0 15px;
    }

    .header-logo img {
        height: 36px !important;
    }

    .header-search.active .search-form {
        width: 200px;
    }
}

                      
.profile-dropdown-container {
    position: relative;
    display: flex;
    align-items: center;
}

.profile-dropdown {
    position: fixed;
    top: 75px;
    right: 20px;
    width: 320px;
    background: #fff;
    border-radius: 24px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    z-index: 2100;
    display: none;
    overflow: hidden;
    animation: fadeInScale 0.2s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.profile-dropdown.active {
    display: block;
}

.dropdown-header {
    background: #f8f9fa;
    padding: 30px 20px 20px;
    text-align: center;
    position: relative;
    border-radius: 24px 24px 0 0;
}

.dropdown-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 1.5rem;
    color: #333;
    cursor: pointer;
    transition: color 0.2s;
}

.dropdown-close:hover {
    color: #000;
}

.dropdown-avatar {
    width: 80px;
    height: 80px;
    background: #eee;
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dropdown-avatar i {
    font-size: 50px;
    color: #999;
}

.dropdown-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-header-text {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
    white-space: normal !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    word-break: break-word !important;
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
    display: block !important;
}

.dropdown-body {
    padding: 24px 20px;
}

.dropdown-btn-green {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #5e2bc7 0%, #7b42f6 100%);
    color: #fff;
    padding: 16px;
    border-radius: 16px;
    text-decoration: none !important;
    font-weight: 700;
    font-size: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
    border: none;
    width: 100%;
}

.dropdown-btn-green:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(123, 66, 246, 0.35);
    color: #fff;
}

.dropdown-btn-green i {
    font-size: 1.4rem;
}

.dropdown-footer {
    padding: 10px 20px 30px;
    text-align: center;
}

.dropdown-footer-link {
    color: #666;
    text-decoration: underline;
    font-size: 0.95rem;
    font-weight: 500;
}

.dropdown-footer-link:hover {
    color: #2e9d6d;
}

                      
.profile-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.profile-links li {
    margin-bottom: 5px;
}

.profile-links a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    border-radius: 12px;
    transition: background 0.2s;
}

.profile-links a:hover {
    background: #f4f0ff;
    color: #7b42f6;
}

.dropdown-btn-logout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #fff;
    color: #dc3545;
    padding: 12px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 700;
    border: 2px solid #dc3545;
    width: 100%;
    transition: all 0.2s;
    cursor: pointer;
}

.dropdown-btn-logout:hover {
    background: #dc3545;
    color: #fff;
}

@media (max-width: 768px) {
    .profile-dropdown {
        position: fixed;
        bottom: 0;
        top: auto;
        left: 0;
        right: 0;
        width: 100%;
        border-radius: 24px 24px 0 0;
        transform: translateY(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        display: none;
                                                                         
        opacity: 1;
        animation: none;
        box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
    }

    .profile-dropdown.active {
        display: block;
                                   
        transform: translateY(0);
    }
}

                                                         
.fuxx-global-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    z-index: 1050;
    display: none;
    cursor: pointer;
    animation: fadeIn 0.3s ease;
}

.fuxx-global-overlay.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

                                    
.made-in-germany-badge {
    display: flex;
    align-items: center;
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    background: #faf8ff;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15), 0 0 0 1.5px rgba(0, 0, 0, 0.06);
    padding: 10px 36px 10px 16px;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.2s ease;
    animation: migSlideIn 0.6s ease-out 1s both;
}

.made-in-germany-badge.is-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.made-in-germany-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

                                   
.badge-close {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 22px;
    height: 22px;
    padding: 0;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    color: #555;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.badge-close:hover,
.badge-close:focus-visible {
    background: #7b42f6;
    color: #fff;
    transform: scale(1.05);
    outline: none;
}

                                                                   
.made-in-germany-reopen {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    width: 48px;
    height: 48px;
    padding: 6px;
    border: none;
    background: #faf8ff;
    border-radius: 50%;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18), 0 0 0 1.5px rgba(0, 0, 0, 0.06);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: migSlideIn 0.3s ease-out;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.made-in-germany-reopen:hover,
.made-in-germany-reopen:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 10px 26px rgba(123, 66, 246, 0.25), 0 0 0 1.5px rgba(123, 66, 246, 0.4);
    outline: none;
}
.made-in-germany-reopen img {
    width: 32px;
    height: 22px;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.made-in-germany-reopen[hidden] {
    display: none !important;
}

.badge-flag {
    width: 44px;
    height: 30px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

.badge-text-group {
    display: flex;
    flex-direction: column;
    margin-left: 14px;
}

.badge-title {
    font-weight: 800;
    font-size: 0.95rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.badge-points-horizontal {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #777;
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 1px;
    white-space: nowrap;
}

.point-sep {
    color: #ccc;
    font-weight: bold;
    font-size: 1rem;
    line-height: 0;
    position: relative;
    top: -1px;
}

@media (max-width: 768px) {
    .made-in-germany-badge {
        bottom: 14px;
        right: 14px;
        left: 14px;
        padding: 8px 32px 8px 12px;
        max-width: calc(100% - 28px);
        border-radius: 12px;
    }

    .badge-flag {
        width: 32px;
        height: 22px;
    }

    .badge-text-group {
        margin-left: 10px;
        min-width: 0;
    }

    .badge-title {
        font-size: 0.8rem;
    }

    .badge-points-horizontal {
        font-size: 0.7rem;
        gap: 4px;
        flex-wrap: wrap;
        white-space: normal;
    }

    .made-in-germany-reopen {
        bottom: 14px;
        right: 14px;
        width: 42px;
        height: 42px;
    }

    .made-in-germany-reopen img {
        width: 26px;
        height: 18px;
    }
}

@media (max-width: 420px) {
    .badge-points-horizontal {
        display: none;
    }
    .made-in-germany-badge {
        padding-right: 30px;
    }
}
.promo-banner {
            background: linear-gradient(180deg, #f2eff6 0%, #f0edf5 100%);
            color: #15141c;
            font-family: 'Inter', sans-serif;
            position: relative;
            z-index: 2;
            border-bottom: 1px solid rgba(151, 142, 175, 0.18);
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
            padding: 10px 16px;
        }

        .promo-banner .floral-left,
        .promo-banner .floral-right {
            position: absolute;
            top: 50%;
            width: 90px;
            height: 90px;
            transform: translateY(-50%);
            pointer-events: none;
            opacity: 0.55;
        }

        .promo-banner .floral-left {
            left: 18px;
            background:
                radial-gradient(circle at 30% 35%, rgba(154, 120, 228, 0.27) 0, rgba(154, 120, 228, 0.27) 14px, transparent 15px),
                radial-gradient(circle at 66% 45%, rgba(199, 183, 241, 0.28) 0, rgba(199, 183, 241, 0.28) 11px, transparent 12px),
                radial-gradient(circle at 44% 72%, rgba(171, 139, 235, 0.2) 0, rgba(171, 139, 235, 0.2) 16px, transparent 17px);
        }

        .promo-banner .floral-right {
            right: 18px;
            background:
                radial-gradient(circle at 62% 28%, rgba(154, 120, 228, 0.26) 0, rgba(154, 120, 228, 0.26) 13px, transparent 14px),
                radial-gradient(circle at 30% 52%, rgba(199, 183, 241, 0.24) 0, rgba(199, 183, 241, 0.24) 10px, transparent 11px),
                radial-gradient(circle at 58% 76%, rgba(171, 139, 235, 0.18) 0, rgba(171, 139, 235, 0.18) 15px, transparent 16px);
        }

        .promo-text {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 4px;
            text-align: center;
            font-size: 0.95rem;
            line-height: 1.45;
        }

        .promo-text em {
            font-style: italic;
            color: #6b3ee9;
        }

        .promo-code {
            display: inline-block;
            padding: 0;
            border-radius: 0;
            background: transparent;
            color: #5b36d2;
            font-weight: 800;
            letter-spacing: 0.08em;
        }

        .promo-countdown {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            margin-left: 10px;
        }

        .promo-countdown .cd-block {
            display: inline-flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-width: 30px;
            padding: 0;
            border-radius: 0;
            background: transparent;
            color: #6b3ee9;
            box-shadow: none;
        }

        .promo-countdown .cd-block>span {
            font-size: 0.95rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: 0.02em;
        }

        .promo-countdown .cd-block small {
            margin-top: 2px;
            font-size: 0.55rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: #55506a;
            opacity: 0.85;
        }

        .promo-countdown .cd-sep {
            font-weight: 800;
            color: #8b8598;
            transform: translateY(-3px);
            font-size: 0.9rem;
        }

        @media (max-width: 767px) {
            .promo-banner {
                padding: 10px 12px;
            }

            .promo-banner .floral-left,
            .promo-banner .floral-right {
                width: 54px;
                height: 54px;
                opacity: 0.38;
            }

            .promo-text {
                font-size: 0.82rem;
                gap: 3px;
            }

            .promo-countdown {
                width: 100%;
                justify-content: center;
                margin-left: 0;
                margin-top: 6px;
            }

            .promo-countdown .cd-block {
                min-width: 22px;
                padding: 0;
            }

            .promo-countdown .cd-block>span {
                font-size: 0.82rem;
            }

            .promo-countdown .cd-block small {
                font-size: 0.5rem;
            }
        }

                                                                    
    .lang-switch {
        position: relative;
        display: inline-flex;
        align-items: center;
    }
    .lang-switch-toggle {
                                                                        
                                                            
                                                                             
        display: inline-flex !important;
        width: auto !important;
        height: auto !important;
        align-items: center;
        gap: 7px;
        background: #f5f3ff;
        border: 1px solid #e9e3ff;
        border-radius: 30px;
        padding: 7px 12px;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        font-size: 0.85rem;
        font-weight: 600;
        color: #4b2fae;
        line-height: 1;
        transition: background 0.2s, border-color 0.2s;
        white-space: nowrap;
        flex-shrink: 0;
    }
    .lang-switch-toggle:hover {
        background: #ece6ff;
        border-color: #d6c9ff;
    }
    .lang-switch-flag {
        width: 22px;
        height: 15px;
        object-fit: cover;
        border-radius: 3px;
        display: block;
        flex-shrink: 0;
    }
    .lang-switch-caret {
        font-size: 0.7rem;
        transition: transform 0.2s;
        opacity: 0.7;
    }
    .lang-switch.open .lang-switch-caret {
        transform: rotate(180deg);
    }
    .lang-switch-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 0;
        min-width: 180px;
        background: #fff;
        border: 1px solid rgba(0, 0, 0, 0.06);
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
        padding: 6px;
        z-index: 2100;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-6px);
        transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
    }
    .lang-switch.open .lang-switch-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    .lang-switch-item {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-radius: 9px;
        color: #1a1a1a;
        text-decoration: none;
        font-size: 0.9rem;
        font-weight: 500;
        transition: background 0.15s;
    }
    .lang-switch-item:hover {
        background: #f5f3ff;
        color: #4b2fae;
    }
    .lang-switch-item.is-active {
        background: #f0ebff;
        color: #4b2fae;
        font-weight: 700;
    }
    .lang-switch-check {
        margin-left: auto;
        color: #7b42f6;
        font-size: 1rem;
        display: none;
    }
    .lang-switch-item.is-active .lang-switch-check {
        display: inline-block;
    }
                                                                           
                                                                            
    @media (max-width: 991px) {
        .lang-switch-label { display: none; }
        .lang-switch-toggle { padding: 8px 10px; }
    }
    @media (max-width: 480px) {
        .lang-switch-menu { right: -8px; min-width: 168px; }
    }

    .sidebar-overlay {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        max-width: 400px;
        height: 100%;
        background: #fff;
        z-index: 2000;
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        transform: translateX(100%);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        display: flex;
        flex-direction: column;
        padding: 24px;
        font-family: 'Inter', sans-serif;
    }

    .sidebar-overlay.active {
        transform: translateX(0);
    }

                                   
    .header-search {
        position: relative;
    }

    .search-suggestions-container {
        position: absolute;
        top: calc(100% + 14px);
        right: 0;
        left: auto;
        background: #fff;
        border-radius: 16px;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
        max-height: 400px;
        overflow-y: auto;
        z-index: 2000;
        display: none;
        padding: 14px;
        width: 300px;
                                                              
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    @media (max-width: 768px) {
        .search-suggestions-container {
            width: calc(100vw - 30px);
            right: 15px;
            top: 60px;
            position: fixed;
        }
    }

    .search-suggestions-container.active {
        display: block;
    }

    .suggestion-item {
        display: block;
        padding: 9px 15px;
        color: #1a1a1a;
        text-decoration: none;
        transition: all 0.2s ease-out;
        border-radius: 30px;
        margin-bottom: 8px;
        font-size: 0.85rem;
        background: #f9f9f9;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-weight: 500;
        border: 1px solid #f0f0f0;
    }

    .suggestion-item:last-child {
        margin-bottom: 0;
    }

    .suggestion-item:hover {
        background: #fff;
        color: #7b42f6;
        border-color: #7b42f6;
        box-shadow: 0 4px 15px rgba(123, 66, 246, 0.1);
        transform: translateY(-2px);
    }

    .suggestion-item mark {
        background: none;
        color: #10b981;
                                               
        padding: 0;
        font-weight: 700;
    }

    .suggestion-type-label {
        font-size: 0.65rem;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        color: #bbb;
        margin: 15px 0 8px 14px;
        font-weight: 800;
    }

    .suggestion-type-label:first-child {
        margin-top: 5px;
    }

    .sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 24px;
    }

    .sidebar-header h2 {
        font-size: 1.5rem;
        font-weight: 800;
        color: #1a1a1a;
        margin: 0;
    }

    .sidebar-close {
        width: 36px;
        height: 36px;
        background: #f3f0ff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.2s;
    }

    .sidebar-close:hover {
        background: #e7e0ff;
        transform: scale(1.05);
    }

    .sidebar-close i {
        font-size: 1.5rem;
        color: #1a1a1a;
    }

                        
    .sidebar-toggles {
        display: flex;
        gap: 12px;
        margin-bottom: 32px;
    }

    .toggle-btn {
        flex: 1;
        padding: 12px;
        border-radius: 30px;
        border: 1px solid #eee;
        background: #fff;
        font-weight: 700;
        font-size: 0.95rem;
        cursor: pointer;
        transition: all 0.3s;
        text-align: center;
    }

    .toggle-btn.active {
        background: #7b42f6;
        color: #fff;
        border-color: #7b42f6;
        box-shadow: 0 4px 15px rgba(123, 66, 246, 0.2);
    }

                                                                        
                                                                         
                                                                       
                                                  
    .toggle-btn-solo {
        flex: 0 0 auto;
        padding: 10px 22px;
        cursor: default;
        display: inline-flex;
        align-items: center;
    }
    .toggle-btn-solo i { font-size: 1rem; }

                   
    .sidebar-content {
        flex: 1;
        overflow-y: auto;
        margin-right: -10px;
        padding-right: 10px;
    }

    .sidebar-menu {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .menu-section-header {
        color: #999;
        font-size: 0.75rem;
        font-weight: 800;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        margin: 24px 0 16px 0;
        padding-left: 4px;
    }

    .sidebar-menu li {
        margin-bottom: 8px;
    }

    .sidebar-menu a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 14px 16px;
        color: #1a1a1a;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.05rem;
        border-radius: 12px;
        transition: all 0.2s;
    }

    .sidebar-menu a:hover {
        background: #f8f6ff;
        color: #7b42f6;
    }

    .menu-label-wrapper {
        display: flex;
        align-items: center;
        gap: 12px;
    }

    .badge-neu {
        background: #7b42f6;
        color: #fff;
        font-size: 0.6rem;
        font-weight: 900;
        padding: 2px 8px;
        border-radius: 20px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .menu-arrow {
        color: #ccc;
        font-size: 0.9rem;
        transition: transform 0.2s;
    }

    .sidebar-menu a:hover .menu-arrow {
        transform: translateX(4px);
        color: #7b42f6;
    }

                            
    @media (max-width: 480px) {
        .sidebar-overlay {
            max-width: 100%;
        }
    }

                        
    .has-submenu .menu-arrow {
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .has-submenu.open .menu-arrow {
        transform: rotate(90deg);
        color: #7b42f6;
    }

    .sidebar-submenu {
        list-style: none;
        padding: 0;
        margin: 0;
        max-height: 0;
        overflow: hidden;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: #f9f9ff;
        border-radius: 0 0 12px 12px;
        opacity: 0;
    }

    .has-submenu.open+.sidebar-submenu {
        max-height: 2000px;
                                          
        margin-bottom: 12px;
        opacity: 1;
        padding: 8px 0;
    }

    .sidebar-submenu li {
        margin-bottom: 2px;
    }

    .sidebar-submenu li a {
        padding: 10px 16px 10px 48px !important;
        font-size: 0.95rem !important;
        font-weight: 500 !important;
        color: #666 !important;
        background: transparent !important;
    }

    .sidebar-submenu li a:hover {
        color: #7b42f6 !important;
        background: #f1eeff !important;
    }

                                                                      
    .sidebar-content {
        position: relative;
        overflow: hidden;
        flex: 1;
    }
    .sidebar-panel {
        position: absolute;
        top: 0; left: 0;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        will-change: transform;
    }
    .sidebar-panel.panel-main  { transform: translateX(0); }
    .sidebar-panel.panel-sub   { transform: translateX(100%); }

                                    
    .sidebar-content.drilled .panel-main { transform: translateX(-100%); }
    .sidebar-content.drilled .panel-sub  { transform: translateX(0); }

                  
    .sidebar-back-row {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 14px 4px 18px;
        cursor: pointer;
        font-weight: 700;
        font-size: 1rem;
        color: #7b42f6;
        border-bottom: 1px solid #eee;
        margin-bottom: 8px;
    }
    .sidebar-back-row i { font-size: 1.1rem; }
    .sidebar-back-row:hover { opacity: .75; }

                                          
    .has-submenu > .menu-parent-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 4px;
        cursor: pointer;
        font-weight: 600;
        color: #2d2d2d;
        border-radius: 12px;
        transition: background 0.2s, color 0.2s;
    }
    .has-submenu > .menu-parent-row:hover { color: #7b42f6; }
    .has-submenu > .menu-parent-row .submenu-arrow { transition: transform 0.3s; }


                                                                      
                                                                    
                                                                  
                                                         
    #google_translate_element {
        position: absolute !important;
        width: 1px !important;
        height: 1px !important;
        overflow: hidden !important;
        clip: rect(0 0 0 0) !important;
        left: -9999px !important;
        top: 0 !important;
    }

.footer-col-toggle {
        display: none;
    }

    @media (max-width: 767.98px) {
        .ticker-bar-v2 {
            padding: 12px 0;
        }

        .ticker-inner-v2 {
            display: grid !important;
            grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
            gap: 10px 12px !important;
            width: 100% !important;
            padding: 0 12px !important;
        }

        .ticker-item-v2 {
            display: flex !important;
            align-items: center !important;
            justify-content: flex-start !important;
            font-size: 0.72rem !important;
            gap: 6px !important;
            white-space: nowrap !important;
        }

        .footer-v2 {
            padding: 26px 0 26px;
        }

        .footer-inner-v2 {
            grid-template-columns: 1fr;
            gap: 14px;
            padding: 0 14px;
        }

        .footer-cols-wrap {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-brand-v2 {
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .footer-brand-v2 p {
            margin-bottom: 16px;
            font-size: 0.8rem;
            line-height: 1.6;
            max-width: none;
        }

        .footer-social-v2 {
            margin-bottom: 14px;
        }

        .soc-icon-v2 {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }

        .footer-contact-v2 {
            font-size: 0.78rem;
            line-height: 1.5;
        }

        .footer-col-v2 {
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding-top: 8px;
        }

        .footer-col-v2 h4.footer-col-title {
            display: none;
        }

        .footer-col-toggle {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border: 0;
            background: transparent;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            text-align: left;
            padding: 4px 0;
        }

        .footer-col-toggle i {
            color: #c4b5fd;
            transition: transform 0.2s ease;
        }

        .footer-col-list {
            max-height: 0;
            overflow: hidden;
            margin: 0;
            transition: max-height 0.24s ease;
        }

        .footer-col-v2.is-open .footer-col-list {
            max-height: 320px;
            margin-top: 8px;
        }

        .footer-col-v2.is-open .footer-col-toggle i {
            transform: rotate(180deg);
        }

        .footer-col-list li {
            margin-bottom: 7px;
        }

        .footer-col-list li:last-child {
            margin-bottom: 2px;
        }

        .footer-col-list li a {
            font-size: 0.9rem;
        }

        .footer-bottom-v2 {
            margin-top: 20px;
            padding-top: 18px;
            padding-left: 14px;
            padding-right: 14px;
        }

        .footer-disclaimer-v2,
        .footer-bottom-info-v2,
        .footer-copyright-v2 {
            font-size: 0.72rem !important;
            line-height: 1.45;
        }
    }

    @media (max-width: 430px) {
        .ticker-inner-v2 {
            gap: 8px 12px;
            padding: 0 12px;
        }

        .ticker-item-v2 {
            font-size: 0.78rem;
        }
    }

    .footer-payment-logos {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: 4px;
    }

    .footer-pm-badge {
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fff;
        border-radius: 6px;
        padding: 5px 8px;
        min-width: 58px;
        height: 36px;
    }

    .footer-pm-badge img {
        height: 22px;
        width: auto;
        display: block;
        object-fit: contain;
    }
