        /* Currency selector styles */
            .currency-selector {
            position: relative;
            }

            .currency-current {
            display: flex;
            align-items: center;
            gap: 4px;
            background: transparent;
            border: 1px solid #dee2e6;
            padding: 6px 10px;
            cursor: pointer;
            border-radius: 8px;
            transition: all 0.2s;
            font-size: 14px;
            font-weight: 600;
            }

            .currency-current:hover {
            background-color: #f8f9fa;
            border-color: #adb5bd;
            }

            #current-currency {
            font-size: 16px;
            font-weight: 600;
            }

            .currency-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #dee2e6;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            z-index: 1000;
            min-width: 100px;
            margin-top: 4px;
            }

            .currency-dropdown.show {
            display: block;
            animation: fadeIn 0.2s ease;
            }

            .currency-dropdown a {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: background 0.2s;
            }

            .currency-dropdown a:hover {
            background-color: #f8f9fa;
            }

            .currency-dropdown a.active {
            background-color: #e3f2fd;
            color: #1976d2;
            }

            .currency-symbol {
            font-weight: 600;
            width: 24px;
            display: inline-block;
            }
        .language-selector {
            position: relative;
        }
        .language-selector img,
.lang-btn img,
#current-flag {
    width: 20px;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: contain;
    vertical-align: middle;
}

        .lang-current {
            display: flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: none;
            padding: 8px 12px;
            cursor: pointer;
            border-radius: 8px;
            transition: background-color 0.2s;
        }

        .lang-current:hover {
            background-color: rgba(0, 0, 0, 0.05);
        }

        .lang-current img {
            border-radius: 3px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }

        #current-lang {
            font-weight: 500;
            font-size: 14px;
        }

        .lang-dropdown {
            display: none;
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
            z-index: 1000;
            min-width: 160px;
            overflow: hidden;
            margin-top: 4px;
        }

        .lang-dropdown.show {
            display: block;
            animation: fadeIn 0.2s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .lang-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 16px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            transition: background-color 0.2s;
        }

        .lang-dropdown a:hover {
            background-color: #f5f5f5;
        }

        .lang-dropdown a.active {
            background-color: #e3f2fd;
            color: #1976d2;
        }

        .lang-dropdown img {
            border-radius: 3px;
            box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
        }
@media (max-width: 768px) {

    .d-flex.align-items-center.gap-3.ms-auto{
        gap: .4rem !important;
    }

    .lang-current,
    .currency-current{
        padding:6px 8px;
        font-size:12px;
    }

    .lang-current img{
        width:18px;
        height:13px;
    }

    #current-lang,
    #current-currency{
        font-size:13px;
    }

    .user-icon{
        font-size:18px;
    }

    .btn-custom{
        padding:8px 14px;
        font-size:13px;
    }

}