.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: auto;
}

.profile-icon-btn {
    display: flex !important;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    min-height: 42px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: white;
    padding: 0 !important;
    font-weight: 500;
    flex-shrink: 0;
}

.profile-icon-btn:hover {
    background: rgba(11, 94, 215, 0.3) !important;
    border-color: rgba(11, 94, 215, 0.6) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.2);
}

.profile-icon-btn svg {
    width: 24px;
    height: 24px;
    stroke: white;
    stroke-width: 2;
    flex-shrink: 0;
}

.lang-btn {
    padding: 0.5rem 0.6rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lang-btn img {
    height: 24px;
    width: 24px;
    display: block;
}

.lang-btn:hover {
    border-color: rgba(11, 94, 215, 0.5);
    background: rgba(11, 94, 215, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(11, 94, 215, 0.15);
}

@media (max-width: 768px) {
    .cart-link .cart-text {
        display: none;
    }

    .cart-link {
        padding: 0.5rem;
    }
}